Skip to content

Instantly share code, notes, and snippets.

View ekalinin's full-sized avatar

Eugene Kalinin ekalinin

View GitHub Profile
@wsargent
wsargent / docker_cheat.md
Last active June 29, 2024 19:32
Docker cheat sheet
@philandstuff
philandstuff / scale-summit.org
Last active August 29, 2015 13:57
scale-summit 2014

Scale Summit 2014

Intro, MBS

ideas for sessions

  • bootstrapping environments (without object stores)
  • service discovery
  • removing spofs
@vshabanov
vshabanov / gc
Created May 16, 2014 17:40
Лог GC
/home/volodya/bazqux/reader +RTS -N6 -T -A64m -I0 -M15G -Sgc.log
Alloc Copied Live GC GC TOT TOT Page Flts
bytes bytes bytes user elap user elap
...
200204936 11385664 4462860272 0.07 0.01 220.24 712.22 0 0 (Gen: 0)
125044568 14154720 4466342848 0.05 0.01 220.38 713.54 0 0 (Gen: 0)
143563344 28353016 4485534120 0.11 0.02 220.58 713.96 0 0 (Gen: 0)
111524720 2261676760 2517120536 3.88 0.65 224.51 714.69 0 0 (Gen: 1)
213486648 31853152 2547183104 0.14 0.02 224.86 715.83 0 0 (Gen: 0)
148648432 25858736 2548365176 0.11 0.02 225.08 716.76 0 0 (Gen: 0)
@dmalikov
dmalikov / README.markdown
Last active May 31, 2019 06:31
Nix / NixOS links

Various blog posts related to Nix and NixOS


General

@sigrlami
sigrlami / ab.md
Last active February 17, 2025 17:52
List of companies using Haskell https://haskellcosm.com

WARNING This list outdated, for the up to date version visit https://haskellcosm.com

List of companies that use Haskell in Production

Types of work:

  • RD - research&development
  • PR - product
  • IP - in-house product
  • CO - consulting
@cridenour
cridenour / gist:74e7635275331d5afa6b
Last active March 20, 2025 09:04
Setting up Vim as your Go IDE

Setting up Vim as your Go IDE

The final IDE

Intro

I've been wanting to do a serious project in Go. One thing holding me back has been a my working environment. As a huge PyCharm user, I was hoping the Go IDE plugin for IntelliJ IDEA would fit my needs. However, it never felt quite right. After a previous experiment a few years ago using Vim, I knew how powerful it could be if I put in the time to make it so. Luckily there are plugins for almost anything you need to do with Go or what you would expect form and IDE. While this is no where near comprehensive, it will get you writing code, building and testing with the power you would expect from Vim.

Getting Started

I'm assuming you're coming with a clean slate. For me this was OSX so I used MacVim. There is nothing in my config files that assumes this is the case.

@lisamelton
lisamelton / convert-mkv-to-mp4.sh
Last active October 17, 2021 13:51
Convert Matroska video file into MP4 format without transcoding.
#!/bin/bash
#
# convert-video.sh
#
# Copyright (c) 2013-2014 Don Melton
#
about() {
cat <<EOF
$program 2.0 of December 3, 2014
@progrium
progrium / prog
Last active January 20, 2017 18:48
playing around with a little bash subcommand environment
#!/bin/bash
cmd-hello() {
declare desc="Displays a friendly hello"
declare firstname="$1" lastname="$2"
echo "Hello, $firstname $lastname."
}
cmd-help() {
declare desc="Shows help information for a command"