This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if [[ -s /Users/kunday/.rvm/scripts/rvm ]] ; then source /Users/kunday/.rvm/scripts/rvm ; fi | |
| export PATH=/opt/local/lib/postgresql84/bin:/Users/kunday/.cabal/bin:$PATH | |
| ## | |
| # Your previous /Users/kunday/.profile file was backed up as /Users/kunday/.profile.macports-saved_2010-03-18_at_14:18:28 | |
| ## | |
| # MacPorts Installer addition on 2010-03-18_at_14:18:28: adding an appropriate PATH variable for use with MacPorts. | |
| export PATH=/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:$PATH | |
| # Finished adapting your PATH environment variable for use with MacPorts. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defun reload-emacs () | |
| "Runs load-file on ~/.emacs" | |
| (interactive) | |
| (load-file "~/.emacs.d/init.el") | |
| ;; change load-file according to ur startup file | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [color] | |
| branch = auto | |
| diff = auto | |
| status = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [extensions] | |
| color= | |
| progress= | |
| hgext.fetch= | |
| pager= | |
| rebase = | |
| hgext.extdiff = | |
| hgext.purge= | |
| mq= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IDENTIFICATION DIVISION. | |
| PROGRAM-ID. ADMISSION. | |
| ENVIRONMENT DIVISION. | |
| CONFIGURATION SECTION. | |
| SOURCE-COMPUTER. SELAB. | |
| INPUT-OUTPUT SECTION. | |
| FILE-CONTROL. | |
| SELECT RANK-FILE ASSIGN TO DISK. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## keybindings | |
| unbind % | |
| unbind , | |
| unbind . | |
| unbind n | |
| unbind p | |
| unbind [ | |
| unbind '"' | |
| unbind l | |
| unbind & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Set-WindowsExplorerOptions -DisableShowFullPathInTitleBar -DisableShowHiddenFilesFoldersDrives -DisableShowProtectedOSFiles -DisableShowFileExtensions | |
| Enable-RemoteDesktop | |
| cinst vagrant | |
| cinst psget | |
| cinst chocolatey | |
| cinst poshgit | |
| cinst cmder | |
| cinst slack | |
| cinst screenhero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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}" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; gorilla-repl.fileformat = 1 | |
| ;; ** | |
| ;;; # core.async | |
| ;;; | |
| ;;; Welcome to core.async study session. | |
| ;;; | |
| ;;; Let's get started by setting up all the necessary imports. | |
| ;;; | |
| ;; ** |
OlderNewer