http://pythonexcels.com/Python_Excel_Mini_Cookbook.html
http://msdn.microsoft.com/en-us/library/office/ee861528(v=office.15).aspx
| # Iterate over the lines of the file | |
| # with절에서 나올 때, 파일은 자동으로 close된다. | |
| # 출처 : python cookbook 5.1 Reading and Writing Text Data | |
| with open('somefile.txt', 'rt') as f: | |
| for line in f: | |
| # process line | |
| ... |
| "ignored_packages": | |
| [ | |
| // "Vintage" 이 줄을 삭제하거나, 주석 처리하면 활성화됩니다. | |
| ], |
| "ignored_packages": | |
| [ | |
| // "Vintage" 이 줄을 삭제하거나, 주석 처리하면 활성화됩니다. | |
| ], |
| { "keys" : ["j", "j"], | |
| "command" : "exit_insert_mode", | |
| "context" : [ | |
| { "key" : "setting.command_mode", "operand" : false }, | |
| { "key" : "setting.is_widget", "operand" : false } | |
| ] | |
| } |
| { "keys": ["z", "z"], | |
| "command": "show_overlay", | |
| "args": {"overlay": "command_palette"} | |
| } |
| function makeBindFun(resolver){ | |
| return function(k, v){ | |
| var stack = globals[k] || []; | |
| globals[k] = resolver(stack, v); | |
| return globals; | |
| } | |
| } | |
| var stackBinder = makeBindFun(function(stack, v){ | |
| stack.push(v); |
| @RequestMapping("/uss/umt/EgovUserInsert.do") | |
| public String insertUser(@ModelAttribute("userManageVO") UserManageVO userManageVO, BindingResult bindingResult, Model model) throws Exception { | |
| // 미인증 사용자에 대한 보안처리 | |
| Boolean isAuthenticated = EgovUserDetailsHelper.isAuthenticated(); | |
| if (!isAuthenticated) { | |
| return "index"; | |
| } | |
| beanValidator.validate(userManageVO, bindingResult); |
| :e $userprofile\_gvimrc |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required | |
| Plugin 'VundleVim/Vundle.vim' | |
| " 추가하고 싶은 플러그인을 아래에 나열하면 됩니다. |