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
| Hello |
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. | |
| ;;; | |
| ;; ** |
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
| 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
| ## 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
| 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
| [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
| [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
| 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
| (defun reload-emacs () | |
| "Runs load-file on ~/.emacs" | |
| (interactive) | |
| (load-file "~/.emacs.d/init.el") | |
| ;; change load-file according to ur startup file | |
| ) |