Skip to content
View sahil-me's full-sized avatar
:electron:
Programming Enlightenment ⏳
:electron:
Programming Enlightenment ⏳

Highlights

  • Pro

Block or report sahil-me

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
sahil-me/README.md

Hi , I'm Sahil Sharma! 👻

Pull Shark Guide YOLO Guide

[An animated gif of an Octocat using a teleporter in dark and light modes. If you switch your color theme, you can see it in the other color mode:)

Typing SVG

Visitor's Count

Sahil-me


🛠 Tech Stack

Java MySQL PostgreSQL MongoDB Hibernate Maven Spring Boot AWS Git GitHub GitHub Copilot MySQL Workbench Postman IntelliJ IDEA Stack Overflow OpenAI Notion Figma Canva VS Code VS Code Docker Kubernetes Microservices Apache Kafka JUnit TestNG Selenium JMeter Cucumber Eclipse IDE


Code of Life ▼

public class Life {

    private static boolean alive = true;

    public static void dailyRoutine() {
        while (alive) {
            if (isWorkingDay()) {
                wakeUp();
                breakfast();
                code();
                lunchBreak();
                relax();
                spendTimeWithFriends();
                dinner();
                codeMore();
                sleep();
            } else {
                learnNewSkills();
                exploreSideProjects();
                contributeToOpenSource();
                haveFun();
            }

            if (isWeekend()) {
                weekendActivities();
                takeABreak();
            }
        }
    }

    public static boolean isWorkingDay() {
        return true; 
    }

    public static boolean isWeekend() {
        return false; 
    }

    public static void wakeUp() {
        System.out.println("Waking up...");
    }

    public static void breakfast() {
        System.out.println("Having breakfast...");
    }

    public static void code() {
        System.out.println("Coding...");
    }

    public static void lunchBreak() {
        System.out.println("Lunch break...");
    }

    public static void relax() {
        System.out.println("Relaxing...");
    }

    public static void spendTimeWithFriends() {
        System.out.println("Spending time with friends...");
    }

    public static void dinner() {
        System.out.println("Having dinner...");
    }

    public static void codeMore() {
        System.out.println("Coding more...");
    }

    public static void sleep() {
        System.out.println("Sleeping...");
    }

    public static void learnNewSkills() {
        System.out.println("Learning new skills...");
    }

    public static void exploreSideProjects() {
        System.out.println("Exploring side projects...");
    }

    public static void contributeToOpenSource() {
        System.out.println("Contributing to open source...");
    }

    public static void haveFun() {
        System.out.println("Having fun...");
    }

    public static void weekendActivities() {
        System.out.println("Doing weekend activities...");
    }

    public static void takeABreak() {
        System.out.println("Taking a break...");
    }

    public static void main(String[] args) {
        dailyRoutine();
    }
}

🧩 Coding Profiles

LeetCode   HackerRank Scaler Devpost

☕ Buy Me a Coffee

Buy Me A Coffee

Connect with Me

I’m always eager to connect with passionate professionals, fellow developers, and innovators who share a love for technology and software development. Let’s collaborate, exchange ideas, and build something amazing together!

Feel free to reach out to me through the following channels:

Medium Sahil Sharma on Stack Overflow

GitHub contribution grid snake animation

Pinned Loading

  1. Game_tic-tac-toe Game_tic-tac-toe Public

    🕹 Tic-Tac-Toe Game ~ A Java game for playing against a bot or a friend. It supports multiple winning strategies, fallback random moves, and robust input handling. Built with clean object-oriented d…

    Java

  2. Calculator_App Calculator_App Public

    🧮 Calculator App ~ Effortlessly perform addition, subtraction, multiplication, and division with a sleek, user-friendly interface. Lightweight, fast, and perfect for quick calculations! ✨

    Java