Skip to content
View RipDevil's full-sized avatar
💨
tired
💨
tired
Block or Report

Block or report RipDevil

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

Hi! 🎉

I am usually doing some stuff using js

Currently working at Yandex Funtech.

Pinned

  1. Just a fun micro app to count from t... Just a fun micro app to count from to with emojis :one::three::three::seven: Feel free to take it if you want it
    1
    const from = parseInt(
    2
      process?.argv[2] &&
    3
        /--from=(?<from>[\d]+)/m.exec(process.argv[2])?.groups?.from,
    4
      10
    5
    );
  2. My snippets for VScode My snippets for VScode
    1
    {
    2
      "Console log object with key": {
    3
        "prefix": "clo",
    4
        "body": "console.log('%c !!! ${1:object} :>> ', 'font-weight: bold; color: white; background-color: green; font-size: larger;', ${1:object});",
    5
        "description": "Displays an object in the console with its name"