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 3153 commits βββββββββββββββββββββββββ 26.48 %
π Daytime 5408 commits βββββββββββββββββββββββββ 45.42 %
π Evening 3039 commits βββββββββββββββββββββββββ 25.52 %
π Night 306 commits βββββββββββββββββββββββββ 02.57 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
Other 10 hrs 21 mins βββββββββββββββββββββββββ 37.13 %
Markdown 5 hrs 59 mins βββββββββββββββββββββββββ 21.49 %
Terraform 4 hrs βββββββββββββββββββββββββ 14.34 %
YAML 3 hrs 52 mins βββββββββββββββββββββββββ 13.86 %
sh 1 hr 51 mins βββββββββββββββββββββββββ 06.67 %
π₯ Editors:
VS Code 24 hrs 6 mins βββββββββββββββββββββββββ 86.44 %
Zsh 2 hrs 10 mins βββββββββββββββββββββββββ 07.81 %
Emacs 1 hr 4 mins βββββββββββββββββββββββββ 03.84 %
Unknown Editor 19 mins βββββββββββββββββββββββββ 01.15 %
Zed 10 mins βββββββββββββββββββββββββ 00.60 %
π» Operating System:
Linux 27 hrs 53 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 26/04/2026 00:19:33 UTC







