I hereby claim:
- I am mfferreira on github.
- I am marfife (https://keybase.io/marfife) on keybase.
- I have a public key whose fingerprint is FEBB 8702 45AC 3611 615B 56AC 1C08 481C 6202 8F66
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 18h5k9nadKVzYaNGByQZYmbBoArYJEU1ER https://explorer.blockstack.org/address/18h5k9nadKVzYaNGByQZYmbBoArYJEU1ER |
I hereby claim:
To claim this, I am signing this object:
> HCI Event: Connect Request (0x04) plen 10 [hci0] 211.150645 | |
Address: 64:BC:0C:FC:D7:74 (OUI 64-BC-0C) | |
Class: 0x5a020c | |
Major class: Phone (cellular, cordless, payphone, modem) | |
Minor class: Smart phone | |
Networking (LAN, Ad hoc) | |
Capturing (Scanner, Microphone) | |
Object Transfer (v-Inbox, v-Folder) | |
Telephony (Cordless telephony, Modem, Headset) | |
Link type: ACL (0x01) |
var win = ui.win({ | |
config: 'windowProperties', | |
properties: { | |
title: 'window title, | |
rightNavButton: ui.button({ | |
config: 'button', | |
events: [ ['click', function(e){ | |
e.source.enabled = false; | |
}] ] | |
}), |
//Barebones example of how we do sidemenu in NirvanaHQ iOS app. | |
//You use this window as the container for your navGroup. | |
var rootWin = Titanium.UI.createWindow({ | |
zIndex: 2, | |
width: '100%', | |
backgroundColor: '#f00', | |
listPanelVisible: false //Custom prop | |
}); |
[ | |
{ | |
"entity": "https://mcp.tent.is", | |
"permissions": { | |
"groups": [], | |
"entities": {}, | |
"public": true | |
}, | |
"id": "lu8sah", | |
"created_at": 1349306541, |
geoloqi.init({ | |
clientId: "xxxxxxx", | |
clientSecret: "xxxxxxx", | |
trackingProfile: "OFF", // Don't automatically start tracking | |
allowAnonymousUsers:false, // Don't automatically create a user when starting up the first time | |
pushAccount: "[email protected]", // Sets the push account to use for Android notifications | |
pushIcon: "push_icon" // Also required for Android push notifications | |
}, { | |
onSuccess:function(e) { | |
if (geoloqi.session==null) { |
mkdir temp | |
cd temp | |
git clone [email protected]:yourDomain/yourRepoName.git | |
cd yourRepoName/ | |
git remote rm origin | |
git remote add origin https://[email protected]/yourUsername/yourNewRepoName.git | |
git remote show origin | |
git push origin master | |
cd ../.. | |
rm -rf temp |
/** | |
* @preserve | |
* Titanium Cloud Module | |
* | |
* This module is used across three distinct platforms (iOS, Android, and Mobile Web), each with their own architectural | |
* demands upon it. | |
* | |
* Appcelerator Titanium is Copyright (c) 2009-2010 by Appcelerator, Inc. | |
* and licensed under the Apache Public License (version 2) | |
*/ |