Skip to content
View SpoopyTim's full-sized avatar

Block or report SpoopyTim

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

Hi ๐Ÿ‘‹, I'm SpoopyTim

A passionate backend developer and founder of @HorizonApp

GitHub Streak

Contact me!

Languages & Tools

Statistics

wakatime top-langs all-stats

Pinned Loading

  1. GRVYDEV/Project-Lightspeed GRVYDEV/Project-Lightspeed Public

    A self contained OBS -> FTL -> WebRTC live streaming server. Comprised of 3 parts once configured anyone can achieve sub-second OBS to the browser livestreaming

    Rust 3.6k 137

  2. neonbot neonbot Public

    Forked from neonbot-dev/neonbot

  3. Levelling system based on arithmetic... Levelling system based on arithmetic linear progression
    1
    import math
    2
    
                  
    3
    class Levels:
    4
        def __init__(self, xp_per_message, multiplier):
    5
            self.threshold = round(multiplier/5, 0)
  4. Colored Dictionary Tables Colored Dictionary Tables
    1
    import colorama
    2
    from tabulate import tabulate
    3
    from pandas import DataFrame, json_normalize
    4
    from typing import MutableMapping
    5
    
                  
  5. Updated Updated
    1
    class SearchResults(discord.ui.View): # Create an interaction wrapper thing
    2
        def __init__(self, search_query: str, max_pages: int = None): # Call the init method so we can store data
    3
            """Creates a search results viewer based on discord interactions
    4
    5
            Args: