The Wayback Machine - https://web.archive.org/web/20210623185045/https://github.com/Searge
Skip to content
Avatar
🧩
Conquering a course
🧩
Conquering a course

Achievements

Achievements

Block or Report

Block or report Searge

Block user

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

Report abuse

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

Report abuse
Searge/README.md

Hi 👋, I'm Searge

An artist passionate with code from Ukraine

StackOverflow Story searge

  • 🌱 I’m currently learning Full Stack Web Development
"""Creating a class for keeping track of knowledge."""
import json
from pprint import pprint
from dataclasses import asdict, make_dataclass

person = make_dataclass('Person',
                        [('nick', str),
                         ('name', str),
                            ('languages', list[str]),
                            ('databases', list[str]),
                            ('misc', list[str]),
                            ('ongoing', list[str])],
                        namespace={
                            'to_json': lambda self: json.dumps(
                                asdict(self), indent=4)})
# %%

if __name__ == '__main__':
    languages = ['Python', 'JS', 'HTML', 'CSS', 'XPath', 'Lisp']
    databases = ['SQLite', 'PostgreSQL', 'DynamoDB', 'Redis']
    misc = ['Linux', 'Shell', 'Docker', 'AWS']
    ongoing = ['Full Stack Web', 'Laravel', 'AWS']

    me = person('@Searge', 'Sergij Boremchuk',
                languages, databases, misc, ongoing)

    pprint(me.to_json())

# %%

Thanks @rednafi for idea of script 😉

My Stats

Searge`s github stats

Searge's wakatime stats

Top Langs

Pinned

  1. Algorithms and Computer Science Exercises

    Jupyter Notebook

  2. Necessary files

    Shell

  3. 1
    # Complete list of github markdown emoji
    2
    
                  
    3
    <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>
    4
    
                  
    5
    ## Alphabetical order

462 contributions in the last year

Jun Jul Aug Sep Oct Nov Dec Jan Feb Mar Apr May Jun Mon Wed Fri
Activity overview
Contributed to Searge/Solutions, Searge/speedstats, Searge/goit-markup-hw-04 and 5 other repositories

Contribution activity

Seeing something unexpected? Take a look at the GitHub profile guide.