Skip to content

Instantly share code, notes, and snippets.

View marshall's full-sized avatar

Marshall Culpepper marshall

View GitHub Profile
@marshall
marshall / example.js
Last active August 29, 2015 14:03
All FxOS apps as JSON
var schemes = {
"app:": "A",
"http:": "H",
"https:": "S",
"file:": "F"
};
var domains = {
".gaiamobile.org": "G"
};
@marshall
marshall / Austin_IoT_Links.md
Last active August 29, 2015 14:20
Links from my Austin IoT presentation
<html>
<head>
<style>
body { font-family: Monaco; }
#drop_target {
-webkit-user-drop: element;
border-bottom: 2px dashed black;
background-color: #303030;
color: #909090;
font-size: 16px;
<html>
<head>
<style>
#square {
background-color: black;
color: white;
font-size: 30pt;
padding: 10px;
width: 350px;
}
SSH_ENV=$HOME/.ssh/environment
function start_agent {
echo "Initialising new SSH agent..."
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV}
echo succeeded
chmod 600 ${SSH_ENV}
. ${SSH_ENV} > /dev/null
/usr/bin/ssh-add ~/.ssh/marshall_github_key;
}
<ti:app>
<!-- ... -->
<property name="ti.android.google.map.api.key.production">GET_ME_FROM_GOOGLE</property>
</ti:app>
// Note: this isn't public API, so there should be lots of error checking here
Method gciMethod = Resources.class.getMethod("getCompatibilityInfo");
Object compatInfo = gciMethod.invoke(view.getResources());
float appScale = (Float)compatInfo.getClass().getField("applicationScale").get(compatInfo);
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := v8hi
LOCAL_CFLAGS := -I/Users/marshall/Source/v8/include -g
LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -ldl -llog -L$(TARGET_OUT)
LOCAL_SRC_FILES := v8hi.cpp
PRIVATE_WHOLE_STATIC_LIBRARIES := $(TARGET_OUT)/libv8.a
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView label = (TextView)findViewById(R.id.TextView01);
String dbPath = "/sdcard/test.db";
SQLiteOpenHelper helper = new SQLiteOpenHelper(this, dbPath, null, 1) {
@Override
public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2) {