├── .gitattributes ├── .gitignore ├── highlight.js ├── index.php ├── jquip.min.js ├── logo.png ├── readme.txt ├── styles ├── BRONCO.css ├── default.css ├── far.css ├── github.css ├── googlecode.css ├── idea.css ├── index.html ├── ir_black.css ├── magula.css ├── monokai.css ├── pojoaque.css ├── pojoaque.jpg ├── rainbow.css ├── school_book.css ├── school_book.png ├── shCoreRDark.css ├── solarized_dark.css ├── solarized_light.css ├── sunburst.css ├── tomorrow-night-blue.css ├── tomorrow-night-bright.css ├── tomorrow-night-eighties.css ├── tomorrow-night.css ├── tomorrow.css ├── vs.css ├── xcode.css └── zenburn.css └── theme ├── dark_crystal ├── asfalt.png ├── auto_css.php ├── blackorchid.png ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── snippetvamp.css └── sprite.png ├── dark_flat ├── asfalt.png ├── auto_css.php ├── blackorchid.png ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── snippetvamp.css └── sprite.png ├── dark_halo ├── asfalt.png ├── auto_css.php ├── blackorchid.png ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── snippetvamp.css └── sprite.png ├── default ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── noise.png ├── snippetvamp.css └── sprite.png ├── default_flat ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── noise.png ├── snippetvamp.css └── sprite.png ├── index.html ├── material ├── README.md ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── noise.png ├── screenshot.png ├── snippetvamp.css ├── sprite.png ├── sprite2.png └── static │ └── fonts │ └── roboto │ ├── Apache License.txt │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ └── RobotoCondensed-Regular.ttf ├── monochrome ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── noise.png ├── snippetvamp.css └── sprite.png ├── monochrome_flat ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── noise.png ├── snippetvamp.css └── sprite.png ├── white_flat ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── snippetvamp.css ├── sprite.png └── subtle_grunge.png └── white_halo ├── auto_css.php ├── computed_snippetvamp.css ├── favicon.png ├── favicon2.png ├── index.html ├── snippetvamp.css ├── sprite.png └── subtle_grunge.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## SnippetVamp 3 | ################# 4 | 5 | .htaccess 6 | config.dat 7 | last_version.txt 8 | log.txt 9 | pass.php 10 | snippetvamp.dat 11 | 12 | ################# 13 | ## Eclipse 14 | ################# 15 | 16 | *.pydevproject 17 | .project 18 | .metadata 19 | bin/ 20 | tmp/ 21 | *.tmp 22 | *.bak 23 | *.swp 24 | *~.nib 25 | local.properties 26 | .classpath 27 | .settings/ 28 | .loadpath 29 | 30 | # External tool builders 31 | .externalToolBuilders/ 32 | 33 | # Locally stored "Eclipse launch configurations" 34 | *.launch 35 | 36 | # CDT-specific 37 | .cproject 38 | 39 | # PDT-specific 40 | .buildpath 41 | 42 | 43 | ################# 44 | ## Visual Studio 45 | ################# 46 | 47 | ## Ignore Visual Studio temporary files, build results, and 48 | ## files generated by popular Visual Studio add-ons. 49 | 50 | # User-specific files 51 | *.suo 52 | *.user 53 | *.sln.docstates 54 | 55 | # Build results 56 | [Dd]ebug/ 57 | [Rr]elease/ 58 | *_i.c 59 | *_p.c 60 | *.ilk 61 | *.meta 62 | *.obj 63 | *.pch 64 | *.pdb 65 | *.pgc 66 | *.pgd 67 | *.rsp 68 | *.sbr 69 | *.tlb 70 | *.tli 71 | *.tlh 72 | *.tmp 73 | *.vspscc 74 | .builds 75 | *.dotCover 76 | 77 | ## TODO: If you have NuGet Package Restore enabled, uncomment this 78 | #packages/ 79 | 80 | # Visual C++ cache files 81 | ipch/ 82 | *.aps 83 | *.ncb 84 | *.opensdf 85 | *.sdf 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | 91 | # ReSharper is a .NET coding add-in 92 | _ReSharper* 93 | 94 | # Installshield output folder 95 | [Ee]xpress 96 | 97 | # DocProject is a documentation generator add-in 98 | DocProject/buildhelp/ 99 | DocProject/Help/*.HxT 100 | DocProject/Help/*.HxC 101 | DocProject/Help/*.hhc 102 | DocProject/Help/*.hhk 103 | DocProject/Help/*.hhp 104 | DocProject/Help/Html2 105 | DocProject/Help/html 106 | 107 | # Click-Once directory 108 | publish 109 | 110 | # Others 111 | [Bb]in 112 | [Oo]bj 113 | sql 114 | TestResults 115 | *.Cache 116 | ClientBin 117 | stylecop.* 118 | ~$* 119 | *.dbmdl 120 | Generated_Code #added for RIA/Silverlight projects 121 | 122 | # Backup & report files from converting an old project file to a newer 123 | # Visual Studio version. Backup files are not needed, because we have git ;-) 124 | _UpgradeReport_Files/ 125 | Backup*/ 126 | UpgradeLog*.XML 127 | 128 | 129 | 130 | ############ 131 | ## Windows 132 | ############ 133 | 134 | # Windows image file caches 135 | Thumbs.db 136 | 137 | # Folder config file 138 | Desktop.ini 139 | 140 | 141 | ############# 142 | ## Python 143 | ############# 144 | 145 | *.py[co] 146 | 147 | # Packages 148 | *.egg 149 | *.egg-info 150 | dist 151 | build 152 | eggs 153 | parts 154 | bin 155 | var 156 | sdist 157 | develop-eggs 158 | .installed.cfg 159 | 160 | # Installer logs 161 | pip-log.txt 162 | 163 | # Unit test / coverage reports 164 | .coverage 165 | .tox 166 | 167 | #Translations 168 | *.mo 169 | 170 | #Mr Developer 171 | .mr.developer.cfg 172 | 173 | # Mac crap 174 | .DS_Store 175 | -------------------------------------------------------------------------------- /highlight.js: -------------------------------------------------------------------------------- 1 | var hljs=new function(){function l(o){return o.replace(/&/gm,"&").replace(//gm,">")}function b(p){for(var o=p.firstChild;o;o=o.nextSibling){if(o.nodeName=="CODE"){return o}if(!(o.nodeType==3&&o.nodeValue.match(/\s+/))){break}}}function h(p,o){return Array.prototype.map.call(p.childNodes,function(q){if(q.nodeType==3){return o?q.nodeValue.replace(/\n/g,""):q.nodeValue}if(q.nodeName=="BR"){return"\n"}return h(q,o)}).join("")}function a(q){var p=(q.className+" "+q.parentNode.className).split(/\s+/);p=p.map(function(r){return r.replace(/^language-/,"")});for(var o=0;o