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
| * [31mf52c202[m -[33m (HEAD, master)[m add stop option [32m(11 minutes ago)[m | |
| * [31m737c7f2[m -[33m[m Merge remote-tracking branch 'oyvindio/back-to-mvn' [32m(24 minutes ago)[m | |
| |\ | |
| | * [31m6fe9f50[m -[33m[m update scripts [32m(2 hours ago)[m | |
| | * [31m7e485e2[m -[33m[m more jar slimming [32m(4 hours ago)[m | |
| | * [31m0d1d484[m -[33m[m exclude some libs from the jar [32m(4 hours ago)[m | |
| | * [31mefc81e5[m -[33m[m remove some left over commented out stuff [32m(5 hours ago)[m | |
| | * [31me748bed[m -[33m[m use maven to build grouphugs [32m(5 hours ago)[m | |
| * | [31m1296d8b[m -[33m[m Use unix lineendings, remove trailing whitespace [32m(61 minutes ago)[m | |
| |/ |
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
| Archive: grouphug-1.0-SNAPSHOT.jar | |
| Length Date Time Name | |
| -------- ---- ---- ---- | |
| 0 03-13-11 14:12 META-INF/ | |
| 165 03-13-11 14:12 META-INF/MANIFEST.MF | |
| 0 03-13-11 14:12 no/ | |
| 0 03-13-11 14:12 no/kvikshaug/ | |
| 0 03-13-11 14:12 no/kvikshaug/gh/ | |
| 1151 03-13-11 14:12 no/kvikshaug/gh/Config$$anonfun$channels$1.class | |
| 812 03-13-11 14:12 no/kvikshaug/gh/Config$$anonfun$nicks$1.class |
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
| Archive: grouphug-1.0-SNAPSHOT.jar | |
| Length Date Time Name | |
| -------- ---- ---- ---- | |
| 0 03-13-11 12:52 META-INF/ | |
| 165 03-13-11 12:52 META-INF/MANIFEST.MF | |
| 0 03-13-11 12:52 no/ | |
| 0 03-13-11 12:52 no/kvikshaug/ | |
| 0 03-13-11 12:52 no/kvikshaug/gh/ | |
| 1151 03-13-11 12:52 no/kvikshaug/gh/Config$$anonfun$channels$1.class | |
| 812 03-13-11 12:52 no/kvikshaug/gh/Config$$anonfun$nicks$1.class |
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
| (defun ido-goto-symbol (&optional symbol-list) | |
| "Refresh imenu and jump to a place in the buffer using Ido." | |
| (interactive) | |
| (unless (featurep 'imenu) | |
| (require 'imenu nil t)) | |
| (cond | |
| ((not symbol-list) | |
| (let ((ido-mode ido-mode) | |
| (ido-enable-flex-matching | |
| (if (boundp 'ido-enable-flex-matching) |
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
| BEGIN TRANSACTION; | |
| ALTER TABLE timer ADD COLUMN channel TEXT; | |
| ALTER TABLE uploads ADD COLUMN channel TEXT; | |
| ALTER TABLE words ADD COLUMN channel TEXT; | |
| ALTER TABLE seen ADD COLUMN channel TEXT; | |
| ALTER TABLE factoid ADD COLUMN channel TEXT; | |
| ALTER TABLE karma ADD COLUMN channel TEXT; | |
| ALTER TABLE tracking ADD COLUMN channel TEXT; |
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
| local/beautiful-soup 3.1.0.1-3 | |
| A Python HTML/XML parser designed for quick turnaround projects like screen-scraping | |
| local/iotop 0.4.1-1 | |
| Python program with a top like UI used to show of behalf of which process is the I/O going on | |
| local/ipython 0.10-4 | |
| An enhanced Interactive Python shell. | |
| local/mod_wsgi 3.2-1 | |
| Python WSGI adapter module for Apache | |
| local/pylibacl 0.4.0-1 | |
| A python extension module that allows you to manipulate the POSIX.1e Access Control Lists present in some |
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
| BeautifulSoup==3.1.0.1 | |
| Pymacs==0.24-beta1 | |
| Twisted==10.0.0 | |
| argparse==1.1 | |
| buildbot==0.7.12 | |
| gdata==2.0.10 | |
| git-remote-helpers==0.1.0 | |
| goobook==1.4.dev | |
| hcs-utils==1.1.1 | |
| iotop==0.4.1 |
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
| * Install a JDK | |
| - Note that buildr will barf if you try to run it with a 64-bit JDK on | |
| Windows, so even if you're running Windows x64, get a 32-bit JDK. | |
| * Set %JAVA_HOME% to the path to the JDK installation. | |
| - I used the setx.exe utility which was already installed (Windows 7); | |
| `setx JAVA_HOME "C:\Program Files (x86)\Java\jdk1.6.0_16"` (your jdk | |
| path may be different). | |
| * Install ruby and rubygems. |
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 sys | |
| from gprof2dot import gprof2dot | |
| import pygraphviz as pgv | |
| import os.path | |
| PRUNE = True | |
| DEFAULT_NODE_TRESHOLD = 0.5 | |
| DEFAULT_EDGE_TRESHOLD = 0.1 | |
| if __name__ == '__main__': |
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
| /home/oyvindio/.m2/repository/org/scala-lang | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-compiler | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-compiler/2.7.7/scala-compiler-2.7.7.pom | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-compiler/2.7.7/scala-compiler-2.7.7.jar | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-library | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-library/2.7.5/scala-library-2.7.5.pom | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-library/2.7.5/scala-library-2.7.5.jar | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-library/2.7.7/scala-library-2.7.7.pom | |
| /home/oyvindio/.m2/repository/org/scala-lang/scala-library/2.7.7/scala-library-2.7.7.jar | |
| /home/oyvindio/.m2/repository/org/scala-tools |