Skip to content

Instantly share code, notes, and snippets.

View wupsbr's full-sized avatar

David Ruiz wupsbr

View GitHub Profile
@tbtlr
tbtlr / get_barcode_from_image.js
Created June 1, 2010 19:33
Barcode recognition with JavaScript - Demo: http://bit.ly/djvUoy
/*
* Copyright (c) 2010 Tobias Schneider
* This script is freely distributable under the terms of the MIT license.
*/
(function(){
var UPC_SET = {
"3211": '0',
"2221": '1',
"2122": '2',
try {
var adp = Titanium.API.Application.getDataPath();
var dbpath = adp+"\\"+"sampledb.db";
var db = Titanium.Database.openFile(dbpath);
//var db = Titanium.Database.open('recruitment'); // this doesn't work either
}
catch (e) {
alert(e); // seems to connect as this doesn't come up
}
@crcastle
crcastle / nodejs.sh
Created December 29, 2010 00:39
Node.js tartup script for AWS EC2 Linux box
#!/bin/bash
# nodejs - Startup script for node.js server
# chkconfig: 35 85 15
# description: node is an event-based web server.
# processname: node
# server: /path/to/your/node/file.js
# pidfile: /var/run/nodejs.pid
#
@bebraw
bebraw / gameengines.md
Created January 6, 2011 18:07
List of JS game engines. You can find a wikified version at https://github.com/bebraw/jswiki/wiki/Game-Engines. Feel free to modify that. I sync it here every once in a while.

IMPORTANT! Remember to check out the wiki page at https://github.com/bebraw/jswiki/wiki/Game-Engines for the most up to date version. There's also a "notes" column in the table but it simply does not fit there... Check out the raw version to see it.

This table contains primarily HTML5 based game engines and frameworks. You might also want to check out the [[Feature Matrix|Game-Engine-Feature-Matrix]], [[Game Resources]] and [[Scene Graphs]].

Name Size (KB) License Type Unit Tests Docs Repository Notes
Akihabara 453 GPL2, MIT Classic Repro no API github Intended for making classic arcade-style games in JS+HTML5
AllBinary Platform Platform Dependent AllBinary 2D/2.5D/3D n
@sampsyo
sampsyo / fingerprinter-macports.diff
Created February 1, 2011 00:49
Fixes compilation of Last.fm fingerprinter under Mac OS X with libraries installed by MacPorts (correctly specifying the libraries that need to be linked).
diff -r 6a862c34b61f fplib/CMakeLists.txt
--- a/fplib/CMakeLists.txt Mon Jul 12 18:14:59 2010 +0100
+++ b/fplib/CMakeLists.txt Mon Jan 31 16:49:31 2011 -0800
@@ -19,6 +19,7 @@
IF(APPLE)
INCLUDE_DIRECTORIES(/opt/local/include/)
+LINK_DIRECTORIES(${LINK_DIRECTORIES} /opt/local/lib/)
ENDIF(APPLE)
@dawsontoth
dawsontoth / Geolocation.js
Created February 9, 2011 23:35
Constantly Updating Geolocation in Appcelerator Titanium
Titanium.Geolocation.accuracy = Titanium.Geolocation.ACCURACY_BEST;
Titanium.Geolocation.distanceFilter = 0;
var win = Ti.UI.createWindow({backgroundColor: '#fff'});
var label = Ti.UI.createLabel();
win.add(label);
win.open();
function reportPosition(e) {
if (!e.success || e.error) {
@billdawson
billdawson / facebook_blog_post.md
Created February 15, 2011 16:48
Titanium 1.6.0's new Facebook module

Titanium Mobile 1.6.0 (currently in its release-candidate stage) contains an upgraded Facebook module which uses new authentication features on both Android and iOS as well as a new set of methods to retrieve and submit data. Our new API documentation won't get generated and put up on the site until 1.6.0 actually ships, but until then you can peruse the "raw" version of the docs in our Github repository. Some sample code is included therein as well as in the latest KitchenSink Facebook examples (search for "facebook" when you get there).

Authentication and Authorization

Our iOS and Android implementations both use Facebook's OAuth 2.0 authentication scheme, as Facebook has deprecated all other forms of authentication. Y

@dawsontoth
dawsontoth / notificationsInAndroid.js
Created March 4, 2011 22:33
Notifications in Android using Titanium Appcelerator Mobile
var win = Ti.UI.createWindow({ backgroundColor: '#fff' });
win.add(Ti.UI.createLabel({ text: 'Look for the notification! It should be there now.' }));
win.open();
Titanium.Android.NotificationManager.notify(
0, // <-- this is an ID that we can use to clear the notification later
Ti.Android.createNotification({
contentTitle: 'Cheese, Gromit!',
contentText: 'Swiss',
tickerText: 'Our app made a notification!',
@sevir
sevir / Progress in Titanium
Created March 8, 2011 12:30
Progress window in Titanium cross mobile
function showIndicator()
{
// window container
indWin = Titanium.UI.createWindow({
height:150,
width:150
});
// black view
var indView = Titanium.UI.createView({
@kosso
kosso / background_demo.js
Created March 12, 2011 17:55
Background Service notification for Titanium
/* Kosso : March 12th 2011
This the only way I managed to do this without the app crashing on resume.
Done slightly differently to the KS example, since they unregister the service and
do not use a setInterval timer.
*/
//############ in app.js :
// test for iOS 4+