- https://t.co/1FSFQUfp
- http://t.co/vJzKAzFs
- http://t.co/ncTxB5za
- http://t.co/klb4yNn7
- https://twitter.com/randomfrequency/status/244188321834758145
- https://www.lucidchart.com/
- google drawings (a part of google docs I never noticed somewhow)
- http://t.co/E5uMkjaP
- https://t.co/8w7ob5dc
- Emacs' Artist Mode
09:00-09:30 ....................... Breakfast and registration
09:30-09:55 ... Andre/Dave ........ Opening remarks
10:00-10:20 ... Matt Kelly ........ Mobile Web Landscape
10:25-10:40 ... Fil ............... Whats new in PhoneGap 2.0
10:40-11:00 ....................... Break
11:00-11:20 ... Gord .............. CordovaJS
11:25-11:45 ... Pamela Fox.........
11:50-12:10 ... James Burke ....... RequireJS and stuff
12:10-13:10 ....................... Lunch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var postForm = postForm function(e) { | |
// throw a canvas in there, YES I KNOW ITS KLUDGY BUSINESS | |
$('#pics').prepend('<a><canvas id=tmp class=pic width=90 height=90></canvas></a>') | |
var fd = new FormData() | |
, xhr = new XMLHttpRequest() | |
, canvas = $('#tmp')[0] | |
, f = new FileReader() |
WHERE: Barcade Brooklyn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/imhotep/incubator-cordova-android.git | |
cd incubator-cordova-android | |
./bin/create2 | |
cd example | |
ant clean debug install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv=Content-Type content=text/html;charset=UTF-8> | |
<meta name=viewport id=viewport content=width=device-width,height=device-height,initial-scale=1.0,user-scalable=no> | |
<title>Hello Cordova</title> | |
</head> | |
<body> | |
<h1 id=hello>Initializing...</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var photo = require('./photo') | |
, app = require('./app') | |
// GET /api/v1/img ....... list all images | |
app.get('/api/v1/img', photo.cors, function(req, res) { | |
photo.thumbs(function(err, photos) { | |
res.send(photos) | |
}) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var photo = require('s4').create(require('s3-config')) | |
, path = require('path').join(__dirname, 'test.jpg') | |
photo.save(path, function(err, url) { | |
if (err) throw new Error('fuuuu') | |
console.log('saved! the new url is: ' + url) | |
}) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
adb forward tcp:9222 localabstract:chrome_devtools_remote | |
open http://localhost:9222 |