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 2111 commits βββββββββββββββββββββββββ 26.40 %
π Daytime 3420 commits βββββββββββββββββββββββββ 42.77 %
π Evening 2197 commits βββββββββββββββββββββββββ 27.47 %
π Night 269 commits βββββββββββββββββββββββββ 03.36 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
sh 8 hrs 26 mins βββββββββββββββββββββββββ 71.57 %
Markdown 1 hr 57 mins βββββββββββββββββββββββββ 16.66 %
YAML 1 hr 2 mins βββββββββββββββββββββββββ 08.83 %
JSON 18 mins βββββββββββββββββββββββββ 02.66 %
Git Config 1 min βββββββββββββββββββββββββ 00.18 %
π₯ Editors:
Zsh 8 hrs 26 mins βββββββββββββββββββββββββ 71.57 %
VS Code 3 hrs 19 mins βββββββββββββββββββββββββ 28.24 %
Vim 1 min βββββββββββββββββββββββββ 00.20 %
π» Operating System:
Linux 11 hrs 47 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 30/11/2025 00:08:30 UTC







