Skip to content
View StaticallyTypedRice's full-sized avatar
Block or Report

Block or report StaticallyTypedRice

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

  1. PodKatch PodKatch Public

    A free and open source podcast app for Windows, Mac and Linux.

    Kotlin 7

  2. binarytwig.com binarytwig.com Public

    The source code behind my personal website and technology blog, BinaryTwig.

    Python

  3. RedditButtonClone RedditButtonClone Public

    An imitation of the button on reddit's /r/TheButton

    CSS

  4. PodcastDownloader PodcastDownloader Public

    A simple utility for automatically downloading all podcasts listed in a given RSS file.

    Python 1

  5. xfizzbuzz xfizzbuzz Public

    An extensible (over-engineered) fizzbuzz implementation in Rust

    Rust

  6. Thanos Sort Thanos Sort
    1
    import random
    2
    import typing.List
    3
    
                  
    4
    def thanos_sort(a: List[int]) -> List[int]:
    5
        '''Removes half of the list until it's perfectly balanced, like all things should be.'''