Skip to content

Instantly share code, notes, and snippets.

View vehas's full-sized avatar
🎯
Focusing

Veha Suwatphisankij vehas

🎯
Focusing
  • Thailand
View GitHub Profile
@hlung
hlung / vimium-dvorak-keys.txt
Last active June 8, 2017 03:15
Dvorak - Vimium Custom key mappings.This *unmaps* all keys and only adds frequently used ones.
# ::: Dvorak - Vimium Custom key mappings :::
# NOTE: This *unmaps* all keys and only adds frequently used ones.
# It mainly uses left hand keys so you don't have to let go of the mouse.
# How to use: open Vimium option screen, put this in "Custom key mappings" section.
 
unmapAll
 
# Link
map u LinkHints.activateMode
map U LinkHints.activateModeToOpenInNewTab
@benjamin-smith
benjamin-smith / elasticsearch-local-development-with-docker-osx.md
Last active October 19, 2021 08:01
Develop locally with Elasticsearch on OSX using Docker

Develop locally with Elasticsearch on OSX using Docker

Docker

Docker does not run natively on OSX, only Linux. Docker Machine was created to add a Linux VM environment to run Docker containers on OSX. Install using Homebrew:

brew install docker
brew install docker-machine
docker-machine create
@staltz
staltz / introrx.md
Last active May 30, 2024 18:43
The introduction to Reactive Programming you've been missing
@datagrok
datagrok / ergodox.md
Last active January 14, 2019 07:45
Reflections on my ErgoDox keyboard
@gorsuch
gorsuch / gist:1418850
Created December 1, 2011 18:37
clojure uuid
(defn uuid [] (str (java.util.UUID/randomUUID)))