Giter Club home page Giter Club logo

git-buddy's Introduction

Hello, World! 🌍
I'm Deep - aka [DrasticCoder] πŸ‘‹

I'm here to blend code with a sprinkle of fun. Here’s a bit about me:

type Mood = 'excited' | 'chilled' | 'tired';

interface WorkLifeBalance {
  task: string;
  mood?: Mood;
}

const funEmojis: Record<Mood, string> = {
  excited: 'πŸš€',
  chilled: '😎',
  tired: '😴'
};

const professionalAdvice: Record<Mood, string> = {
  excited: "Awesome! Keep that energy going but stay sharp.",
  chilled: "Nice! Remember to keep the momentum going.",
  tired: "Take a break, recharge, and come back with fresh eyes."
};

function workLifeBalance({ task, mood = 'chilled' }: WorkLifeBalance): string {
  if (!funEmojis[mood]) {
    return "Oops! I think there's a mood typo. Try 'excited', 'chilled', or 'tired'.";
  }

  return `Task at hand: ${task} ${funEmojis[mood]}.\nAdvice: ${professionalAdvice[mood]}`;
}

// Example usage
const message = workLifeBalance({ task: "Refactor my latest web project", mood: "excited" });
console.log(message);

About Me

🎯 Coding Enthusiast: I write clean code when the stars align. Otherwise, embrace the chaos.

β™ŸοΈ Chess Lover: If my code is messy, at least my chess game is strategic.

🌐 Web Developer: Check out my work and about 'me' at drasticcoder.in.

Fun Fact

If I’m not at the keyboard, I’m probably analyzing my chess game or plotting my next coding project.

Let’s Connect

Feel free to reach out if you share similar interests or just want to chat about code or chess!

LinkedIn Β Β  Twitter Β Β  Mail

Github Profile Views

git-buddy's People

Contributors

drasticcoder avatar

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.