- 참가자: 유찬길, 전준형, 백경호, 명노훈, 강태욱, 문성수, 고석현, 권기훈, 박준형, 김혜리, 고소영, 김지우, 성영
- 여름 MT: 7월 이후
- 후보지
- 대성리 MT촌
- 가평
- 서울 파티룸
- 날짜
- 후보지
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
# mackup cfg gile | |
[storage] | |
engine=icloud | |
[configuration_files] | |
.gitconfig_global | |
[applications_to_ignore] | |
nvim |
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
# tap brew | |
tap 'homebrew/bundle' | |
tap 'homebrew/core' | |
tap 'homebrew/versions' | |
tap 'homebrew/dupes' | |
tap 'homebrew/services' | |
tap 'caskroom/cask' | |
tap 'caskroom/fonts' | |
tap 'caskroom/versions' |
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
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-OceanicNext.tmTheme", | |
"default_line_ending": "unix", | |
"draw_minimap_border": true, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Bitstream Vera Sans Mono", | |
"font_size": 15, | |
"highlight_line": true, |
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 autoindent | |
set textwidth=79 | |
set wrap | |
set nowrapscan | |
set noswapfile | |
set visualbell | |
set ruler | |
set number | |
set fencs=ucs-bom,utf-8,euc-kr.latin1 | |
set fileencoding=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
#!/usr/bin/env python | |
import platform | |
from os import system, getuid | |
__author__ = 'Luavis' | |
__license__ = "MIT" | |
__version__ = "1.0.0" | |
__email__ = "[email protected]" |
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 autoindent | |
set textwidth=119 | |
set wrap | |
set nowrapscan | |
set noswapfile | |
set visualbell | |
set ruler | |
set number | |
set fencs=ucs-bom,utf-8,euc-kr.latin1 | |
set fileencoding=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
package main | |
import ( | |
"container/list" | |
"flag" | |
"fmt" | |
"github.com/headzoo/surf" | |
"os" | |
"path" | |
"time" |
As configured in my dotfiles.
start new:
tmux
start new with session name:
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
var saintPage = require('webpage').create(); | |
var loadInProgress = false; | |
var stepIndex = 0; | |
var id = ''; | |
var passwd = ''; | |
var endProcess = true; | |
saintPage.onConsoleMessage = (function(msg) {console.log(msg);}); | |
saintPage.onAlert = (function(msg) {console.log('ALERT' + msg);}); | |
saintPage.onError = function (msg) {console.log('ERR ' + msg);}; |