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
| # Solarized colorscheme/theme from | |
| source-file git/github/tmux-colors-solarized/tmuxcolors.conf | |
| # Report that we can handle 256 colors | |
| set -g default-terminal "screen-256color" | |
| # Rebind prefix to avoid conflicts | |
| #unbind C-b | |
| #set -g prefix C-q | |
| #bind C-q send-prefix |
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
| /* | |
| * | |
| * Instead of a single backend, let's set up a more complex multi-server director. | |
| * This director will randomly assign each request to one of three application servers. | |
| * | |
| */ | |
| director backend random { | |
| .retries = 5; | |
| { | |
| .backend = { |
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
| var loveit = function(){var e,el,interval=Math.random()*60000;e = new jQuery.Event("click");e.pageX=1;e.pageY=1;el = jQuery('.record_pile:last').nextAll('a').eq(2);turntable.lastMotionTime=new Date().getTime();el.hover().trigger(e);setTimeout(loveit, interval);};loveit(); |
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
| var loveit = function(){ | |
| var e,el,interval=Math.random()*60000; | |
| e = new jQuery.Event("click"); | |
| e.pageX=1; | |
| e.pageY=1; | |
| el = jQuery('.record_pile:last').nextAll('a').eq(2); | |
| turntable.lastMotionTime=new Date().getTime(); | |
| el.hover().trigger(e); | |
| setTimeout(loveit, interval); | |
| }; |
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
| RVM home page: http://rvm.beginrescueend.com | |
| Install RVM | |
| ------------ | |
| See http://rvm.beginrescueend.com/rvm/install/ | |
| bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) | |
| Install rvm for all users |
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
| from django.test.simple import DjangoTestSuiteRunner | |
| from django.test import TransactionTestCase | |
| from mongoengine import connect | |
| class TestRunner(DjangoTestSuiteRunner): | |
| def setup_databases(self, **kwangs): | |
| db_name = 'testsuite' | |
| connect(db_name) | |
| print 'Creating test-database: ' + db_name |
NewerOlder