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
| _oo0oo_ | |
| o8888888o | |
| 88" . "88 | |
| (| -_- |) | |
| 0\ = /0 | |
| ___/`---'\___ | |
| .' \\| |-- '. | |
| / \\||| : |||-- \ | |
| / _||||| -:- |||||- \ | |
| | | \\\ - --/ | | |
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
| # Symbols: | |
| # ☀ ✹ ☄ ♆ ♀ ♁ ♐ ♇ ♈ ♉ ♚ ♛ ♜ ♝ ♞ ♟ ♠ ♣ ⚢ ⚲ ⚳ ⚴ ⚥ ⚤ ⚦ ⚒ ⚑ ⚐ ♺ ♻ ♼ ☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷ | |
| # ✡ ✔ ✖ ✚ ✱ ✤ ✦ ❤ ➜ ➟ ➼ ✂ ✎ ✐ ⨀ ⨁ ⨂ ⨍ ⨎ ⨏ ⨷ ⩚ ⩛ ⩡ ⩱ ⩲ ⩵ ⩶ ⨠ | |
| # ⬅ ⬆ ⬇ ⬈ ⬉ ⬊ ⬋ ⬒ ⬓ ⬔ ⬕ ⬖ ⬗ ⬘ ⬙ ⬟ ⬤ 〒 ǀ ǁ ǂ ĭ Ť Ŧ | |
| ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}git:(%{$fg[magenta]%}" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX="" | |
| ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[cyan]%}) %{$fg[yellow]%}✗" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[cyan]%})" |
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 'base.sass/+'; | |
| $z-layers: ( | |
| 'goku': 9001, | |
| 'shoryuken': 8000, | |
| 'modal': ( | |
| 'base': 500, | |
| 'close': 100, | |
| 'header': 50, | |
| 'footer': 10 |
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 'base.sass/+'; | |
| // Specify supports | |
| $browser-supports: parse-rules('last 5 versions'); | |
| .fn-clear { | |
| @include clearfix; | |
| } | |
| .fn-left { |
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 'base.sass/+'; | |
| $link-status: ( | |
| link: ( | |
| color: #428bca, | |
| line: none | |
| ), | |
| hover: ( | |
| // color: defaults to darken(link.color, 15%), | |
| line: underline |
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 | |
| cd /usr/local/lib | |
| sudo rm -rf node node_modules | |
| cd /usr/local/bin/ | |
| sudo rm -f node npm | |
| cd $HOME | |
| sudo rm -rf .npm |
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 doubleInteger(i) { | |
| // i will be an integer. Double it and return it. | |
| return i * 2 | |
| } |
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
Show hidden characters
| { | |
| // 2 空格缩进 | |
| "indent": 2, | |
| "smarttabs": true, | |
| // 变量在使用前必须先声明,废弃的变量要及时清理掉 | |
| "latedef": "nofunc", | |
| "undef": true, | |
| "unused": 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
| <snippet> | |
| <content><![CDATA[define(function(require, exports, module) { | |
| $0 | |
| })]]></content> | |
| <tabTrigger>def</tabTrigger> | |
| <scope>source.js</scope> | |
| <description>define(factory)</description> | |
| </snippet> |
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
| pre, code { | |
| font-family: Consolas, 'Liberation Mono', Courier, monospace; | |
| } | |
| .highlight { | |
| pre { | |
| padding: 6px 10px; | |
| border: 1px solid #ccc; | |
| border-radius: 3px; | |
| background-color: #f8f8f8; | |
| overflow: auto; |
NewerOlder