Skip to content

Instantly share code, notes, and snippets.

View aliesbelik's full-sized avatar

Aliaksandr Belik aliesbelik

View GitHub Profile
@aliesbelik
aliesbelik / performance-reading.md
Last active December 5, 2021 19:12
Performance Reading
@aliesbelik
aliesbelik / publish-go-app-on-github.md
Last active August 30, 2021 19:50 — forked from lesovsky/publicating-go-application-on-github.md
Publicating Golang application on GitHub.
@aliesbelik
aliesbelik / latency.md
Last active May 31, 2021 17:49 — forked from hellerbarde/latency.markdown
Latency numbers every programmer should know

Latency numbers every programmer should know

L1 cache reference ......................... 0.5 ns
Branch mispredict ............................ 5 ns
L2 cache reference ........................... 7 ns
Mutex lock/unlock ........................... 25 ns
Main memory reference ...................... 100 ns             
Compress 1K bytes with Zippy ............. 3,000 ns  =   3 µs
Send 2K bytes over 1 Gbps network ....... 20,000 ns  =  20 µs
SSD random read ........................ 150,000 ns  = 150 µs

Read 1 MB sequentially from memory ..... 250,000 ns = 250 µs

@aliesbelik
aliesbelik / 00_dockerised_jmeter.md
Last active May 12, 2021 06:48 — forked from hhcordero/1_Dockerised_JMeter.md
Dockerized JMeter - A Distributed Load Testing Workflow
@aliesbelik
aliesbelik / keybase.md
Created October 26, 2020 18:28
keybase.md

Keybase proof

I hereby claim:

  • I am aliesbelik on github.
  • I am veslefrik (https://keybase.io/veslefrik) on keybase.
  • I have a public key ASAPPXhZTP5qs5wwaZJ4xYEoGMNZ8Rt0YvMAewQ0MaT3wwo

To claim this, I am signing this object:

@aliesbelik
aliesbelik / revert-a-commit.md
Last active February 28, 2019 01:40 — forked from gunjanpatel/revert-a-commit.md
Git HowTo: revert a commit already pushed to a remote repository

Revert the full commit

Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. Just like above, the bad commit remains there, but it no longer affects the the current master and any future commits on top of it.

git revert {commit_id}

About History Rewriting

Delete the last commit

Deleting the last commit is the easiest case. Let's say we have a remote origin with branch master that currently points to commit dd61ab32. We want to remove the top commit. Translated to git terminology, we want to force the master branch of the origin remote repository to the parent of dd61ab32:

@aliesbelik
aliesbelik / subl
Created February 13, 2019 20:23 — forked from cmalard/subl
Cygwin + Sublime Text 3 : works with files and Git
#!/bin/bash
# To create in [.babun/]cygwin/usr/local/bin/subl with chmod +x
ARGS=""
while test $# -gt 0
do
ARGS="$ARGS ${1#/cygdrive/[a-zA-Z]}"; # Remove /cygdrive and disk letter from the path
shift
done

title: "Improving Performance" description: "" project: "riak_kv" project_version: "2.2.3" menu: riak_kv-2.2.3: name: "Performance" identifier: "managing_performance" weight: 206


title: "Open Files Limit" description: "" project: "riak_kv" project_version: "2.2.3" menu: riak_kv-2.2.3: name: "Open Files Limit" identifier: "performance_open_files_limit" weight: 101

@aliesbelik
aliesbelik / step-by-step-gatling-idea.md
Created September 17, 2018 23:20 — forked from groovybayo/step-by-step-gatling-idea.md
Gatling: Step by step guide to IntelliJ integration

Step by step guide to setting up IDEA to write gatling simulations

Prerequisites:

Have [SBT plugin][sbt-plugin] installed

Begin

  • [Create a new project][create-project] in IDEA ( File > New Project ...)
    • Make sure you select a maven module