Giter VIP home page Giter VIP logo

melvynx's Introduction

Hi there 👋

I create application on the web and share my journey on Twitter and Youtube !

And... I create online courses in french to help developers to master modern web technologies.

Contact me

My projects

My personal website, where you can find my projects, my blog and my resume.

My blog and my newsletter website.

My online courses plateforme. I created BeginReact, NextReact and BeginJavaScript.

A ChatGPT like application that create and generate component directly in the browser. Stop wasting time copy pasting code from ChatGPT to your editor, Chat2Code bring editor in the chat.

Create a quiz with multiple choice and open questions with input. The next generation of quiz.

Correct the grammar of an entire book in 5 minutes.

Accept all your invitations on LinkedIn.

Start reading posts FASTER.

Create a daily note without any friction.

Visitor count

Added the Mon 3 Jan 2022

Last update on Fri May 17 2024

229 day before 2025 ⏱ days before new years

🤖 This README.md is updated with horror, by Gabot ❤️

melvynx's People

Contributors

melvynx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

melvynx's Issues

Your mood is undefined on sunday

Every sunday, your mood is undefined.

// index.js

const today = new Date();

const moodByDay = {
  1: 'hate',
  2: 'wickedness',
  3: 'pleasure',
  4: 'wickedness',
  5: 'cruelty',
  6: 'horror',
  7: 'love',
};

function getGabotSigning() {
  const mood = moodByDay[today.getDay()];
  return `🤖 This README.md is updated with ${mood}, by Gabot ❤️`;
}

The getDay() method of Date instances returns the day of the week for this date according to local time, where 0 represents Sunday.

You might want to update the 7 key to 0 in the moodByDay object or update the getGabotSigning fn:

// index.js

function getGabotSigning() {
  const mood = moodByDay[today.getDay() + 1]; // add `+ 1` to be in the 1-7 range
  return `🤖 This README.md is updated with ${mood}, by Gabot ❤️`;
}

Thank you for your work 🙏

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.