Third
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
| CODESWARM_DIR="/home/user/src/code_swarm/" | |
| # extract from your git repo | |
| git log --name-status --pretty=format:'%n------------------------------------------------------------------------%nr%h | %ae | %ai (%aD) | x lines%nChanged paths:' > $CODESWARM_DIR/data/activity.log | |
| # convert to XML for CodeSwarm | |
| python convert_logs/convert_logs.py \ | |
| -g $CODESWARM_DIR/data/activity.log -o $CODESWARM_DIR/data/activity.xml | |
| # create a new config that points to the correct input XML and saves snapshots |
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
| http://bayo.opadeyi.net/2010/12/setup-mercurial-server-on-ubuntu-vps.html | |
| http://ekkescorner.wordpress.com/blog-series/git-mercurial/step-by-step-install-mercurial-server-on-ubuntu/ | |
| apt-get install mercurial-server | |
| sudo mkdir -p /etc/mercurial-server/keys/root/remoteuser | |
| sudo cp my-key /etc/mercurial-server/keys/root/remoteuser/localmachine | |
| sudo -u hg /usr/share/mercurial-server/refresh-auth | |
| touch ~/.hgrc |
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
| http://wololo.net/installing-pro-cfw-on-a-psp-3000-psp-brite/ |
Note: Make sure to remove GET from <LimitExcept> otherwise your repository will be publicly available.
- Install subversion on Windows
- Used
winsvninstead of sliksvn or collabsvn since it hasmod_dav_svn.so and mod_authz_svn.soand the others don't
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/sh | |
| ## you'll have to do a couple extra steps to get this running | |
| ## there are probably other ways to handle svncanboot, but this is from the linux forum | |
| set -e | |
| if | |
| touch /etc/_testr_file | |
| then |
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 algorithm | |
| import future | |
| import math | |
| import sequtils | |
| import tables | |
| import os | |
| import csfml | |
| import perlin |
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
| My thoughts on writing tiny reusable modules that each do just one | |
| thing. These notes were adapted from an email I recently sent. | |
| *** | |
| If some component is reusable enough to be a module then the | |
| maintenance gains are really worth the overhead of making a new | |
| project with separate tests and docs. Splitting out a reusable | |
| component might take 5 or 10 minutes to set up all the package | |
| overhead but it's much easier to test and document a piece that is |