JankyBrowser
The only cross-platform browser that fits in a Gist!
One line install. Works on Linux, MacOSX and Windows.
Local Install
$> npm install http://gist.github.com/morganrallen/f07f59802884bcdcad4a/download
The only cross-platform browser that fits in a Gist!
One line install. Works on Linux, MacOSX and Windows.
$> npm install http://gist.github.com/morganrallen/f07f59802884bcdcad4a/download
As I plan to make a custom breakout board I wanted to solder as few connections as possible. I was able to boot the device, with UART (out at least) soldering the following.
PIN | NAME |
---|---|
0 | GND |
1 | 3V3 |
2 | EN |
D/CordovaActivity(18223): onMessage(onPageStarted,file:///#!/sites) | |
D/CordovaLog(18223): file:///#!/sites: Line 1 : Uncaught ReferenceError: start is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 2 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 3 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 4 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 5 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 6 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 7 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 8 : Uncaught ReferenceError: addRow is not defined | |
D/CordovaLog(18223): file:///#!/sites: Line 9 : Uncaught ReferenceError: addRow is not defined |
#!/usr/bin/env python2 | |
from os import sys | |
import argparse | |
import copy | |
import pcbnew | |
import string | |
import sys | |
import math | |
import numpy as np |
@app | |
count_test | |
@html | |
post / | |
get / |
miniterm.py `udevserial -v ID_MODEL=Arduino_Due -v SUBSYSTEM=tty` 115200 --raw
esptool32 --port `udevserial -v ID_MODEL=Arduino_Due -v SUBSYSTEM=tty` --before no_reset --after no_reset --baud 115200 write_flash 0x10000 ./build/gatt_server_demos.bin
<?xml version='1.0' encoding='utf-8'?> | |
<widget id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | |
<name>HelloCordova</name> | |
<description> | |
A sample Apache Cordova application that responds to the deviceready event. | |
</description> | |
<author email="dev@cordova.apache.org" href="http://cordova.io"> | |
Apache Cordova Team | |
</author> | |
<content src="http://192.168.1.100:8000/index.html" /> |
By default the project.md
file declares one SRCDIR as
SRCDIRS ?= main
Overriding this in local project Makefile
didn't appear to change anything.
This is because every src directory requires a component.mk
#include <c_types.h> | |
#include <osapi.h> | |
#include <user_interface.h> | |
#include <espconn.h> | |
#include <mem.h> | |
#include <gpio.h> | |
typedef int (* oGetValueCB)(); | |
typedef void (* oSetValueCB)(int, int); |
{ | |
"name": "test", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "tape test*.js" | |
}, | |
"author": "", | |
"license": "ISC" |