Skip to content

Instantly share code, notes, and snippets.

View oleksanderkorn's full-sized avatar
🏠
Working from home

Oleksandr Korniienko oleksanderkorn

🏠
Working from home
  • Hilversum, Netherlands
View GitHub Profile
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Oleksandr Korniienko",
"label": "Software Engineer, Consultant",
"email": "oleksanderkorn@gmail.com",
"summary": "Results-driven Software Engineer with over 10 years of experience in full stack development. Proven track record of delivering high-quality software solutions in the financial services industry. Skilled in developing secure APIs, leading scrum teams, and collaborating with cross-functional teams to ensure system availability, security, scalability, and reliability. Strong expertise in Kotlin, Java, Spring Boot, and other technologies. Co-founder of successful applications that have helped improve gaming skills. Committed to staying up-to-date with the latest industry trends and continuously enhancing technical skills. Excellent communication and problem-solving abilities.",
@oleksanderkorn
oleksanderkorn / mintingAndBurning.log
Last active October 30, 2021 23:16
Joystream testnet - Chain 5 - Minting and Burning sources
This file has been truncated, but you can view the full file.
[INFO] Block: [720400] Issuance: [707158122] Previous Issuance: [707108122] Delta: [50000] Calculated Delta: [50000] Total Minted: [50000] Total Burned: [0]
[INFO] Block: [720438] Issuance: [707162421] Previous Issuance: [707158122] Delta: [4299] Calculated Delta: [4299] Total Minted: [4299] Total Burned: [0]
[INFO] Block: [720931] Issuance: [707175315] Previous Issuance: [707162421] Delta: [12894] Calculated Delta: [12894] Total Minted: [12894] Total Burned: [0]
[INFO] Block: [720934] Issuance: [707180021] Previous Issuance: [707175315] Delta: [4706] Calculated Delta: [4706] Total Minted: [4706] Total Burned: [0]
[INFO] Block: [721111] Issuance: [707179921] Previous Issuance: [707180021] Delta: [-100] Calculated Delta: [-100] Total Minted: [0] Total Burned: [100]
[INFO] Block: [721325] Issuance: [707183006] Previous Issuance: [707179921] Delta: [3085] Calculated Delta: [3085] Total Minted: [3085] Total Burned: [0]
[INFO] Block: [721358] Issuance: [707194814] Previous Issuance: [707183006] Delta: [11808] Calc

Keybase proof

I hereby claim:

  • I am oleksanderkorn on github.
  • I am lkskrn (https://keybase.io/lkskrn) on keybase.
  • I have a public key ASD-pWSH81ewEnQIH8pOAM51_MivKva4TnM2Wwev-wnYIQo

To claim this, I am signing this object:

@oleksanderkorn
oleksanderkorn / git-aliases.md
Created September 28, 2020 09:59 — forked from mwhite/git-aliases.md
The Ultimate Git Alias Setup

The Ultimate Git Alias Setup

If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.

Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.

The simplest way to add an alias for a specific git command is to use a standard bash alias.

# .bashrc
@oleksanderkorn
oleksanderkorn / scala-cheat-sheet.md
Created April 4, 2019 13:34 — forked from jaturken/gist:3976117
Scala features cheatsheet

Cheat Sheet

This cheat sheet originated from the forum, credits to Laurent Poulain. We copied it and changed or added a few things.

Evaluation Rules

  • Call by value: evaluates the function arguments before calling the function
  • Call by name: evaluates the function first, and then evaluates the arguments if need be

Multiple MySQL Versions with Homebrew

For homebrew version 0.9.5.

brew -v # => Homebrew 0.9.5

Install the current version of mysql.

# Install current mysql version

brew install mysql