Tweaked to be a throbber for showing current location on a map.
Forked from: Styled after Series of Concentric Circles Emanating from Glowing Red Dot in The Onion.
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> | |
| <script language="javascript" src="http://d3js.org/d3.v3.min.js?3.0.0rc1"></script> | |
| <body> | |
| <h1>D3 Demo 1</h1> | |
| <!-- layout with twitter bootstrap or other layout project? --> | |
| Random colored balls from 20-color series, drawn at random position, | |
| drop off of the screen and fade. [STILL IN THE WORKS!!!] |
Tweaked to be a throbber for showing current location on a map.
Forked from: Styled after Series of Concentric Circles Emanating from Glowing Red Dot in The Onion.
| 'use strict'; | |
| /*jshint esnext: true */ | |
| class ToolsService { | |
| constructor($rootScope) { | |
| this.rootScope = $rootScope; | |
| this.brushRadius = 1; | |
| this.brushRadiusSetMessage = 'brushRadiusSetMessage'; | |
| } |
| <html> | |
| <head> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script> | |
| <script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js"></script> | |
| </head> | |
| <body> | |
| <div id="chart"> | |
| </div> | |
| <script type="text/javascript"> | |
| var w = 960, |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black"> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="viewport" content="initial-scale=1"> | |
| <style type="text/css"> | |
| body { | |
| background: black; |
| String _version = "0.01"; | |
| #define FLOOD_NOTIF "FLOOD" | |
| int LED = D7; | |
| void setup() { | |
| pinMode(LED, OUTPUT); | |
| Spark.publish("device starting", "Firmware version: " + _version, 60, PRIVATE); |
| @echo off | |
| setlocal | |
| set FFMPEG="C:\tools\ffmpeg\bin\ffmpeg.exe" | |
| set LAME=lame.exe | |
| set touch=touch.exe | |
| if "%1"=="" echo usage: mp4tomp3 {directory} && goto err | |
| if not exist %1 echo %1: Not found. && goto err | |
| pushd %1 |
| REM this goes under: Edit Process > Scripts > Post Processing > Additional commands: | |
| cmd /c C:\design\octoprint\gcode.bat "[output_filepath]" | |
See http://www.conwaylife.com/wiki/Run_Length_Encoded
For description of this Augmented BNF Style Grammar, see https://tools.ietf.org/html/rfc2616/#section-2.1
RLE files general structure:
| function main() { | |
| var shipX = 50; | |
| var shipY = 100; | |
| var shipMass = 100; | |
| var shipSize = 20; | |
| var shipDirection = Pi * 1.5; | |
| var shipSpeed = 1.8; | |
| var earthX = 210; | |
| var earthY = 140; |