I hereby claim:
- I am raid5 on github.
- I am raid5 (https://keybase.io/raid5) on keybase.
- I have a public key whose fingerprint is 4837 E525 CA99 7F0C 373B 9C56 AAAC 60BC F10E CD70
To claim this, I am signing this object:
| #!/usr/bin/expect -- | |
| # Test expect script to telnet. | |
| spawn telnet localhost 5554 | |
| expect "OK" | |
| send "geo fix -122.03180 37.33081\r" | |
| expect "OK" | |
| send "exit\r" | |
| # end of expect script. |
| def index | |
| #@activity = Activity.find(params[:activity_id]) | |
| #@accomplishments = @activity.accomplishments.completed.paginate :per_page => 4, :page => params[:page], :order => "created_at DESC" | |
| @accomplishments = Accomplishment.completed.paginate :per_page => 4, :page => params[:page], :order => "created_at DESC" | |
| end |
| node.js:278 | |
| var cwd = process.cwd(); | |
| ^ | |
| Error: No such file or directory | |
| at Function.resolveArgv0 (node.js:278:23) | |
| at startup (node.js:22:13) | |
| at node.js:432:3 |
| #!/bin/sh | |
| RSYNC_DEFAULT_OPTIONS="-r -t -v -L --ignore-existing --delete --stats --progress" | |
| RSYNC_TEMP_DIR="./tmp_rsync_dir/" | |
| # Sources | |
| ITUNES_PODCASTS_DIR="/Users/adam/Music/iTunes/iTunes Music/Podcasts/" | |
| ITUNES_MUSIC_DIR="/Users/adam/Music/iTunes/iTunes Music/" | |
| ALBUMS=( | |
| "Bone Thugs-N-Harmony/Strength & Loyalty" |
| - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { | |
| for (UITouch* t in touches) | |
| { | |
| [self updateGameStatusWithPoint:[t locationInView:self]]; | |
| } | |
| } |
| import java.io.IOException; | |
| import java.lang.reflect.Method; | |
| import java.util.AbstractCollection; | |
| import java.util.ArrayList; | |
| import java.util.EnumSet; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.Map; | |
| import android.media.AudioManager; | |
| import android.media.MediaPlayer; |
I hereby claim:
To claim this, I am signing this object:
| 0xC104ab95959104b6b1978044486e9186fCa5F9dF |
| 0xC104ab95959104b6b1978044486e9186fCa5F9dF |
| #!/bin/bash | |
| # Save current directory to var | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| # Fetch dependencies but do not build | |
| carthage update --no-build | |
| # Remove AWSAuthSDK project as this is not needed | |
| rm -r Carthage/Checkouts/aws-sdk-ios/AWSAuthSDK/ |