🏄♂️
This file contains 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
$params = is_array($urls) ? 'url='.implode('&url=', array_map('urlencode', $urls)) : 'url='.urlencode($urls); |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<response> | |
<plaintext>hello world<plaintext> | |
<hash>5eb63bbbe01eeed093cb22bb8f5acdc3<hash> | |
<algo>md5<algo> | |
<status>ok</status> | |
<error_message></error_message> | |
</response> |
This file contains 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
{ | |
"plaintext": "hello world", | |
"hash": "5eb63bbbe01eeed093cb22bb8f5acdc3", | |
"algo": "md5", | |
"status": "ok", | |
"error_message": "" | |
} |
This file contains 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 sys = require('sys'), | |
http = require('http'); | |
http.createServer(function(req, res) { | |
res.sendHeader(200, {'Content-Type': 'text/html'}); | |
res.sendBody('<h1>Hello World</h1>'); | |
res.finish(); | |
}).listen(8080); | |
sys.puts('Server running at http://127.0.0.1:8080/'); |
This file contains 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
require 'rubygems' | |
require 'tinyscrobbler' | |
begin | |
ls = Tinyscrobbler::Client.new(username, password) | |
rescue Exception => e | |
puts 'Error: unable to start last fm scrobbler.' | |
end | |
track_list = [ |
This file contains 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
destination: ./_site | |
auto: false | |
lsi: false | |
server_port: 4000 | |
pygments: true | |
markdown: maruku | |
permalink: /archives/:title | |
maruku: | |
use_tex: false | |
use_divs: false |
This file contains 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
<?php | |
// pseudo-code | |
if (login == failed) { | |
$data = "LOGIN FAILED!!! - "; | |
} | |
else { | |
$data = "Login OK! - "; | |
} |
This file contains 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
<?php | |
require_once 'PHPUnit/Extensions/SeleniumTestCase.php'; | |
class seleniumExampleTest extends PHPUnit_Extensions_SeleniumTestCase | |
{ | |
protected function setUp() | |
{ | |
$this->setBrowser('*firefox'); | |
$this->setBrowserUrl('http://www.google.com.au/'); | |
} | |
function testMyTestCase() |
This file contains 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
require 'open-uri' | |
def startup() | |
unless File.exist?('metadata.dat') | |
fd = open('metadata.dat', "w") | |
fd.write("0") | |
fd.close() | |
end | |
fd = open('metadata.dat', "r") |
This file contains 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
<?php | |
/** | |
* Reads tweets containing given keyword using the OSX text to speech | |
*/ | |
if (!isset($argv[1])) { exit ("Search keyword needed.\n"); } | |
$username = TWITTER_USERNAME; | |
$password = TWITTER_PASSWORD; |
OlderNewer