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
Option Explicit | |
Private WithEvents oExpl As Explorer | |
Private WithEvents oItem As MailItem | |
Private bDiscardEvents As Boolean | |
Dim outlookNameSpace As Outlook.NameSpace | |
Dim inbox As Outlook.MAPIFolder | |
Private WithEvents items As Outlook.items | |
Dim WithEvents myInboxMailItem As Outlook.items |
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
sync |
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
#!/usr/bin/env bash | |
cd $(git rev-parse --show-toplevel) && jekyll build && octopress deploy && git add . && git ci -m "update it" && git push |
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
#!/usr/bin/env bash | |
echo -n "Input commit message: " | |
echo -n -e '\e[0;33m' | |
read input | |
echo -n -e '\e[0m' | |
file=$(octopress new post "${input}") | |
echo "File: $file" | |
emacsclient -c ${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
git config −-global init.templatedir=~/.git_template |
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/sh | |
case "$1" in | |
rebase) exec .git/hooks/post-merge ;; | |
esac |
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/sh | |
.git/hooks/gtags >/dev/null 2>&1 & |
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 dotspacemacs/user-config () | |
"Configuration function for user code. | |
This function is called at the very end of Spacemacs initialization after | |
layers configuration. | |
This is the place where most of your configurations should be done. Unless it is | |
explicitly specified that a variable should be set before a package is loaded, | |
you should place you code here." | |
(set-language-environment "Korean") | |
(prefer-coding-system 'utf-8) ; utf-8 환경 설정 |
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
function! s:P4_edit_current( ) | |
execute "!p4 edit " . expand("%") | |
endfunc | |
function! s:P4_revert_current( ) | |
execute "!p4 revert " . expand("%") | |
endfunc | |
command! PerforceEdit call <SID>P4_edit_current() | |
command! PerforceRevert call <SID>P4_revert_current() |
NewerOlder