- Download robotjs
wget https://github.com/octalmage/robotjs/archive/v0.2.4.zip
- Unzip robotjs
unzip v0.2.4.zip
| precision mediump float; | |
| uniform float u_time; // time | |
| uniform vec2 u_resolution; // resolution | |
| uniform vec2 u_mouse; | |
| void main(){ | |
| vec3 destColor = vec3(abs(sin(u_time)), 0.2, 0.1); | |
| vec2 p = (gl_FragCoord.xy * 2.0 - u_resolution) / min(u_resolution.x, u_resolution.y); | |
| float a = atan(p.y / p.x) * sin(u_time) * 10.0; | |
| float l = 0.05 / abs(length(p *abs(sin(u_time)) ) - 0.8 + sin(a + u_time * 3.5) * 0.004); |
| Geoserver preview | |
| ================= | |
| - Openlayers + react? | |
| -> https://github.com/pka/ol3-react-example | |
| -> http://blog.sourcepole.ch/assets/2015/foss4g2015_ol3_react.pdf | |
| - http://dev.hel.fi/preview?layers=Seutu_tilastoalueet | |
| - https://github.com/City-of-Helsinki/geoserver-preview/tree/feature-react-refactor | |
| - http://dev.hel.fi/apis/ | |
| -> rekisteröinti? |
wget https://github.com/octalmage/robotjs/archive/v0.2.4.zip
unzip v0.2.4.zip
http://www.sitepoint.com/css3-starwars-scrolling-text/
Forked from Scott Bram's Pen Star Wars 3D Scrolling Text in CSS3 (with music).
Forked from Scott Bram's Pen Star Wars 3D Scrolling Text in CSS3 (with music).
A Pen by Captain Anonymous on CodePen.
| assert = require('assert') | |
| async = require('async') | |
| describe 'Test navigation widget', -> | |
| it 'Should contain top-level category "Terveys"', (done) -> | |
| wd = @wd | |
| mochaOptions = @mochaOptions | |
| browser = @browser | |
| asserters = wd.asserters | |
| browseButtonSelector = '//*[@id="browse-region"]' |