Skip to content
View zero-sigma's full-sized avatar
  • Los Angeles

Highlights

  • Pro
Block or Report

Block or report zero-sigma

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
zero-sigma/README.md
import json
from dataclasses import asdict, dataclass


@dataclass
class Stack:
    languages    : tuple = ("Python", "JS/TS", "Java", "C/C++")
    databases    : tuple = ("MySQL", "PostgreSQL", "Redis")
    libraries    : tuple = ("React", "Vue", "Svelte," "HTMX")
    frameworks   : tuple = ("FastAPI", "Django", "Next.js")
    misc_tech    : tuple = ("Docker", "Celery", "RabbitMQ")

    def serialize(self):
        return json.dumps(asdict(self), indent=4)


stack = Stack()
print(stack.serialize())

Pinned Loading

  1. personal-site personal-site Public

    Python

  2. tinypoly tinypoly Public

    A lightweight alternative to Unpoly with zero dependencies and an identical API surface.

    JavaScript