Skip to content

Instantly share code, notes, and snippets.

View pedrofaria's full-sized avatar
🇧🇷
Eu sou o Pedro

Pedro Faria pedrofaria

🇧🇷
Eu sou o Pedro
View GitHub Profile
function shorten_url(url,callback) {
var XHR = Titanium.Network.createHTTPClient({
onload: function () {
try {
shorturl = JSON.parse(this.responseText);
shorturl = shorturl.id;
} catch(e) {
shorturl = false;
}