Skip to content
View Wacky404's full-sized avatar
🎯
Focusing
🎯
Focusing

Sponsoring

@neovim

Highlights

  • Pro

Organizations

@BTY-Technology

Block or report Wacky404

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 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
Wacky404/README.md
from dataclasses import dataclass
from typing import Optional, List

@dataclass
class Person:
    first_name: str = "Wayne"
    last_name: str = "Cole"
    age: int = 22
    email: Optional[str] = "waynecole339@gmail.com"
    website: Optional[str] = "https://waynecole.info"
    languages: List[str] = ["C", "C++", "Go", "Typescript", "Python", "Lua", "Bash"]
    
    @property
    def full_name(self) -> str:
        return f"{self.first_name} {self.last_name}"
    
    @property
    def age(self) -> int:
        return self.age

# Usage example:
person = Person(
    first_name="Wacky",
    last_name="404", 
    age=22,
    email="wcole@btytechnology.com"
)

print(person.full_name)  # Wacky 404
print(person.age)        # 22

Pinned Loading

  1. ctx-container ctx-container Public

    Forked from juftin/browsr

    the workflow that I didn't know I needed

    Python

  2. rpserver rpserver Public

    Scalable Reverse Proxy server with built in evasion techniques.

    HTML

  3. wacky-dev-env wacky-dev-env Public

    dev .config

    Lua

  4. worklogger worklogger Public

    Log work for multiple sources, right within your terminal.

    Python