Hi, I'm Searge
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
Statistics
I'm an Early
π Morning 1464 commits βββββββββββββββββββββββββ 22.30 %
π Daytime 2958 commits βββββββββββββββββββββββββ 45.06 %
π Evening 1915 commits βββββββββββββββββββββββββ 29.17 %
π Night 227 commits βββββββββββββββββββββββββ 03.46 %
Monday 959 commits βββββββββββββββββββββββββ 14.61 %
Tuesday 839 commits βββββββββββββββββββββββββ 12.78 %
Wednesday 842 commits βββββββββββββββββββββββββ 12.83 %
Thursday 924 commits βββββββββββββββββββββββββ 14.08 %
Friday 830 commits βββββββββββββββββββββββββ 12.64 %
Saturday 983 commits βββββββββββββββββββββββββ 14.98 %
Sunday 1187 commits βββββββββββββββββββββββββ 18.08 %
ποΈ Time Zone: Europe/Kyiv
π¬ Programming Languages:
YAML 3 hrs 40 mins βββββββββββββββββββββββββ 21.86 %
GDScript 2 hrs 41 mins βββββββββββββββββββββββββ 16.00 %
Terraform 2 hrs 22 mins βββββββββββββββββββββββββ 14.10 %
Markdown 1 hr 36 mins βββββββββββββββββββββββββ 09.61 %
INI 1 hr 18 mins βββββββββββββββββββββββββ 07.76 %
π₯ Editors:
VS Code 15 hrs 10 mins βββββββββββββββββββββββββ 90.28 %
Obsidian 1 hr βββββββββββββββββββββββββ 05.98 %
Vim 29 mins βββββββββββββββββββββββββ 02.88 %
Sublime Text 8 mins βββββββββββββββββββββββββ 00.86 %
π» Operating System:
Linux 16 hrs 48 mins βββββββββββββββββββββββββ 100.00 %
Last Updated on 19/10/2023 00:09:31 UTC
Personal projects
View allLoading
Loading
About
Pronouns: Searge
Info
DevOps at Smile
Lutsk, Ukraine
3:58 PM
Member since March 15, 2018