Skip to content
View Searge's full-sized avatar
🦄
Servering servers
🦄
Servering servers

Block or report Searge

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Searge/README.md

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

I'm an Early 🐤

🌞 Morning                1748 commits        ██████░░░░░░░░░░░░░░░░░░░   25.84 % 
🌆 Daytime                2847 commits        ███████████░░░░░░░░░░░░░░   42.08 % 
🌃 Evening                1911 commits        ███████░░░░░░░░░░░░░░░░░░   28.25 % 
🌙 Night                  259 commits         █░░░░░░░░░░░░░░░░░░░░░░░░   03.83 % 

📊 This Week I Spent My Time On

🕑︎ Time Zone: Europe/Kyiv

💬 Programming Languages: 
sh                       5 hrs 7 mins        ███████████░░░░░░░░░░░░░░   44.50 % 
YAML                     4 hrs 6 mins        █████████░░░░░░░░░░░░░░░░   35.64 % 
Python                   1 hr 10 mins        ███░░░░░░░░░░░░░░░░░░░░░░   10.25 % 
JSON                     23 mins             █░░░░░░░░░░░░░░░░░░░░░░░░   03.37 % 
TOML                     12 mins             ░░░░░░░░░░░░░░░░░░░░░░░░░   01.74 % 

🔥 Editors: 
VS Code                  6 hrs 15 mins       ██████████████░░░░░░░░░░░   54.41 % 
Zsh                      5 hrs 7 mins        ███████████░░░░░░░░░░░░░░   44.50 % 
Obsidian                 7 mins              ░░░░░░░░░░░░░░░░░░░░░░░░░   01.09 % 

💻 Operating System: 
Linux                    11 hrs 30 mins      █████████████████████████   100.00 % 

Last Updated on 02/03/2025 00:51:28 UTC

footer

Pinned Loading

  1. All GitHub Emojis All GitHub Emojis
    1
    # Complete list of github markdown emoji
    2
    
                  
    3
    **NB** Check out the script [down bellow](https://gist.github.com/Searge/9004f595dce70d8df0856d44859684c5#file-grep_emoji-py) and generate your own table :upside_down_face:
    4
    
                  
    5
    <a href="https://smallseotools.com/visitor-hit-counter/"><img src="https://smallseotools.com/counterDisplay?code=fc76b2e9f39fc814ad57e36447f1aff8&style=0005&pad=5&type=page&initCount=2"  title="Visitor Hit Counter" Alt="Visitor Hit Counter" border="0"></a>
  2. GeekOpsUA/k8s-hard-way-ansible GeekOpsUA/k8s-hard-way-ansible Public

    🐄 Provisioning of Kubernetes the hard way with Ansible

    Shell

  3. GeekOpsUA/aws_eks_karpenter_mf GeekOpsUA/aws_eks_karpenter_mf Public

    ⛵ Deploy AWS EKS with Karpenter

    HCL

  4. KubeSprayDocker KubeSprayDocker Public

    Run Kubespray in Docker

    Shell