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 3231 commits βββββββββββββββββββββββββ 25.68 %
π Daytime 5697 commits βββββββββββββββββββββββββ 45.28 %
π Evening 3278 commits βββββββββββββββββββββββββ 26.05 %
π Night 376 commits βββββββββββββββββββββββββ 02.99 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
Markdown 24 hrs 24 mins βββββββββββββββββββββββββ 45.53 %
YAML 10 hrs 46 mins βββββββββββββββββββββββββ 20.11 %
Other 7 hrs 49 mins βββββββββββββββββββββββββ 14.59 %
Org 5 hrs 3 mins βββββββββββββββββββββββββ 09.43 %
Go 1 hr 37 mins βββββββββββββββββββββββββ 03.02 %
π₯ Editors:
Claude Code 47 hrs 38 mins βββββββββββββββββββββββββ 88.88 %
Zed 4 hrs 10 mins βββββββββββββββββββββββββ 07.80 %
Emacs 1 hr 3 mins βββββββββββββββββββββββββ 01.97 %
Zsh 23 mins βββββββββββββββββββββββββ 00.74 %
Codex Exec 8 mins βββββββββββββββββββββββββ 00.27 %
π» Operating System:
Linux 53 hrs 36 mins βββββββββββββββββββββββββ 100.00 %
π€ AI Coding This Week
β± AI Coding Time: 51 hrs 28 mins (96.03%)
βοΈ 10,270 lines written by AI, 539 lines written by hand (95.01% AI-written)
π€ 18,278,536 Input Tokens, 2,592,294 Output Tokens
π΅ $794.99 Estimated AI Cost This Week
π§ 38 AI Sessions, 488 AI Prompts
Opus 7,559 lines βββββββββββββββββββββββββ 71.22 %
Fable 2,816 lines βββββββββββββββββββββββββ 26.53 %
GPT 239 lines βββββββββββββββββββββββββ 02.25 %
Codex-Exec 0 lines βββββββββββββββββββββββββ 00.00 %
π AI Coding Insights:
π€ AI-Driven β 95.01% of written lines came from AI
π Detailed Prompter β average 1,127 characters per prompt
π Iterative Prompter β average 13 prompts per session
π High AI Trust β 4.87% of changed lines were hand-edited
Last Updated on 06/09/2026 01:47:26 UTC







