I hereby claim:
- I am rowan-m on github.
- I am rowan_m (https://keybase.io/rowan_m) on keybase.
- I have a public key ASAobnJ4vRpPtn90NGmtUtBlAyJq0vCa8tlOnxt1xX19kQo
To claim this, I am signing this object:
| <input-knob value="1"></input-knob> |
| <input type="range" name="volume" min="0" max="100" value="42" /> |
| #!/bin/bash | |
| CURRENT_GOVERNOR=`cpufreq-info -p | grep -oE '[^ ]+$'`; | |
| NEW_GOVERNOR='performance'; | |
| echo "Current governor: $CURRENT_GOVERNOR"; | |
| if [ "$CURRENT_GOVERNOR" == "performance" ]; then | |
| NEW_GOVERNOR="powersave"; | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| // ---8<--- SNIP ---8<--- | |
| if (isset( | |
| $_SERVER['PARAM2'], $_SERVER['RDS_HOSTNAME'], $_SERVER['RDS_PORT'], $_SERVER['RDS_USERNAME'], $_SERVER['RDS_PASSWORD'] | |
| )) { | |
| $databases = array( | |
| 'default' => | |
| array( |
| rowan@swordbean:~/ground-up$ elastic-beanstalk-create-application-version -a asciigram -d 'Version from Zip file' \ | |
| -l tryToOverwrite -s elasticbeanstalk-us-east-1-837326383672/v20130208172455.zip | |
| ApplicationName | DateCreated | DateUpdated | Description | SourceBundle | VersionLabel | |
| --------------------------------------------------------------------------------------- | |
| asciigram | 2013-02-08 21:29:53 +0000 | 2013-02-08 21:29:53 +0000 | Version from Zip file | elasticbeanstalk-us-east-1-837326383672/v20130208172455.zip | tryToOverwrite | |
| rowan@swordbean:~/ground-up$ elastic-beanstalk-create-application-version -a asciigram -d 'Version from Zip file' \ | |
| -l tryToOverwrite -s elasticbeanstalk-us-east-1-837326383672/v20130208172455.zip | |
| Service returned an error. | |
| Type: Sender | |
| Code: InvalidParameterValue |
| <?php | |
| namespace Sorting; | |
| trait ObservableTrait | |
| { | |
| private $observers = array(); | |
| public function addObserver(Observer $observer) | |
| { |
| #! /bin/bash | |
| # Where lolcommits stores its images | |
| LOLCOMMITS_DIR=/home/rowan/.lolcommits | |
| # The subdirectory in the lolcommits directory you want to us | |
| LOLCOMMITS_REPO=project | |
| # Image mask used to blur commit message | |
| BLUR_MASK_IMG=/home/rowan/mask.jpg | |
| # Video frames per second | |
| VIDEO_FPS=4 |
| <?php | |
| $string = 'It is very difficult to make a vigorous, plausible, and job-risking defense of an estimate that is derived by no quantitative method, supported by little data, and certified chiefly by the hunches of the managers.'; | |
| $string = wordwrap($string, 80, '#'); | |
| $length = strlen($string); | |
| $wordsPerLine = array(); | |
| $line = 1; |
| #!/bin/bash | |
| # If the process is already running, you can use the following: | |
| PID=`pgrep processname` | |
| renice -n 19 $PID | |
| ionice -c 3 -p $PID | |
| # For new processes, just chain them together | |
| nice -n 19 ionice -c 3 processname |