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 3148 commits βββββββββββββββββββββββββ 26.11 %
π Daytime 5424 commits βββββββββββββββββββββββββ 44.99 %
π Evening 3167 commits βββββββββββββββββββββββββ 26.27 %
π Night 318 commits βββββββββββββββββββββββββ 02.64 %
π This Week I Spent My Time On
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
YAML 6 hrs 45 mins βββββββββββββββββββββββββ 24.28 %
Org 5 hrs 54 mins βββββββββββββββββββββββββ 21.20 %
Markdown 5 hrs 49 mins βββββββββββββββββββββββββ 20.88 %
Other 4 hrs 36 mins βββββββββββββββββββββββββ 16.55 %
Bash 1 hr 30 mins βββββββββββββββββββββββββ 05.40 %
π₯ Editors:
Claude Code 23 hrs 26 mins βββββββββββββββββββββββββ 84.09 %
Zed 2 hrs 42 mins βββββββββββββββββββββββββ 09.73 %
Emacs 59 mins βββββββββββββββββββββββββ 03.56 %
Zsh 28 mins βββββββββββββββββββββββββ 01.71 %
Vim 12 mins βββββββββββββββββββββββββ 00.76 %
π» Operating System:
Linux 27 hrs 52 mins βββββββββββββββββββββββββ 100.00 %
π€ AI Coding This Week
β± AI Coding Time: 25 hrs 29 mins (91.46%)
βοΈ 6,355 lines written by AI, 120 lines written by hand (98.15% AI-written)
π€ 9,471,775 Input Tokens, 1,326,034 Output Tokens
π΅ $384.47 Estimated AI Cost This Week
π§ 13 AI Sessions, 259 AI Prompts
Opus 4,486 lines βββββββββββββββββββββββββ 68.72 %
Fable 1,936 lines βββββββββββββββββββββββββ 29.66 %
GPT 106 lines βββββββββββββββββββββββββ 01.62 %
Codex-Exec 0 lines βββββββββββββββββββββββββ 00.00 %
π AI Coding Insights:
π€ AI-Driven β 98.15% of written lines came from AI
π Concise Prompter β average 394 characters per prompt
π Iterative Prompter β average 20 prompts per session
π High AI Trust β 2.08% of changed lines were hand-edited
Last Updated on 20/09/2026 02:13:51 UTC







