VirtualTam's bookmarks
474 bookmarks found
-
Git - Split / shrink a repository
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
-
Python - Code coverage
2014-09-01 -
Pygments - Syntax highlighting
2014-08-09 -
FindBugs - Find Bugs in Java Programs
2014-07-24 http://lib.tkk.fi/Dipl/2012/urn100637.pdf
Evaluating and enhancing FindBugs to detect bugs from mature software: Case study in Valuatum
-
Python - Radon
2014-07-24 -
19 Deadly Sins of Software Security
2014-07-24 -
Songs LaTeX Package: Documents
2014-07-21 -
How to Report Bugs Effectively
2014-07-15 -
spf13-vim - The Ultimate Vim Distribution
2014-07-04 -
GitPython - Nullege Python Samples
2014-06-25 -
IPython interactive python shell
2014-06-21 - An enhanced interactive Python shell.
- A decoupled two-process communication model, which allows for multiple clients to connect to a computation kernel, most notably the web-based notebook
- An architecture for interactive parallel computing.
via http://sametmax.com/debugger-en-python-les-bases-de-pdb/
-
Git - Undoing Things
2014-06-16 -
setuptools - The PEAK Developers' Center
2014-06-09 setuptools is a collection of enhancements to the Python distutils