This file contains 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
long previousPrint = 0; | |
long intervalPrint = 10000; | |
boolean red = false; | |
boolean blu = false; | |
boolean gre = false; | |
boolean all = false; | |
char val = 'a'; | |
void setup() { |
This file contains 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
<div class="item-1"> | |
<article class="carta"> | |
<header class="title"> | |
<h2>Concierge Plus</h2> | |
<div class="meta"> | |
Property Management CMS | |
</div></header> | |
<figure class="display"> | |
<img src="assets/images/cpblog.png" width="100%" /> | |
</figure> |
This file contains 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
/* | |
leftSide - 0 | |
leftArm - 1 | |
leftNeck - 2 | |
rightSide - 3 | |
rightArm - 4 | |
rightNeck - 5 | |
*/ | |
int difference = 0; |
This file contains 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
String[] textFile; | |
int[] data; | |
IntList timeArray; | |
IntList pressArray; | |
ArrayList<IntList> pressPerIncr = new ArrayList(); //arraylist of an intlist of presses per a time period | |
//count of total presses | |
int lArm; | |
int rArm; |
This file contains 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
// eltests.ino | |
unsigned long currentMillis = 0; | |
unsigned int seed = 10; | |
unsigned int flickerVariability = 700; | |
long previousMillis = 0; | |
long prevSeed = 0; | |
long prevFlick1 = 0; | |
long prevFlick2 = 0; |
This file contains 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
(ns enasync.site | |
(:require [enfocus.core :as ef] | |
[enfocus.effects :as effects] | |
[enfocus.events :as ev] | |
[cljs.core.async :refer [<! !> chan pub sub put!]]) | |
(:require-macros [enfocus.macros :as em] | |
[cljs.core.async.macros :refer [go go-loop]])) | |
(def log #(.log js/console %)) |
This file contains 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
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'Shougo/unite.vim' | |
Bundle 'tpope/vim-fugitive' |
This file contains 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
WARNING: JavaScript file found on classpath for library `cljs.nodejs`, but does not contain a corresponding `goog.provide` declaration: jar:file:/Users/boriskourt/.m2/repository/org/clojure/clojurescript/0.0-2268/clojurescript-0.0-2268.jar!/cljs/nodejs.js | |
WARNING: JavaScript file found on classpath for library `cljs.nodejs`, but does not contain a corresponding `goog.provide` declaration: jar:file:/Users/boriskourt/.m2/repository/org/clojure/clojurescript/0.0-2268/clojurescript-0.0-2268.jar!/cljs/nodejs.js | |
Jul 09, 2014 2:16:05 PM com.google.javascript.jscomp.LoggerErrorManager println | |
SEVERE: /Users/boriskourt/Development/mdgspet/hardware/tessel/target/mdgspet/tessel/main.js:2: ERROR - Parse error. Semi-colon expected | |
WARNING: JavaScript file found on classpath for library `cljs.nodejs`, but does not contain a corresponding `goog.provide` declaration: jar:file:/Users/boriskourt/.m2/repository/org/clojure/clojurescript/0.0-2268/clojurescript-0.0-2268.jar!/cljs/nodejs.js | |
^ | |
Jul 09, 2014 2:16 |
This file contains 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
(def nested-data | |
(atom | |
{:name "Top" | |
:id 1314 | |
:subs [{:name "Terms" | |
:id 2431 | |
:subs [{:name "Causes" | |
:id 3322 | |
:subs []} | |
{:name "Tempo" |
This file contains 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
(ns simple-test.alpha) | |
(def a-val 1) |
OlderNewer