Updated: Just use qutebrowser (and disable javascript). The web is done for.
A mashup of Map Projection Distortions and transitions using the D3.js extended geographic projections plugin.
A comparison of map projections by four different types of distortion:
- Acc. 40° 150% – The Acceptance index is a numerical measure that summarizes overall projection distortion, in this case with a maximum angular distortion of 40° and areal distortion of up to 150%.
- Scale – The weighted mean error for overall scale distortion.
- Areal – The weighted mean error for areal distortion.
- Angular – The mean angular deformation index.
Lower is better. Data transcribed from the Natural Earth Projection by @mbostock.
Several of the programs I write for Sonic Pi push it fairly close to the limit when run on a Raspberry Pi. This note gives some tips on to how to maximise the performance on that platform. Of course, if you run Sonic Pi on Mac OSX,or a Windows PC then the performance is much better on these more powerful platforms and some of the issues may not arise.
By increasing the voltage applied to the Pi processor, and running it at a higher clock frequency than normal it is possible to achive significant gains in performance. The down side is that you may reduce the lifetime of your Pi. There are five levels that can be configured: None, Modest, Medium, High and Turbo. I routinely run my Raspberry Pis with Medium Overclocking and have noticed no ill effects on any of them.
If you wish to apply some over-clocking you do so by running the program raspi-config from the command line. Having logged on, from the command line before you start the gra
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Created by Christopher Manning
This is an experiment using a random walk to draw shapes. Adjusting theta results in a very organic or procedural drawing. The random walk stays in the geometry by using a point in polygon test.
Controls
/** | |
* clojurescript.plus.js: pre-compiled ClojureScript runtime + some libs | |
* | |
* ClojureScript version: 0.0-1889 | |
* | |
* Includes the following namespaces: | |
* - clojure.string, clojure.set, clojure.walk, clojure.zip, clojure.browser.repl | |
* - cljs.core.async, cljs.core.async.macros | |
* - jayq.core | |
* - crate.core |
<?php | |
// Use in the "Post-Receive URLs" section of your GitHub repo. | |
if ( $_POST['payload'] ) { | |
shell_exec( 'cd /srv/www/git-repo/ && git reset --hard HEAD && git pull' ); | |
} | |
?>hi |