Skip to content
View vineshghela's full-sized avatar
Block or Report

Block or report vineshghela

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
vineshghela/README.md

Hi there 👋

Vinesh Ghela GitHub stats

public class WhoAmI{ 
    
    private String name;
    private String job; 
    private String[] hobbies;
    private String location;
  
    public WhoAmI(String name, String job, String[] hobbies, String location){ 
        this.name = name; 
        this.job = job; 
        this.hobbies = hobbies; 
        this.location = location;
    } 
  
    public String getName() {
      return name; 
    } 
    public String getJob() {
        return job; 
    }
    public String[] getHobbies() { 
        return hobbies; 
    } 
    
    @Override
    public String toString() { 
        return("Hi my name is "+ this.getName()+ ", from" + this.getLocation() + 
        "! My Job is "+ this.getJob()+" and my hobbies are " + this.getHobbies();
    } 
  
    public static void main(String[] args) { 
        whoAmI vinesh = new WhoAmI(
            "Vinesh Ghela",
            "QA Developer",
            ["Reading", "Trying new food","Gym" ,"Chasing Semi-colons"], 
            "London, United Kingdom"); 
        
        System.out.println(vinesh); 
    } 
} 

💻 Techs, Languages & Tools I use

Java   JS   SQL   python   Spring   React   Express   JQuery   html-5   css   nodejs   Jest JunitSelenium EggPlant

My most used languages:point_down:

Vinesh Stats

Popular repositories

  1. june20software2 june20software2 Public

    Java 2

  2. june2020HTML june2020HTML Public

    HTML 1 1

  3. SpringBarn SpringBarn Public

    Java 1 3

  4. SpringBoot-Jenkins SpringBoot-Jenkins Public

    Forked from QACTrainers/SpringBoot-Jenkins

    Java 1

  5. weEatFinal weEatFinal Public

    JavaScript

  6. vim vim Public

    Forked from bob-crutchley/vim

    My vim configurations

    Shell