Skip to content
View adiwalv's full-sized avatar

Block or report adiwalv

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
adiwalv/README.md

Hello there 👋

visitors Open Source Love

public class SoftwareDeveloper {

    String name;
    String role;

    public SoftwareDeveloper(String name, String role) {
        this.name = name;
        this.role = role;
    }

    public void sayHi() {
        System.out.printf("Hi There! My name is %s and I am a %s", this.name, this.role);
    }

    public static void main(String[] args) {
        SoftwareDeveloper softwareDeveloper = new SoftwareDeveloper("Vikas Adiwal", "Software Developer");
        softwareDeveloper.sayHi();
    }

}

🔧 Technologies & Tools

Linux IntelliJ IDEA Shell Script Python Java Postgres MongoDB Docker Kubernetes

📫   How to reach me:

LinkedIn   Gmail  

Popular repositories Loading

  1. DB-Explain-Visualizer DB-Explain-Visualizer Public

    Visualize the query plan of mongoDB using this tool!

    JavaScript 8 1

  2. emacs-configuration emacs-configuration Public

    Light VAmacs

    Emacs Lisp

  3. mongo-crud mongo-crud Public

    Very first look at mongo db by me

    JavaScript

  4. assembler assembler Public

    C

  5. VAmacs VAmacs Public

    Heavily Modified Emacs. Basically Emacs on steroids

    Emacs Lisp

  6. minesweeper minesweeper Public

    Minesweeper. Using good old C++

    C++