Programming language based on the one-liners of Arnold Schwarzenegger.
VirtualTam's bookmarks
-
2014-11-09 -
2014-11-03 -
2014-11-02 -
2014-11-02 -
TL;DR: you won't.
This website is rather a good memo regarding each language's foundations:
- what's its general purpose?
- how to write core instructions, such as functions, loops, conditional structures?
I find this kind of reminder quite useful when it comes to documentation languages (e.g. TeX, Markdown)
-
2014-10-23 Tu t'es débuggé quand t'as bu ‽
-
2014-10-22 Nice CSS resource!
-
2014-09-29 -
2014-09-09 -
2014-09-06 -
Major mode to edit web files/scripts
-
2014-09-05 1# first, clone the repository 2git clone REPO REPO2 3cd REPO2 4# remove all unneeded files from this version 5git filter-branch -f --prune-empty --index-filter "git rm --cached --ignore-unmatch FILES_AND_DIRS_TO_DELETE" 6git gc --aggressive --prune=1day 7git fsck --unreachable 8# refresh the remote 9git remote rm origin 10git remote add origin ssh://HOST/REPO 11# broforce push! 12git push -f origin master 13 14# cleanup our original repository 15cd REPO 16git filter-branch -f --prune-empty --index-filter "git rm --cached --ignore-unmatch OTHER_FILES_AND_DIRS_TO_DELETE" 17git gc --aggressive --prune=1day 18git fsck --unreachable 19# broforce push! 20git push -f origin master
-
2014-09-01 -
2014-08-29