An extremely fast JavaScript bundler written in Go.
- public
- favicon.ico
- locales
- ...
An extremely fast JavaScript bundler written in Go.
// examples/webpack-example/src/app/Main.js | |
/** | |
* In this file, we create a React component | |
* which incorporates components providedby material-ui. | |
*/ | |
import React from 'react'; | |
import RaisedButton from 'material-ui/RaisedButton'; | |
import Dialog from 'material-ui/Dialog'; |
import mySaga from 'mySaga'; | |
import { take, fork, cancel } from 'redux-saga/effects'; | |
const sagas = [mySaga]; | |
export const CANCEL_SAGAS_HMR = 'CANCEL_SAGAS_HMR'; | |
function createAbortableSaga (saga) { | |
if (process.env.NODE_ENV === 'development') { | |
return function* main () { |
This line chart is constructed from a TSV file storing the daily average temperatures of New York, San Francisco and Austin over the last year. The chart employs conventional margins and a number of D3 features:
## pacman -v | |
Root : / | |
Conf File : /etc/pacman.conf | |
DB Path : /var/lib/pacman/ | |
Cache Dirs: /var/cache/pacman/pkg/ | |
Lock File : /var/lib/pacman/db.lck | |
Log File : /var/log/pacman.log | |
GPG Dir : /etc/pacman.d/gnupg/ | |
Targets : Nichts |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.link { | |
fill: none; | |
stroke: #666; | |
stroke-width: 1.5px; | |
} |
This example demonstrates how to rotate axis labels by 45° using post-selection. With funny bounce effect :)
This example demonstrates path interpolation using SVG's getPointAtLength feature. The source path and the target path are sampled uniformly using a configurable precision in pixels (here, 4px). During the transition, the path is replaced with a piecewise linear curve, or polyline, for easier interpolation. When the transition finishes, the path is restored to the original cubic Bézier. This technique is handy because it works for any path expressible with SVG's path data mini-language.
See also the circular shape tweening example.
diff --git a/xmonad.hs b/xmonad.hs | |
index fbf7b5e..4c8cef6 100644 | |
--- a/xmonad.hs | |
+++ b/xmonad.hs | |
@@ -23,6 +23,7 @@ import Control.Monad (filterM,liftM, join) | |
import Data.IORef | |
import Data.Monoid | |
import Data.List | |
+import Data.Bits | |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
font: 10px sans-serif; | |
} | |
.axis path, .axis line { | |
fill: none; |