- 配置文件: %HOMEPATH%/_vimrc
- 插件目录: %HOMEPATH%/vimfiles/
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 hashCode(str) { // java String#hashCode | |
| var hash = 0; | |
| for (var i = 0; i < str.length; i++) { | |
| hash = str.charCodeAt(i) + ((hash << 5) - hash); | |
| } | |
| return hash; | |
| } | |
| function intToARGB(i){ | |
| var resualt = "" |
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
| 语言: | |
| CPP = 'cpp' | |
| LUA = 'lua' | |
| JS = 'js' | |
| OS: | |
| ANDROID = 'android' | |
| IOS = 'ios' | |
| MAC = 'mac' |
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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 alias.co checkout | |
| git config --global alias.br branch | |
| git config --global alias.ci commit | |
| git config --global alias.st status | |
| git config --global alias.unstage 'reset HEAD --' | |
| git config --global alias.last 'log -1 HEAD' | |
| git config --global alias.df 'diff' | |
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
| ## 更新外部配置 | |
| p.version('0.0.1') | |
| .option('-p, --port <n>', 'redis server port') | |
| .option('-h, --host [VALUE]', 'redis server host') | |
| .parse(process.argv) | |
| p.port = parseInt(p.port) || 6379 | |
| p.host = p.host || "localhost" | |
| kue = require 'kue' |
NewerOlder