幫你把立委在國會表決的結果畫成一目了然的圖表! Generated with http://bl.ocks.org/4248542
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
第四十一條 犯最重本刑為五年以下有期徒刑以下之刑之罪,而受六月以下有期徒刑或拘役之宣告者,得以新臺幣一千元、二千元或三千元折算一日,易科罰金。但易科罰金,難收矯正之效或難以維持法秩序者,不在此限。 | |
依前項規定得易科罰金而未聲請易科罰金者,得以提供社會勞動六小時折算一日,易服社會勞動。 | |
受六月以下有期徒刑或拘役之宣告,不符第一項易科罰金之規定者,得依前項折算規定,易服社會勞動。 | |
前二項之規定,因身心健康之關係,執行顯有困難者,或易服社會勞動,難收矯正之效或難以維持法秩序者,不適用之。 | |
第二項及第三項之易服社會勞動履行期間,不得逾一年。 | |
無正當理由不履行社會勞動,情節重大,或履行期間屆滿仍未履行完畢者,於第二項之情形應執行原宣告刑或易科罰金;於第三項之情形應執行原宣告刑。 | |
已繳納之罰金或已履行之社會勞動時數依所定之標準折算日數,未滿一日者,以一日論。 | |
第一項至第四項及第七項之規定,於數罪併罰之數罪得易科罰金或易服社會勞動,亦適用之。 | |
數罪併罰應執行之刑易服社會勞動者,其履行期間不得逾三年。但其應執行之刑未逾六月者,履行期間不得逾一年。 | |
數罪併罰應執行之刑易服社會勞動有第六項之情形者,應執行所定之執行刑,於數罪均得易科罰金者,另得易科罰金。 |
inspired by Legislator Voting Result (gist)
This simple force-directed graph shows character co-occurence in Les Misérables. A physical simulation of charged particles and springs places related characters in closer proximity, while unrelated characters are farther apart. Layout algorithm inspired by Tim Dwyer and Thomas Jakobsen. Data based on character coappearence in Victor Hugo's Les Misérables, compiled by Donald Knuth.
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
<html> | |
<head> | |
<title>Cyclic Sankeys</title> | |
<style type="text/css"> | |
#chart { | |
height: 500px; | |
} | |
.node rect { | |
cursor: move; |
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
#!/bin/bash | |
usage () | |
{ | |
cat <<UsageHERE | |
boot2docker-fwd -- Helper function to quickly manage port forwards between the boot2docker-vm and the host | |
Usage: boot2docker-fwd [ -n RULE_NAME ] [ -h HOST_PORT ] [ -p {tcp|udp} ] [ -i HOST_IP ] GUEST_PORT | |
or boot2docker-fwd -d RULE_NAME | |
or boot2docker-fwd -l | |
or boot2docker-fwd -A |
An example of some random hexagons from an integer-coordinates hexagonal tiling, rendered with a custom projection that makes hexagons appear regular.
The technique is taken from this Mike Bostock's example, and it makes use of 3x2 hexagons like this one:
-1 0 1 X
2 *
1 * *
0 * O *
-1 *