Skip to content

Instantly share code, notes, and snippets.

View rogeriopvl's full-sized avatar
🏄‍♂️

Rogério Vicente rogeriopvl

🏄‍♂️
View GitHub Profile
$params = is_array($urls) ? 'url='.implode('&url=', array_map('urlencode', $urls)) : 'url='.urlencode($urls);
<?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>
{
"plaintext": "hello world",
"hash": "5eb63bbbe01eeed093cb22bb8f5acdc3",
"algo": "md5",
"status": "ok",
"error_message": ""
}
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/');
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 = [
destination: ./_site
auto: false
lsi: false
server_port: 4000
pygments: true
markdown: maruku
permalink: /archives/:title
maruku:
use_tex: false
use_divs: false
<?php
// pseudo-code
if (login == failed) {
$data = "LOGIN FAILED!!! - ";
}
else {
$data = "Login OK! - ";
}
<?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()
@rogeriopvl
rogeriopvl / praprogmag.rb
Created December 22, 2010 14:26
Prag Prog Mag downloader
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")
@rogeriopvl
rogeriopvl / TwitterParrot.php
Created January 10, 2011 22:38
Reads tweets containing given keyword using the OSX text to speech
<?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;