Skip to content
View ra-res's full-sized avatar
🤘
🤘

Block or report ra-res

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
ra-res/README.md
function fizzbuzz(n) {
  for (let i = 1; i <= n; i++) {
    const fizz = i % 3 == 0, buzz = i % 5 == 0;
    console.log(
      fizz && buzz ? "FizzBuzz"
      : fizz ? "Fizz"
      : buzz ? "Buzz"
      : i
    );
  }
}

Pinned Loading

  1. nvim nvim Public

    My nvim configuration written in lua

    Lua 2

  2. vscode-peachpuff vscode-peachpuff Public

    peachpuff syntax theme adapted from vim's peachpuff colour scheme

    1

  3. advent-of-code-2022 advent-of-code-2022 Public

    Scala 1

  4. ai-predicts-house-prices ai-predicts-house-prices Public

    Machine learning model to predict house prices

    Jupyter Notebook 1

  5. twitter-sentiment-analysis twitter-sentiment-analysis Public

    Sentiment analysis on Twitter posts

    Python 3

  6. google-clone google-clone Public

    Somewhat functional clone of Google's main page.

    JavaScript 1