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 2506 commits βββββββββββββββββββββββββ 25.81 %
π Daytime 4387 commits βββββββββββββββββββββββββ 45.18 %
π Evening 2531 commits βββββββββββββββββββββββββ 26.06 %
π Night 287 commits βββββββββββββββββββββββββ 02.96 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
sh 6 hrs 31 mins βββββββββββββββββββββββββ 32.05 %
Org 6 hrs 30 mins βββββββββββββββββββββββββ 31.95 %
Markdown 2 hrs 34 mins βββββββββββββββββββββββββ 12.66 %
YAML 2 hrs βββββββββββββββββββββββββ 09.87 %
HCL 33 mins βββββββββββββββββββββββββ 02.74 %
π₯ Editors:
VS Code 13 hrs 25 mins βββββββββββββββββββββββββ 65.87 %
Zsh 6 hrs 31 mins βββββββββββββββββββββββββ 32.05 %
Emacs 25 mins βββββββββββββββββββββββββ 02.07 %
Vim 0 secs βββββββββββββββββββββββββ 00.02 %
π» Operating System:
Linux 20 hrs 22 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 06/03/2026 08:41:40 UTC







