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 3186 commits βββββββββββββββββββββββββ 26.22 %
π Daytime 5591 commits βββββββββββββββββββββββββ 46.01 %
π Evening 3068 commits βββββββββββββββββββββββββ 25.24 %
π Night 308 commits βββββββββββββββββββββββββ 02.53 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
YAML 8 hrs 12 mins βββββββββββββββββββββββββ 32.24 %
Markdown 7 hrs 19 mins βββββββββββββββββββββββββ 28.74 %
Bash 3 hrs 30 mins βββββββββββββββββββββββββ 13.75 %
Python 2 hrs 1 min βββββββββββββββββββββββββ 07.96 %
Org 1 hr 17 mins βββββββββββββββββββββββββ 05.06 %
π₯ Editors:
Claude Code 19 hrs 1 min βββββββββββββββββββββββββ 74.63 %
Zed 2 hrs 43 mins βββββββββββββββββββββββββ 10.67 %
Unknown Wakatime 2 hrs 2 mins βββββββββββββββββββββββββ 08.03 %
Exec Wakatime 39 mins βββββββββββββββββββββββββ 02.61 %
VS Code 31 mins βββββββββββββββββββββββββ 02.06 %
π» Operating System:
Linux 25 hrs 28 mins βββββββββββββββββββββββββ 100.00 %
π€ AI Coding This Week
β± AI Coding Time: 23 hrs 24 mins (91.87%)
βοΈ 14,877 lines written by AI, 48 lines written by hand (99.68% AI-written)
π€ 644,834,130 Input Tokens, 1,400,110 Output Tokens
π΅ $3115.45 Estimated AI Cost This Week
π§ 33 AI Sessions, 205 AI Prompts
Opus 11,809 lines βββββββββββββββββββββββββ 87.13 %
GPT 1,744 lines βββββββββββββββββββββββββ 12.87 %
Sonnet 0 lines βββββββββββββββββββββββββ 00.00 %
Exec-Wakatime 0 lines βββββββββββββββββββββββββ 00.00 %
Vscode-Wakatime 0 lines βββββββββββββββββββββββββ 00.00 %
π AI Coding Insights:
π€ AI-Driven β 99.68% of written lines came from AI
π Detailed Prompter β average 1,281 characters per prompt
π Iterative Prompter β average 6 prompts per session
π High AI Trust β 0.52% of changed lines were hand-edited
Last Updated on 02/08/2026 01:37:34 UTC







