I hereby claim:
- I am cmpis on github.
- I am cmp (https://keybase.io/cmp) on keybase.
- I have a public key whose fingerprint is 0879 C481 3801 389B 3B56 55B9 198E 82B0 6AC9 3077
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Morse Code</title> | |
</head> | |
<style type="text/css"> | |
html, body { | |
margin: 0; | |
padding: 0; | |
font-family: Arial, Helvetica, sans-serif; |
### Keybase proof | |
I hereby claim: | |
* I am 0xcmp on github. | |
* I am cmp (https://keybase.io/cmp) on keybase. | |
* I have a public key ASCQaLgltfSW8AnluF5ca1gAgvN0TYq65GDx8sTD1goIVQo | |
To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
int connectionEstablished; | |
int counter; | |
int *array; | |
void setup() | |
{ | |
connectionEstablished = 0; | |
counter = 0; | |
Serial.begin(115200); |
int connectionEstablished; | |
int counter; | |
void setup() | |
{ | |
connectionEstablished = 0; | |
counter = 0; | |
Serial.begin(115200); | |
Serial.println("Initialize Channel"); |
// TwitPic/OAuth.cs | |
// | |
// Code to do OAuth stuff, in support of a cropper plugin that sends | |
// a screen snap to TwitPic.com. | |
// | |
// There's one main class: OAuth.Manager. It handles interaction with the OAuth- | |
// enabled service, for requesting temporary tokens (aka request tokens), as well | |
// as access tokens. It also provides a convenient way to construct an oauth | |
// Authorization header for use in any Http transaction. | |
// |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
struct Dictionary { | |
void * next; | |
char word[1]; | |
} DICT, *PDICT; | |
// Declare function prototype |
var Main = function () { | |
this.index = function (req, resp, params) { | |
var self = this; | |
var data; | |
geddy.model.Locations.all(function(err, locations) { | |
data.locations = locations; | |
geddy.model.Recorders.all(function(err, recorders) { | |
data.recorders = recorders; | |
self.respond({params: params, data: data}, { | |
format: 'html' |