Skip to content

Instantly share code, notes, and snippets.

View kunday's full-sized avatar

Arvind Kunday kunday

View GitHub Profile
@kunday
kunday / core_async_class.cljw
Created December 23, 2015 02:07
Async Clojure Gorilla Doc
;; gorilla-repl.fileformat = 1
;; **
;;; # core.async
;;;
;;; Welcome to core.async study session.
;;;
;;; Let's get started by setting up all the necessary imports.
;;;
;; **
@kunday
kunday / jinkun
Last active September 30, 2015 07:40
jinkun
#!/bin/bash
config=`cat jinkun.yml`
docker run -e "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" \
-e "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" \
-e "AWS_SECURITY_TOKEN=${AWS_SECURITY_TOKEN}" \
-e "AWS_ROLE_ARN=${AWS_ROLE_ARN}" \
-e "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" \
-e "AWS_ACCOUNT=${AWS_ACCOUNT}" \
@kunday
kunday / BoxStarter
Last active September 9, 2015 07:05
Set-WindowsExplorerOptions -DisableShowFullPathInTitleBar -DisableShowHiddenFilesFoldersDrives -DisableShowProtectedOSFiles -DisableShowFileExtensions
Enable-RemoteDesktop
cinst vagrant
cinst psget
cinst chocolatey
cinst poshgit
cinst cmder
cinst slack
cinst screenhero
@kunday
kunday / .tmux.conf
Last active February 7, 2018 09:17
Tmux conf
## keybindings
unbind %
unbind ,
unbind .
unbind n
unbind p
unbind [
unbind '"'
unbind l
unbind &
@kunday
kunday / ADMIT.COB
Created August 20, 2012 09:15
Admit a Student
IDENTIFICATION DIVISION.
PROGRAM-ID. ADMISSION.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SOURCE-COMPUTER. SELAB.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT RANK-FILE ASSIGN TO DISK.
@kunday
kunday / .hgrc
Created September 22, 2011 13:16
Hgrc
[extensions]
color=
progress=
hgext.fetch=
pager=
rebase =
hgext.extdiff =
hgext.purge=
mq=
@kunday
kunday / .gitconfig
Created November 6, 2010 05:47
My Git Config
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
@kunday
kunday / gist:588466
Created September 20, 2010 19:12
My Xmonad Config
import XMonad
import XMonad.Core
import XMonad.Config.Gnome
import XMonad.Util.Dmenu
import XMonad.Layout.NoBorders
import qualified XMonad.StackSet as W
import qualified Data.Map as M
import XMonad.Hooks.ManageDocks
myManageHook = composeAll
(defun reload-emacs ()
"Runs load-file on ~/.emacs"
(interactive)
(load-file "~/.emacs.d/init.el")
;; change load-file according to ur startup file
)