DevOps Engineer at Smile Ukraine
# %%
"""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 2208 commits βββββββββββββββββββββββββ 26.18 %
π Daytime 3663 commits βββββββββββββββββββββββββ 43.43 %
π Evening 2295 commits βββββββββββββββββββββββββ 27.21 %
π Night 269 commits βββββββββββββββββββββββββ 03.19 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
sh 17 hrs 11 mins βββββββββββββββββββββββββ 57.58 %
Markdown 4 hrs 29 mins βββββββββββββββββββββββββ 15.02 %
YAML 3 hrs 22 mins βββββββββββββββββββββββββ 11.29 %
Other 1 hr 26 mins βββββββββββββββββββββββββ 04.80 %
Bash 51 mins βββββββββββββββββββββββββ 02.86 %
π₯ Editors:
Zsh 17 hrs 11 mins βββββββββββββββββββββββββ 57.58 %
VS Code 12 hrs 23 mins βββββββββββββββββββββββββ 41.48 %
Obsidian 16 mins βββββββββββββββββββββββββ 00.94 %
Vim 0 secs βββββββββββββββββββββββββ 00.01 %
π» Operating System:
Linux 29 hrs 52 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 01/02/2026 00:10:51 UTC







