-
Install and run an MQTT broker (mosquitto is a good choice)
-
Install mqtt and ncurses-ruby gems (the plain ncurses gem is harder to natively compile)
sudo gem install mqtt ncurses-ruby
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
$ cf-scale-demo git:(master) ✗ cf push largeapp -m 6G | |
Updating app largeapp in org apiper-org / space development as apiper@gopivotal.com... | |
OK | |
Uploading largeapp... | |
Uploading from: /Users/andyp/Development/cloudfoundry/cf-scale-demo | |
7.2K, 24 files | |
OK | |
Stopping app largeapp in org apiper-org / space development as apiper@gopivotal.com... |
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
mosquitto-1.3 sudo dtruss mosquitto_pub -t andy -m "hello" | |
SYSCALL(args) = return | |
madvise(0x103D89000, 0x2000, 0x5) = 0 0 | |
open("/dev/dtracehelper\0", 0x2, 0x7FFF5C02A010) = 3 0 | |
__sysctl(0x7FFF5C0299A0, 0x6, 0x0) = 0 0 | |
__sysctl(0x7FFF5C0299A0, 0x6, 0x7FFC7D000000) = 0 0 | |
kqueue(0x7FFF5C029BD0, 0x7FFFFFE00050, 0x193) = 3 0 | |
kevent(0x3, 0x7FFF5C029BB0, 0x1) = 0 0 | |
socket(0x1, 0x1, 0x0) = 4 0 | |
setsockopt(0x4, 0xFFFF, 0x1022) = 0 0 |
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
feeStr null | |
org.apache.commons.logging | |
org.fusesource.hawtbuf.hawtbuf | |
org.fusesource.hawtdb.hawtdb | |
log4j | |
org.dna.mqtt.moquette-bundle | |
org.apache.felix.javax.servlet | |
io.netty.buffer | |
io.netty.codec | |
io.netty.common |
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
$ system_profiler -detailLevel mini SPPrefPaneDataType SPApplicationsDataType SPDeveloperToolsDataType SPExtensionsDataType > sysreport.txt |
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
#include <SPI.h> | |
#include <GD.h> | |
void setup() { | |
// give time for the gameduino splash screen to be displayed | |
delay(2500); | |
GD.begin(); | |
// load character set |
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
/* | |
Rainbowduino v3.0 Library examples: | |
Sets pixels on 2D plane (8x8 matrix) | |
*/ | |
#include <Rainbowduino.h> | |
uint32_t colorRGB[13] = {0xFFFFFF,0x000000,0xFFFFFF,0x000,0xFF0000,0x00FF00,0x0000FF,0xFF0000,0x00FF00,0x0000FF,0xFF0000,0x00FF00,0x0000FF }; |
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
// TinyBASIC.cpp : An implementation of TinyBASIC in C | |
// | |
// Author : Mike Field - hamster@snap.net.nz | |
// | |
// Based on TinyBasic for 68000, by Gordon Brandly | |
// (see http://members.shaw.ca/gbrandly/68ktinyb.html) | |
// | |
// which itself was Derived from Palo Alto Tiny BASIC as | |
// published in the May 1976 issue of Dr. Dobb's Journal. | |
// |
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
diff --git a/Styles.textile b/Styles.textile | |
index c7a71cf..c77c5b8 100644 | |
--- a/Styles.textile | |
+++ b/Styles.textile | |
@@ -3,9 +3,8 @@ The following is information related to styling Textual. | |
<h3>Introduction</h3> | |
* Styles are primarily developed using HTML & CSS — Two very common web standards. | |
-* (pre-version 2.1/non-sandboxed) Textual looks for all style files in the folder: [home folder] -> Library -> Application Support -> Textual -> Styles | |
+* Textual looks for all style files in the folder: [home folder] -> Library -> Application Support -> Textual -> Styles |
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
public static void main(String[] args) { | |
System.out.println("Hello GitHub"); | |
} |
OlderNewer