Thursday, July 27, 2023

Renting home

a. Get the Credit report 

b. Get the background of the tenants

c. Get the Employment details 

e. Get the rental history like how frequently are they changing homes


Thursday, July 13, 2023

home nevada

 1. Ring home security with extender in laundry room

2. key which can be used to winterize

3. showel to remove snow 

4. paint boxes

5. tiles

6. hose 

7. wooden rode for slides 

8. tubelight 

9. Drapes in master and living room 

10. 



Renting home

Ask Property management to share below reports of all tenants 

    a. Credit report

    b. Get the background (at least basic details like any arrest,drugs,sex-offenders)

    c. Get the Employment details 

    e. Get the rental history like how frequently are they changing homes 

    f. W2 form of previous two years if they can share

   



Friday, July 7, 2023

To learn

 

 

 AWS

Openshift

Kubernetes

Helm

Pod/Docker

Kafaka

Springboot

VXML

 

Thursday, April 13, 2023

Kubernetes

Kubernetes in short is know as  K8S

 

 

 Kubernetes for the Absolute Beginners

Kubernetes for Administrators

Kubernetes for Developers


Kubernetes have 

Pods

Replica Set/ ReplicaController

Deployment

Service 

Service we have three types 

    NodePort

     CluserIP

     LoadBalancer


To setup Kuberntes on local we can use 

  MiniKube

  MicroK8s

  Kubeadm

Tuesday, March 14, 2023

ELK

 E - Elastic Search

L - Logstash

K - Kibana


Elastic Search : It is a distributed NoSQL database.

Logstash : It collects data from different source and streams data into Elastic search.

Kibana : Is an UI components which displays data as you wanted over the elastic search engine 


Tuesday, November 15, 2022

HR Manager interview

 Tell me about yourself 

I am Pavan. I completed master's in computer application from Annamalai university in India.  

I have 12 plus years of experience in Software development working with various software tools and languages. 

Currently I am working in a project to modernize child support system for state of Nevada where I am working with team to develop the rest Api development using spring boot and UI pages using Angular framework and primeng. I have also supported the team to develop and review the selenium test script and to develop the Jenkins pipeline script for deploying the application in our non-prod and prod regions.

I personal like to do gardening in our back yard during spring and summer.


*********************************************************************


What is the dream work environment / What is the ideal work environment 

Training --> To know about the enterprise direction and SNOW sessions

Interaction with coworkers and Supervisors --> 

Employee recognition -->

Work-life balance --> 


Greatest strength and weakness 

I am enthusiastic to learn new things 


**********************************************

Recently what have you learned

when I visited best buy, I saw google from which we can hear music it is nice.


***************************

what is annoying thing at work

Work which we are doing is not recognized then it makes me uncomfortable.  

Tuesday, November 8, 2022

Spring Batch

 Job Launcher --> Job --> Step --> ItemReader, ItemProcessor , ItemWriter 

Job Repository


Spring Batch

a. A ligthweight, comprehensive batch framework designed to enable the development of robust batch applications vital for the daily operations of enterprise systems.

b. Open-source Application

c. Spring batch helps to process 
           large volume of records, 
           including logging/tracing, 
           transaction management, 
           job processing statistics, 
           job restart, 
           job skip and resource management

Features
   Transaction Management 
   Chunk based processing 
   Job Start/Stop/Restart
   Job-Processing statistics

Spring Batch components 
      JobRepository 
      JobLauncher
     Job
     Step
     ItemReader
     ItemProcessor
     ItemWriter
     


JobRepository : 
     This represents the persistence of batch meta-data entities in the database. It acts as a repository that contains batch jobs information, for example, when the last batch job was run, etc.

JobLauncher :
    This is an interface used to launch a job or run jobs when the jobs scheduled time arrivers. It takes the jobs name and some other parameters while launching or running the job.

Job:
    This is the main module, which consist of the business login to be run.

Step:
   Steps are nothing but an execution flow of the job. A complex job can be divided into several steps or chunks, which can be run one after another.

ItemReader:
    This interface is used to perform bulk-reading of data, e.g., reading several lines of data from an Excel file when a job starts.

ItemProcessor:
    When data is read using itemreader, ItemProcessor can be used to perform the processing/transformation of data, depending on the business logic.

ItemWriter:
       This interface is used to write bulk data- either to a database or any other file disks.