Uncategorized Archive

My Notes Learning Redis Simple Data Strings

Redis, renowned for its blazing-fast performance and versatile data structures, offers a myriad of tools for developers to architect robust and scalable applications. At the heart of Redis lies its string data type, a foundational element empowering developers to craft efficient and dynamic solutions. Unleashing Versatility: Redis strings transcend mere text storage, serving as dynamic […]

My Notes Learning Redis Structure SET Keywords

SET key value [NX | XX] GET [ EX | PX | EXAT | PXAT | KEEPTTL] Learning by Doing, and Keep the Notes..

CRUD REDIS AND JEDIS SPRING BOOT

spring-boot-redis-jedisLearning Spring boot using JEDIS Prerequisites pom.xml Config file Test using Powershell Windows Check Full Code in My Github LINK

Learn Selenium Java Locator

A locator is a way to identify elements on a page. It is the argument passed to the Finding element methods. Type Locator Selenium Locator Description By.id(“IdHtml”) Locates elements whose ID attribute matches the search value By.name(“NameAtributeHtml”) Locates elements whose NAME attribute matches the search value By.xpath(“Path”) Locates elements matching an XPath expression By.className(“className”) Locates elements whose […]

Docker CE, Starting A Nginx Web server

Images vs Container Running Nginx on Docker Running nginx on foreground docker container run –publish 80:80 nginx Docker engine will look image nginx, and pull from docker hub . Then started a new container for us to use. command –publish will opened port 80 on the host IPpublish_port: port_on_containerexample 8888:80testing on browser localhost:8888 Running nginx […]

Simple Implementations Tesseract OCR on Android

Tesseract is an optical character recognition engine for various operating systems. It is free software, released under the Apache License, Version 2.0, and development has been sponsored by Google since 2006. Tesseract is considered one of the most accurate open source OCR engines currently available Wikipedia Image processing is widely used in helping to resolve […]