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

Block or report spicy

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
spicy/README.md
from typing import NamedTuple, List, Dict

class ContactInfo(NamedTuple):
    email: str
    discord: str

class CodingInfo(NamedTuple):
    specialities: List[str]
    environments: List[str]
    databases: List[str]
    orms: List[str]
    languages: Dict[str, List[str]]

class Attributes:
    
    @staticmethod
    def get_contact_info() -> ContactInfo:
        """
        Returns contact details.
        """
        email = "danieltcurrey@gmail.com"
        discord = "spicy#7453"
        return ContactInfo(email, discord)

    @staticmethod
    def get_coding_info() -> CodingInfo:
        """
        Returns coding details including languages, tools, and specialities.
        """
        languages = {
            'expert': ['c#', 'c++', 'python', 'yaml'],
            'intermediate': ['powershell', 'c', 'typescript', 'java', 'js'],
            'learning': ['asm', 'go']
        }
        specialities = ['unity', 'azure devops', 'fullstack', 'CI/CD']
        environments = ['vs ide', 'vscode', 'pycharm']
        databases = ['MS SQL Server', 'MySQL', 'SQLite', 'Oracle']
        orms = ['EF']

        return CodingInfo(specialities, environments, databases, orms, languages)

Projects

  • Detection (Lead Developer - C#, Unity) - An immersive virtual reality first person shooter where you need to scan your environment.
  • Strafe Analyzer (Sole Developer -C++, C#, PHP) - Real-time statistical overlay for improving video game speedrunning movement.
  • FirstBulletAccuracy (Sole Developer - C++, ImGUI) - Window overlay for real time FPS gameplay monitoring and tips.

Skills

Spicy's GitHub Stats Spicy's GitHub Top Languages

Popular repositories

  1. StrafeAnalyzer StrafeAnalyzer Public

    A tool that analyzes player inputs and tells the player how to improve player movement through statistics, realtime graphs, etc! :)

    C 42 7

  2. MovementVisualizer MovementVisualizer Public

    Visualizes movement vectors in CS:S and CS:GO

    C 4 1

  3. SensitivityFinder SensitivityFinder Public

    SensitivityFinder

    C# 1

  4. JiraPS JiraPS Public

    Forked from AtlassianPS/JiraPS

    PowerShell module to interact with Atlassian JIRA

    PowerShell 1

  5. ShellSpawn ShellSpawn Public

    C++ 1

  6. spicy spicy Public