Coder Social home page Coder Social logo

collreach-configs's Introduction

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

collreach-configs's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.