ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β β
β > CodeWithDark's Terminal β
β β
β AI/ML Engineer & Researcher | (GPU Poor) LLMs, NLP & Computer Vision | β
β Applied AI & Innovating with Open Source β
β β
β > CodeWithDark | Your Friendly Dev Environment < β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
from typing import Tuple, List, Dict
from dataclasses import dataclass
from datetime import datetime
class Terminal:
"""Base terminal interface"""
def __init__(self):
self.boot_time = datetime.now()
self.status = "Running..."
class Dark:
"""Core system interface"""
def __init__(self):
self.codename = "CodeWithDark"
self.version = "1.0.0"
def GPU_poor(cls):
"""
β οΈ System Status: GPU Bottleneck Detected
Current: Integrated Graphics
Desired: NVIDIA RTX 4090 | Tesla A100
"""
return cls
@dataclass
class SystemInfo:
processor: str
ram: str
gpu: str = None
@GPU_poor
class DarkAttributes(Dark):
"""
π― Primary Interface for CodeWithDark's Development Environment
Status: Online | Active | Coding
"""
def __boot_sequence(self) -> None:
"""Initialize core systems"""
pass
@property
def social_matrix(self) -> Tuple[str, str, str, str]:
"""
π« Communication Channels
Status: Always Open for Collaboration
"""
return (
"linkedin: in/codewithdark",
"facebook: codewithdark.fb",
"email: codewithdark90@gmail.com",
"linktree: linktr.ee/codewithdark"
)
@property
def human_metadata(self) -> Tuple[List[str], int]:
"""
π Human Interface Properties
"""
return (
['Urdu', 'Poshto', 'English'], # Language Modules
18 # System Uptime (Years)
)
@property
def tech_stack(self) -> dict:
"""
π Technical Capabilities
Status: Continuously Learning & Upgrading
"""
return {
"core_expertise": {
"expert": ["Python"],
"intermediate": ["C++", "AI", "ML", "DL"],
"learning": ["Assembly", "Julia", "Java"]
},
"specialization": [
"Web/App Python Development",
"Backend Architecture",
"Artificial Intelligence"
],
"development_env": {
"primary_ide": ["PyCharm", "VSCode", "Google Colab"],
"current_system": SystemInfo(
processor="Intel(R) Core(TM) i5-7300U CPU",
ram="8GB",
gpu=None
),
"dream_setup": {
"performance": SystemInfo(
processor="Intel(R) Core(TM) i9-12900K CPU",
ram="64GB",
gpu="NVIDIA GeForce RTX 4090"
),
"extreme": SystemInfo(
processor="AMD Ryzen 9 5950X",
ram="128GB",
gpu="NVIDIA Tesla A100"
)
}
}
}
def __str__(self) -> str:
return f"""
βββββ CodeWithDark's Development Environment βββββ
β Status : Active β
β Focus : Python | Backend | AI β
β GPU : Pending Upgrade... β
ββββββββββββββββββββββββββββββββββββββββββββββββββ
"""
if __name__ == "__main__":
# Initialize Dark Terminal
terminal = Terminal()
profile = DarkAttributes()
# System Status
print(f"""
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β System Status β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ£
β System Boot Time : {terminal.boot_time.strftime('%Y-%m-%d %H:%M:%S')} β
β Profile Version : {profile.version} β
β Status : {terminal.status} β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
""")
-
Notifications
You must be signed in to change notification settings - Fork 0
Config files for my GitHub profile.
codewithdark-git/codewithdark-git
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Config files for my GitHub profile.
Topics
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published