Skip to content
View tasmussen15's full-sized avatar
🗿
Coding
🗿
Coding
  • USA
  • 19:55 (UTC -05:00)

Block or report tasmussen15

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Blockfall Blockfall Public

    This is a simple game about falling blocks that takes very loose inspiration from James Bond.

    Python 2

  2. Returns list of all prime numbers up... Returns list of all prime numbers up to and including 'n' maximum bound
    1
    def prime(n):
    2
        sieve = [True for x in range(n+1)]
    3
        primes = []
    4
        for num in range(2, n+1):
    5
            if sieve[num] == True:
  3. mariano-f-r/chatter mariano-f-r/chatter Public archive

    A small Rust websocket chat

    JavaScript 5 4