Skip to content
View ayushhurdey's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report ayushhurdey

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

Ayush Choudhary: Fullstack Developer

Hi there 👋, I am Ayush Choudhary.
I am a Java Spring boot & React developer & Inquisitive learner always.
Graduated in B.Tech CSE 2022 from KIET Group of Institions, Ghaziabad
More interested in developing and learning about beautiful and interesting backends architectures.


import java.util.*;

public class Ayush{
    private final static String NAME = "Ayush Choudhary";
    private final static String USERNAME = "ayushhurdey";
    private final static String LOCATION = "Bengaluru, Karnataka, India";
    private final static String LINKEDIN = "https://www.linkedin.com/in/ayush-choudhary-5a0b1b193/";
    private static Map<String, String> map;
    public static Ayush singleton;
    
    private Ayush(){}
    
    public static Ayush getInstance(){
         if (singleton == null){ 
            singleton = new Ayush();
        }
        
        return singleton;
    }
    
    public static Map<String, String> getUserData() {
          map = new HashMap<>(){
             {
                 put("name", NAME);
                 put("username", USERNAME);
                 put("location", LOCATION);
                 put("linkedin", LINKEDIN);
             }
         };
         return map;
    }
    
    public static void main(String args[]){
        Ayush.getInstance()
            .getUserData()
            .forEach((key, value) -> System.out.println(key+ " : " + value));
    }

Contacts


Skills and Tools

Github Stats



Ayush Trips' Activity Graph

Pinned

  1. Competitive_programming Competitive_programming Public

    Contains Competitive Programming problems

    Java 1

  2. CollReach CollReach Public

    A unified system for all internal college communications.

    JavaScript 2 2

  3. Codeganak Codeganak Public

    An online editor and compiler for java and python.

    JavaScript 2

  4. jioFi-wifi-battery-notifier-and-tracker jioFi-wifi-battery-notifier-and-tracker Public

    A simple python program to notify the battery left and status of JioFi battery

    Python 1