Skip to content
View derockspace's full-sized avatar

Block or report derockspace

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

Pinned Loading

  1. .github .github Public

    Forked from github/.github

    Community health files for the @GitHub organization

  2. Derock-trends/Derockhub- Derock-trends/Derockhub- Public

  3. derock-cli derock-cli Public

    Forked from cli/cli

    GitHub’s official command line tool

    Go 1

  4. rye rye Public

    Forked from astral-sh/rye

    a Hassle-Free Python Experience

    Rust

  5. This Gist contains a collection of u... This Gist contains a collection of useful JavaScript utility functions that can be reused across different projects. It includes functions for array manipulation, string formatting, and date handling. Feel free to fork this Gist and contribute additional functions or improvements!
    1
    // Function to format a date to YYYY-MM-DD
    2
    function formatDate(date) {
    3
        const d = new Date(date);
    4
        let month = '' + (d.getMonth() + 1);
    5
        let day = '' + d.getDate();