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 3249 commits βββββββββββββββββββββββββ 26.31 %
π Daytime 5615 commits βββββββββββββββββββββββββ 45.47 %
π Evening 3182 commits βββββββββββββββββββββββββ 25.77 %
π Night 302 commits βββββββββββββββββββββββββ 02.45 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
Org 19 hrs 13 mins βββββββββββββββββββββββββ 42.27 %
YAML 8 hrs 19 mins βββββββββββββββββββββββββ 18.30 %
Other 7 hrs 1 min βββββββββββββββββββββββββ 15.44 %
Markdown 5 hrs 37 mins βββββββββββββββββββββββββ 12.37 %
Bash 1 hr 11 mins βββββββββββββββββββββββββ 02.62 %
π₯ Editors:
Zed 25 hrs 2 mins βββββββββββββββββββββββββ 55.02 %
Emacs 12 hrs 4 mins βββββββββββββββββββββββββ 26.56 %
Claude Code 5 hrs 46 mins βββββββββββββββββββββββββ 12.71 %
Zsh 2 hrs 5 mins βββββββββββββββββββββββββ 04.59 %
Vim 30 mins βββββββββββββββββββββββββ 01.12 %
π» Operating System:
Linux 45 hrs 29 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 24/05/2026 00:28:26 UTC







