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 3316 commits βββββββββββββββββββββββββ 26.17 %
π Daytime 5794 commits βββββββββββββββββββββββββ 45.73 %
π Evening 3253 commits βββββββββββββββββββββββββ 25.67 %
π Night 307 commits βββββββββββββββββββββββββ 02.42 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
Markdown 3 hrs 22 mins βββββββββββββββββββββββββ 24.97 %
YAML 2 hrs 16 mins βββββββββββββββββββββββββ 16.87 %
Other 2 hrs 12 mins βββββββββββββββββββββββββ 16.38 %
Org 1 hr 22 mins βββββββββββββββββββββββββ 10.17 %
Text 51 mins βββββββββββββββββββββββββ 06.40 %
π₯ Editors:
Claude Code 6 hrs 9 mins βββββββββββββββββββββββββ 45.55 %
VS Code 2 hrs 17 mins βββββββββββββββββββββββββ 16.96 %
Zed 2 hrs βββββββββββββββββββββββββ 14.89 %
Unknown Wakatime 1 hr 57 mins βββββββββββββββββββββββββ 14.43 %
Emacs 57 mins βββββββββββββββββββββββββ 07.12 %
π» Operating System:
Linux 13 hrs 30 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 14/06/2026 00:34:17 UTC







