Skip to content

searge/Searge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4,586 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hi, I'm Searge Vulcan salute

DevOps Engineer at Smile Ukraine

Stand With Ukraine @Searge@hachyderm.io

# %%
"""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

Skyline for 2021

Visitors

Code Time

I'm an Early 🐤

🌞 Morning                2479 commits        ██████░░░░░░░░░░░░░░░░░░░   25.83 % 
🌆 Daytime                4327 commits        ███████████░░░░░░░░░░░░░░   45.09 % 
🌃 Evening                2503 commits        ███████░░░░░░░░░░░░░░░░░░   26.08 % 
🌙 Night                  287 commits         █░░░░░░░░░░░░░░░░░░░░░░░░   02.99 % 

📊 This Week I Spent My Time On

🕑︎ Time Zone: Europe/Kyiv

💬 Programming Languages: 
sh                       8 hrs 41 mins       ████████████░░░░░░░░░░░░░   46.42 % 
Markdown                 4 hrs 49 mins       ██████░░░░░░░░░░░░░░░░░░░   25.82 % 
YAML                     3 hrs 54 mins       █████░░░░░░░░░░░░░░░░░░░░   20.91 % 
TOML                     15 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.42 % 
Docker                   14 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.30 % 

🔥 Editors: 
VS Code                  9 hrs 36 mins       █████████████░░░░░░░░░░░░   51.39 % 
Zsh                      8 hrs 41 mins       ████████████░░░░░░░░░░░░░   46.42 % 
Cursor                   20 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.83 % 
Obsidian                 4 mins              ░░░░░░░░░░░░░░░░░░░░░░░░░   00.36 % 

💻 Operating System: 
Linux                    18 hrs 42 mins      █████████████████████████   100.00 % 

Last Updated on 01/03/2026 00:10:55 UTC

footer

About

About me

Resources

License

Stars

Watchers

Forks

Contributors