Hi, I'm Searge Vulcan salute
DevOps Engineer at Smile Ukraine
Stand With Ukraine @Searge@hachyderm.io
# %% """Creating a class for keeping track of knowledge.""" import json from dataclasses import asdict, make_dataclass from rich import print person = make_dataclass( "Person", [ ("nick", str), ("name", str), ("pipelines", list[str]), ("web_services", list[str]), ("languages", list[str]), ("databases", list[str]), ("misc", list[str]), ("ongoing", list[str]), ], namespace={"to_json": lambda self: json.dumps(asdict(self), indent=4)}, ) # %% # @title Initializing classes and creating lists if __name__ == "__main__": pipelines = ['GitLab Ci', 'GitHub Actions', 'AWS CodePipeline', 'Jenkins'] web_services = ['nginx', 'apache', 'varnish', 'fastly', 'elastic', 'solr'] languages = ['YAML', 'Bash', 'Python', 'JS', 'Web'] databases = ['SQLite', 'PostgreSQL', 'Percona', 'DynamoDB', 'Redis'] misc = ['Ansible', 'Linux', 'LXC', 'Docker', 'Terraform', 'AWS'] ongoing = ['LPIC', 'Full Stack Web', 'AWS'] me = person('@Searge', 'Sergij Boremchuk', pipelines, web_services, languages, databases, misc, ongoing) print(me.to_json()) # %%
Thanks @rednafi for idea of script π
I'm an Early π€
π Morning 2283 commits βββββββββββββββββββββββββ 26.16 %
π Daytime 3815 commits βββββββββββββββββββββββββ 43.71 %
π Evening 2358 commits βββββββββββββββββββββββββ 27.02 %
π Night 271 commits βββββββββββββββββββββββββ 03.11 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
sh 14 hrs 36 mins βββββββββββββββββββββββββ 40.60 %
YAML 10 hrs 10 mins βββββββββββββββββββββββββ 28.29 %
Markdown 6 hrs 37 mins βββββββββββββββββββββββββ 18.44 %
TOML 1 hr 3 mins βββββββββββββββββββββββββ 02.96 %
Python 46 mins βββββββββββββββββββββββββ 02.15 %
π₯ Editors:
VS Code 17 hrs 52 mins βββββββββββββββββββββββββ 49.70 %
Zsh 14 hrs 36 mins βββββββββββββββββββββββββ 40.60 %
Zed 1 hr 55 mins βββββββββββββββββββββββββ 05.37 %
Obsidian 1 hr 28 mins βββββββββββββββββββββββββ 04.08 %
Vim 5 mins βββββββββββββββββββββββββ 00.25 %
π» Operating System:
Linux 35 hrs 58 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 15/02/2026 00:11:49 UTC