Skip to content
View 0v00's full-sized avatar

Block or report 0v00

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. slurp slurp Public

    CLI tool to fetch, list, rank, and summarize research papers from arXiv

    Python

  2. gleam-gh-action gleam-gh-action Public

    gleam docker container action example

    Gleam

  3. redBook.scala redBook.scala
    1
    @main def run =
    2
        def fib(n: Int): Int =
    3
            @annotation.tailrec
    4
            def go(i: Int, curr: Int, prev: Int): Int =
    5
                if i >= n then curr
  4. advent of code 2024 - day 1 advent of code 2024 - day 1
    1
    import gleam/int
    2
    import gleam/io
    3
    import gleam/list
    4
    import gleam/regexp
    5
    import gleam/result