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

Hey, this is us ๐Ÿ‘‹

An illustration showing a variety of differently themed Octocats. Monuments from different cities are indicated in the background like the Space Needle, Berlin Fernsehturm and Transamerica Pyramid.

Yes, we are building GitHub on GitHub. In fact, weโ€™ve been doing this since October 19th, 2007. That's when we made our first commit. Since then we pushed over 2.5 million commits, opened over 1 million issues, submitted roughly 650k pull requests across 4357 repositories from over 50 countries ๐Ÿคฏ. But that's just us. We are proud to be part of the work of millions of developers, companies and robots across the solar system ๐Ÿช. Yes, Robots!

๐Ÿฟ An interconnected community

The open source community is the ๐Ÿ’— heart of GitHub and fundamental to how we build software today. See for yourself:

  • GitHub Sponsors helped support more than 5k individuals and projects around the world ๐ŸŒ
  • Open source projects on GitHub received a stunning 218 million contributions ๐Ÿš€ in the last year alone
  • Every minute a developer creates a new release ๐Ÿ„ for a public project on GitHub

Now that we are talking about the important things โ˜๏ธ, are you contributing to open source? Yes? Okay, you rock! ๐ŸŽธ If not, we can help you get started! Open source software is made by people just like you. Learn more about how to contribute.

๐Ÿฆฆ Contributing to the ecosystem

We contribute to the tools ๐Ÿ”ง we rely on to build and run GitHub, while also maintaining ๐Ÿง™โ€โ™‚๏ธ our own open source projects like:

๐Ÿ‘“ Appendix

See what's next on our public roadmap โœจ and let us know if you have any suggestions ๐Ÿ™‡โ€โ™‚๏ธ. Oh, and by the way, we are always hiring talented, passionate people to join our team ๐Ÿ™Œ.

"Tell me more, I can't get enough!"

๐Ÿคซ Psst! You can create your own organization README.

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();