I hereby claim:
- I am tylerhall on github.
- I am tylerhall (https://keybase.io/tylerhall) on keybase.
- I have a public key whose fingerprint is 6A6A CE7D E268 8F9A 9E97 E2B6 14C1 60A4 6D68 61A9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?PHP | |
| require 'class.sosumi.php'; | |
| $ssm = new Sosumi('username', 'password'); | |
| // Print a list of all the devices in your MobileMe account | |
| print_r($ssm->devices); | |
| // $device_number is an integer (0 through ...) that corresponds | |
| // to the device you want info about. |
| #import <Foundation/Foundation.h> | |
| @interface NSDictionary (EmbeddedValue) | |
| - (id)embeddedValueWithKeys:(NSArray *)keys; | |
| @end |
| property ScriptName : "Repeat Call" | |
| property PhoneToDial : "+15551234567" | |
| repeat | |
| tell application "Skype" | |
| send command "CALL " & PhoneToDial script name ScriptName | |
| delay 10 | |
| set activeCalls to send command "SEARCH ACTIVECALLS" script name ScriptName |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
| "http://www.w3.org/TR/html4/loose.dtd"> | |
| <html lang="en"> | |
| <head> | |
| <script type="text/javascript" charset="utf-8"> | |
| function resizeFrame(newHeight) { | |
| document.getElementById('theFrame').height = newHeight; | |
| } | |
| </script> | |
| </head> |
| <?PHP | |
| require 'includes/master.inc.php'; | |
| if($Auth->loggedIn()) redirect('index.php'); | |
| if(!empty($_POST['username'])) | |
| { | |
| if($Auth->login($_POST['username'], $_POST['password'])) | |
| redirect('index.php'); | |
| else |
| // | |
| // NSData+Base64.h | |
| // base64 | |
| // | |
| // Created by Matt Gallagher on 2009/06/03. | |
| // Copyright 2009 Matt Gallagher. All rights reserved. | |
| // | |
| // Permission is given to use this source code file, free of charge, in any | |
| // project, commercial or otherwise, entirely at your risk, with the condition | |
| // that any redistribution (in part or whole) of source code must retain |
| 00 05 * * * /usr/sbin/diskutil mount /dev/disk1s3 |
| <?PHP | |
| include 'class.sosumi.php'; | |
| $ssm = new Sosumi('your-username', 'your-password'); | |
| $location = $ssm->locate(); |
| <?PHP | |
| $ssm = new Sosumi('username', 'password'); | |
| $location_data = $ssm->locate(); | |
| $ssm->sendMessage('Daisy, daisy...'); |