├── .gitignore ├── CodeBox.cbxml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac OS X Finder and whatnot 2 | .DS_Store 3 | 4 | # XCode (and ancestors) per-user config (very noisy, and not relevant) 5 | *.mode1 6 | *.mode1v3 7 | *.mode2v3 8 | *.perspective 9 | *.perspectivev3 10 | *.pbxuser 11 | 12 | 13 | # Generated files 14 | VersionX-revision.h 15 | 16 | 17 | # build products 18 | build/ 19 | *.[oa] 20 | 21 | # Other source repository archive directories (protects when importing) 22 | .hg 23 | .svn 24 | CVS 25 | 26 | 27 | # automatic backup files 28 | *~.nib 29 | *.swp 30 | *~ 31 | *(Autosaved).rtfd/ 32 | Backup[ ]of[ ]*.pages/ 33 | Backup[ ]of[ ]*.key/ 34 | Backup[ ]of[ ]*.numbers/" 35 | 36 | #Xcode 4 37 | xcuserdata 38 | project.xcworkspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ###I'm sharing my CodeBox library 2 | 3 | Have fun with it / use it as you please 4 | 5 | ######The Library features snippets / tutorials from various programming languages 6 | 7 | ###Status: 548 Snippets 8 | 9 | *The library can be used with the insanely useful [CodeBox](https://itunes.apple.com/de/app/codebox/id412536790?l=en&mt=12) mac app created by [Vadim Shpakovski](https://github.com/shpakovski)* --------------------------------------------------------------------------------