Skip to content

Instantly share code, notes, and snippets.

View pegli's full-sized avatar

Paul Mietz Egli pegli

View GitHub Profile
@pegli
pegli / gist:969694
Created May 12, 2011 23:46
missing top-level objects on Android
// module code
// assets/Resources/foogle.js
exports.client = {
test: function() {
var modules = ["Accelerometer","Analytics","Android","App","Contacts","Database","Facebook","Filesystem","Geolocation",
"Gesture","Locale","Map","Media","Network","Platform","UI","Utils","XML","Yahoo"];
for (var i = 0; i < modules.length; i++) {
Titanium.API.info(modules[i]+ "? "+Titanium[modules[i]]);
}
}
@pegli
pegli / gist:996326
Created May 27, 2011 22:31
XPath namespace declaration and routeContext
<!-- xpathFilterWithNamespace.xml from existing camel-spring test case; works fine -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:foo="http://example.com/person"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
">
@pegli
pegli / NavigationController_Ex1.js
Created October 31, 2011 16:08
NavigationController with added pop() and close_all() methods
/**
* https://github.com/appcelerator-developer-relations/Forging-Titanium/tree/master/ep-002
* written by Kevin Whinnery, Appcelerator
*/
function dump(windowStack) {
var titles = [];
for (var i=0; i < windowStack.length; i++) {
var win = windowStack[i]
titles.push(win.title);
@pegli
pegli / gist:2996514
Created June 26, 2012 15:39
postal.js and machina.js in Titanium
// setting up postal and machina to work together
/*
1. Download underscore.js and the node versions of postal.js, machina.js, and machina-postal.js
from http://github.com/ifandelse
2. Change the location of underscore in the require() statements of the postal.js and machina.js
3. Connect machina to postal as follows:
*/
var postal = require('lib/ifandelse/postal'),
@pegli
pegli / gist:3004849
Created June 27, 2012 15:31
force linker to include packages for CommonJS apps
// https://jira.appcelerator.org/browse/TIMOB-3132
function FORCE_LINKER() {
Ti.UI.createWindow();
Ti.UI.createTab();
Ti.UI.createTabGroup();
Ti.UI.createProgressBar();
Ti.UI.create2DMatrix();
Ti.UI.createAnimation();
Ti.UI.iOS.createToolbar();
Ti.UI.iPhone.createNavigationGroup();
function ApplicationTabGroup(Window) {
var MusicWindow = require('ui/handheld/MusicWindow'),
VideosWindow = require('ui/handheld/VideosWindow'),
SearchWindow = require('ui/handheld/SearchWindow');
//create module instance
var self = Ti.UI.createTabGroup();
//create app tabs
var win1 = new MusicWindow(L('music')),
@pegli
pegli / gist:3137381
Created July 18, 2012 16:46
list function for `mx
{
"_id": "_design/configs",
"_rev": "4-a0b96a31984e1267e6ecf46302744451",
"views": {
"subnet": {
"map": "function(doc) {\n emit(null, doc);\n};"
}
},
"lists": {
@pegli
pegli / gist:3520111
Created August 29, 2012 23:10
TiTouchDB save new document
var server = require('com.obscure.titouchdb'),
db = server.databaseNamed('mydb');
var doc = db.untitledDocument()
var result = doc.putProperties({
foo: 10,
bar: 'a string',
x: [1,2,3,4]
});
@pegli
pegli / gist:3520302
Created August 29, 2012 23:25
using couch_client.js
var client = require('couch_client').CouchClient('http://foo.iriscouch.com');
var db = client.database('mydb');
db.create(); // if not already created
var document = {
x: 10,
y: 'some string',
foo: [1, 2, 3]
};
@pegli
pegli / gist:3789307
Created September 26, 2012 17:19
example use case of afterCollectionCreate
// semi-contrived example: adding a count() function to SQL collections which doesn't
// load all of the models.
// Alloy/lib/alloy/sync/sql.js
function Count() {
var table = model.config.adapter.collection_name;
var sql = 'SELECT * FROM '+table;
var rs = db.execute('SELECT COUNT(*) FROM '+table);
return rs.isValidRow() ? rs.field(0) : 0;