Protected: Familytree-chelannur
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
RASPBERRYPI PROJECTS FOR KIDS Stay@home projects for kids – implementing many fun programming options using RaspberryPi. Here is how I was able to successfully engage my 9 year old to fun programming that helps her code interactive stories, animations and games using Scratch programming plus other few RaspberryPI projects. Implementation steps include, OS installation on …
How to configure sonarqube in jenkins? SonarQube is code quality checker and that can be integrated to Jenkins workflow to deliver continuous inspection.Configuration steps as follows:SonarQube:1. Do a SonarQube docker image pull from docker hub 2. Then use docker run command to run the image to build SonarQube container.(Assumption JDK is already setup on the machine) …
What is contract testing? Contract testing is famous in microservices world. When we consider less numbers of microservices, then contract testing is not so necessary.However when you look at the Amazon or Netflix microservices mesh, it is countless. Such cases it is extremely difficult for developer or tester to maintain unit/automation test suite as per …
How to read pdf content in java? Apache PDFBox and FontBox jar available can be useful here. Add these two libraries to your Maven Pom.xml or build.gradle dependencies.Then write java code to parse your PDF files to create POJOs.What is POJO in javaPOJO stands for Plain java object and it has not restrictions or class …
How to read pdf content in java for automation project Read More »
What is Google’s App Engine ? Google provides platform as service or PaaS via Google’s App Engine.App Engine is a cloud computing platform where development and hosting of applications can be done.Other feature is App engine scales up on demand basis when the requests are more.App Engine supports almost all development technologies like Go, Java …
How to setup Angular project and generate components ? install latest nodejs from nodejs.org Go to git bash/powershell ISE/CMD type following commands, install Angular : npm install -g @angular/cli ng new my-newweb-app ng g c myFirstModule or type mg generate component myFirstModule (optional) go to project folder ” my-newweb-app ” via commandline itself type mg …
What is ELK (Elastic search, Logstash, Kibana) ? ELK stack is a combination of 3 open-source products as below, Elasticsearch, a search and analytics engine. Logstash, that index the data to Elasticsearch. Logstash has a config file that has input,filter and output section. Config file looks like json file. Kibana, a visualization tool which provides …
What is DevOps vs DevSecOps vs NetOps ? DevOps is the practice of using set of tools, processes and practices to get good agility in software implementation to customers. It combines Dev (software development ) and Ops (information operations). DevOps shortens the development lifecycles and provides Continous Integration & Delivery. DevSecOps is when security features are …