Skip to content
View abalaci's full-sized avatar
Block or Report

Block or report abalaci

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
abalaci/README.md

Hey, there! ๐Ÿ‘‹๐Ÿผ

I'm Andrei โ€” programmer, maths enthusiast, and a bit of a geek.

I absolutely love C# and most things .NET. I'd also really like to start learning some Rust, TypeScript, and Julia one day.

Besides this, I'm interested in performance optimization, quantum computing, cybersecurity & privacy, video games, geopolitics, sports โ€” especially tennis โ€” and just knowledge, in general.

I'm also keen on contributing more to open source projects. As a side note, my PC runs on Kubuntu โ€” if you're looking for an amazing Linux distro, you should give it a try!

What else?

Have a look at my gists, maybe you'll find something useful there.

Pinned

  1. dendron dendron Public

    Markdown

  2. dotnet-interrupted dotnet-interrupted Public

    A curated list of noteworthy .NET projects that have been archived or abandoned.

  3. rough-cut rough-cut Public

    JSON

  4. A Bash script to download free e-boo... A Bash script to download free e-books from Springer.
    1
    #! /bin/bash
    2
    
                  
    3
    mkdir springer-open
    4
    cd springer-open
    5
    
                  
  5. advent-of-code advent-of-code Public

    C#

  6. A Bash cheat sheet for various tasks... A Bash cheat sheet for various tasks on Ubuntu-based distros.
    1
    # Add a string to the beginning of each line in a file:
    2
    awk '{ print "prefix" $0 }' PATH-TO-FILE
    3
    
                  
    4
    # Append a directory to the PATH environment variable:
    5
    PATH="${PATH:+${PATH}:}/path/to/directory"