gdritter repos lib-static / 61c129a
Made files more position-independent Getty Ritter 9 years ago
2623 changed file(s) with 52 addition(s) and 9154 deletion(s). Collapse all Expand all
11 # basic pages that will always exist:
22
3 pages=output/quotes/index.html output/quips/index.html \
4 output/links/index.html output/category/index.html \
5 output/index.html
3 # Maybe we want to override this?
4 OUTDIR=output
5 DATADIR=/home/getty/projects/lib-data
6
7 pages=$(OUTDIR)/quotes/index.html $(OUTDIR)/quips/index.html \
8 $(OUTDIR)/links/index.html $(OUTDIR)/category/index.html \
9 $(OUTDIR)/index.html
610
711 # We find all the stuff we want to generate...
8 quotes_src=$(wildcard data/quotes/*)
9 quips_src=$(wildcard data/quips/*)
10 links_src=$(wildcard data/links/*)
11 works_src=$(wildcard data/works/*/*)
12 quotes_src=$(wildcard $(DATADIR)/quotes/*)
13 quips_src=$(wildcard $(DATADIR)/quips/*)
14 links_src=$(wildcard $(DATADIR)/links/*)
15 works_src=$(notdir $(wildcard $(DATADIR)/works/*/*))
1216 cats_src=comics fascicles poems stories
1317
14 # and figure out what the output file will be called by matching
18 # and figure out what the $(OUTDIR) file will be called by matching
1519 # on the input file.
16 quotes_tgt=$(quotes_src:data/quotes/%=output/quotes/%/index.html)
17 quips_tgt=$(quips_src:data/quips/%=output/quips/%/index.html)
18 links_tgt=$(links_src:data/links/%=output/links/%/index.html)
19 cats_tgt=$(cats_src:%=output/category/%/index.html)
20 quotes_tgt=$(quotes_src:$(DATADIR)/quotes/%=$(OUTDIR)/quotes/%/index.html)
21 quips_tgt=$(quips_src:$(DATADIR)/quips/%=$(OUTDIR)/quips/%/index.html)
22 links_tgt=$(links_src:$(DATADIR)/links/%=$(OUTDIR)/links/%/index.html)
23 cats_tgt=$(cats_src:%=$(OUTDIR)/category/%/index.html)
2024
2125 # I'm doing this manually for now.
2226
2428 # 'works' (other writing) inside directories that correspond to their
2529 # kind, but don't want that in the output, so I can't straightforwardly
2630 # use patsubst like above: I'd have to write something like
27 # works_src:data/works/*/%=output/%/index.html
31 # works_src:$(DATADIR)/works/*/%=$(OUTDIR)/%/index.html
2832 # which doesn't work. I could also filter out all the known kinds of
2933 # works through other wildcard magic. instead, I just shell out to sed.
30 works_tgt=$(shell ( echo $(works_src) | sed -e 's/data\/works\/[A-Za-z0-9_-]*\/\([A-Za-z0-9_-]*\)/output\/\1\/index.html/g') )
34 works_tgt=$(works_src:%=$(OUTDIR)/%/index.html)
3135
32 # Maybe we want to override this?
33 OUTDIR=output
3436
3537 all: $(pages) $(quotes_tgt) $(quips_tgt) $(links_tgt) $(works_tgt) \
36 $(cats_tgt)
38 $(cats_tgt)
3739
3840 # A lot of these are boringly similar: probably should come up with a way of abstracting
3941 # this common pattern, but, y'know, Make...
4042
41 $(OUTDIR)/quotes/index.html: data/quotes/* templates/quote.mustache templates/main.mustache
43 $(OUTDIR)/quotes/index.html: $(DATADIR)/quotes/* templates/quote.mustache templates/main.mustache
4244 mkdir -p `dirname $@`
43 bin/quote.sh all >$@
45 bin/quote.sh $(DATADIR) all >$@
4446
45 $(OUTDIR)/quips/index.html: data/quotes/* templates/quote.mustache templates/main.mustache
47 $(OUTDIR)/quips/index.html: $(DATADIR)/quotes/* templates/quote.mustache templates/main.mustache
4648 mkdir -p `dirname $@`
47 bin/quip.sh all >$@
49 bin/quip.sh $(DATADIR) all >$@
4850
49 $(OUTDIR)/links/index.html: data/links/* templates/link.mustache templates/main.mustache
51 $(OUTDIR)/links/index.html: $(DATADIR)/links/* templates/link.mustache templates/main.mustache
5052 mkdir -p `dirname $@`
51 bin/link.sh all >$@
53 bin/link.sh $(DATADIR) all >$@
5254
53 $(OUTDIR)/quotes/%/index.html: data/quotes/% templates/quote.mustache templates/main.mustache
55 $(OUTDIR)/quotes/%/index.html: $(DATADIR)/quotes/% templates/quote.mustache templates/main.mustache
5456 mkdir -p `dirname $@`
55 bin/quote.sh $< >$@
57 bin/quote.sh $(DATADIR) $< >$@
5658
57 $(OUTDIR)/quips/%/index.html: data/quips/% templates/quote.mustache templates/main.mustache
59 $(OUTDIR)/quips/%/index.html: $(DATADIR)/quips/% templates/quote.mustache templates/main.mustache
5860 mkdir -p `dirname $@`
59 bin/quote.sh $< >$@
61 bin/quote.sh $(DATADIR) $< >$@
6062
61 $(OUTDIR)/links/%/index.html: data/links/% templates/link.mustache templates/main.mustache
63 $(OUTDIR)/links/%/index.html: $(DATADIR)/links/% templates/link.mustache templates/main.mustache
6264 mkdir -p `dirname $@`
63 bin/link.sh $< >$@
65 bin/link.sh $(DATADIR) $< >$@
6466
65 $(OUTDIR)/%/index.html: data/works/*/% templates/textpage.mustache templates/main.mustache
67 $(OUTDIR)/%/index.html: $(DATADIR)/works/*/% templates/textpage.mustache templates/main.mustache
6668 mkdir -p `dirname $@`
67 bin/work.sh $< >$@
69 bin/work.sh $(DATADIR) $< >$@
6870
69 $(OUTDIR)/category/%/index.html: data/works/% data/works/%/* templates/worklist.mustache templates/main.mustache
71 $(OUTDIR)/category/%/index.html: $(DATADIR)/works/% $(DATADIR)/works/%/* templates/worklist.mustache templates/main.mustache
7072 mkdir -p `dirname $@`
71 bin/category.sh $< >$@
73 bin/category.sh $(DATADIR) $< >$@
7274
7375 $(OUTDIR)/category/index.html: templates/worklist.mustache templates/main.mustache
7476 mkdir -p `dirname $@`
75 bin/all-categories.sh >$@
77 bin/all-categories.sh $(DATADIR) >$@
7678
7779 $(OUTDIR)/index.html: $(OUTDIR)/index/index.html
7880 cp $< $@
33 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44 PATH=$DIR:$PATH
55
6 cat data/works.json \
6 cat $1/works.json \
77 | jq '[.[] | { slug: ("category/" + .slug), name: .category }]' \
88 | json-dict works - \
99 | mustache - templates/worklist.mustache \
33 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44 PATH=$DIR:$PATH
55
6 SLUG=$(basename $1)
7 NAME=$(cat data/works.json | jq ".[] | select(.slug == \"$SLUG\").category")
6 SLUG=$(basename $2)
7 NAME=$(cat $1/works.json | jq ".[] | select(.slug == \"$SLUG\").category")
88 if [ "x$NAME" = "x" ]; then
99 echo "Unable to find category: $1" >&2
1010 exit 1
1111 fi
1212
13 json-list -c $1/*/metadata.yaml \
13 json-list -c $2/*/metadata.yaml \
1414 | json-dict works - \
1515 | mustache - templates/worklist.mustache \
1616 | json-dict title $NAME contents - \
33 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44 PATH=$DIR:$PATH
55
6 if [ "$1" = "all" ]; then
7 ARGS="data/links/*"
6 if [ "$2" = "all" ]; then
7 ARGS="$1/links/*"
88 FOCUS=false
99 else
10 ARGS="$1"
10 ARGS="$2"
1111 FOCUS=true
1212 fi
1313 COPY="whaa"
33 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44 PATH=$DIR:$PATH
55
6 if [ "$1" = "all" ]; then
7 ARGS="data/quips/*"
6 if [ "$2" = "all" ]; then
7 ARGS="$1/quips/*"
88 FOCUS=false
99 else
10 ARGS="$1"
10 ARGS="$2"
1111 FOCUS=true
1212 fi
1313 COPY="the quips are not mine (all rights reversed)"
1 #!/bin/sh
1 #!/bin/sh -e
22
33 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44 PATH=$DIR:$PATH
55
6 if [ "$1" = "all" ]; then
7 ARGS="data/quotes/*"
6 if [ "$2" = "all" ]; then
7 ARGS="$1/quotes/*"
88 FOCUS=false
99 else
10 ARGS="$1"
10 ARGS="$2"
1111 FOCUS=true
1212 fi
1313 COPY="all quotes used under fair use &c &c"
33 DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
44 PATH=$DIR:$PATH
55
6 pandoc $1/text \
6 pandoc $2/text \
77 | json-dict contents - \
88 | mustache - templates/textpage.mustache \
9 | json-dict title "$(cat $1/metadata.yaml | jq '.name')" contents - \
9 | json-dict title "$(cat $2/metadata.yaml | jq '.name')" contents - \
1010 | mustache - templates/main.mustache
+0
-3
data/links/000775fe-3022-4815-b39e-99834b14974b less more
1 id: 000775fe-3022-4815-b39e-99834b14974b
2 url: http://www.hummingbirdnotation.com/
3 name: Hummingbird Music Notation
+0
-3
data/links/004619d7-0303-4d0f-821b-b452ec8de4a0 less more
1 id: 004619d7-0303-4d0f-821b-b452ec8de4a0
2 url: http://web.archive.org/web/20140527120939/http://www.greencine.com/static/primers/
3 name: GreenCine genre primers
+0
-3
data/links/004ecaca-880e-4bfd-b7e6-fcd84191c09d less more
1 id: 004ecaca-880e-4bfd-b7e6-fcd84191c09d
2 url: http://www.rvb.ru/pushkin/01text/01versus/0423_36/1828/0461.htm
3 name: Ты и Вы — Pushkin
+0
-2
data/links/005ba4a0-1fc8-4bc8-b5ad-3de0d3a8b6f7 less more
1 id: 005ba4a0-1fc8-4bc8-b5ad-3de0d3a8b6f7
2 url: http://www.evilmadscientist.com/2013/basics-roundup/
+0
-3
data/links/00632c4d-3aef-4e8e-8bc7-5c92b3ad02a4 less more
1 id: 00632c4d-3aef-4e8e-8bc7-5c92b3ad02a4
2 url: http://twan.home.fmf.nl/blog/haskell/Nonograms.details
3 name: Solving Nonograms in Haskell
+0
-2
data/links/00967205-8677-446f-bfa2-1bdcd0e2d147 less more
1 id: 00967205-8677-446f-bfa2-1bdcd0e2d147
2 url: http://www.instructables.com/id/Shoot-the-Rainbow-Skittles-Vodka/?ALLSTEPS
+0
-4
data/links/01249345-54fb-4a21-9f3c-0b9f4ea62fb4 less more
1 id: 01249345-54fb-4a21-9f3c-0b9f4ea62fb4
2 url: http://web.archive.org/web/20081230215729/http://www.sfu.ca/~achanne/projects/bookbinding
3 name: How To Make A Hardcover Book
4 description: (broken pictures)
+0
-3
data/links/012847a1-90b4-4413-be0f-c2e6324a28d0 less more
1 id: 012847a1-90b4-4413-be0f-c2e6324a28d0
2 url: http://nitens.org/taraborelli/latex/
3 name: The Beauty of LaTeX
+0
-2
data/links/01ec68fe-2598-4668-8656-ac5300be425c less more
1 id: 01ec68fe-2598-4668-8656-ac5300be425c
2 url: http://www.hackszine.com/blog/archive/2007/11/howto_use_rich_fonts_in_your_w.html?CMP=OTC-7G2N43923558
+0
-2
data/links/01f958fb-b95b-4f5a-bb52-a310f4d7a2b3 less more
1 id: 01f958fb-b95b-4f5a-bb52-a310f4d7a2b3
2 url: http://www.cato-unbound.org/2010/09/08/james-c-scott/the-trouble-with-the-view-from-above/
+0
-2
data/links/02322c8d-6a60-4e6b-befe-cb4eeba1a0ed less more
1 id: 02322c8d-6a60-4e6b-befe-cb4eeba1a0ed
2 url: http://www.adventures-in-cooking.com/2012/11/diy-bitters-part-i.html
+0
-2
data/links/02431998-ebcd-4bf5-893e-df27423c4a3d less more
1 id: 02431998-ebcd-4bf5-893e-df27423c4a3d
2 url: http://www.instructables.com/id/Electric-Mountain-Board/?ALLSTEPS
+0
-2
data/links/0260953f-d06e-42cc-a4d1-43a207b0ea5b less more
1 id: 0260953f-d06e-42cc-a4d1-43a207b0ea5b
2 url: http://archive.vector.org.uk/art10500710
+0
-2
data/links/027b9a26-39e2-442e-81b2-0cdfdb204a37 less more
1 id: 027b9a26-39e2-442e-81b2-0cdfdb204a37
2 url: http://www.printplaygames.com/
+0
-2
data/links/029f944e-0eb6-4074-997a-52bceeb66556 less more
1 id: 029f944e-0eb6-4074-997a-52bceeb66556
2 url: http://www.niell.org/office_amp.html
+0
-2
data/links/02b88d0b-f944-44ae-b55f-c3d904c21a03 less more
1 id: 02b88d0b-f944-44ae-b55f-c3d904c21a03
2 url: http://www.pekaro.de/blender/water/water_tutorial.html
+0
-2
data/links/02fbbe47-59db-4cd8-89d0-729ded435503 less more
1 id: 02fbbe47-59db-4cd8-89d0-729ded435503
2 url: http://lifehacker.com/359389/give-an-old-laptop-new-life-with-cheap-or-free-projects
+0
-2
data/links/031d1f8d-f98d-4431-8d9a-395205414cd1 less more
1 id: 031d1f8d-f98d-4431-8d9a-395205414cd1
2 url: http://matrixsynth.blogspot.com/2007/09/solartron-atari-axe-synth-theremin.html
+0
-2
data/links/0326d1ba-09ae-43c6-a27f-3dc8d94ec1e7 less more
1 id: 0326d1ba-09ae-43c6-a27f-3dc8d94ec1e7
2 url: https://medium.com/geek-empire-1/a1ebd2b4a0e5
+0
-2
data/links/03322e1f-9223-4703-ad6b-06ab84f8d7cd less more
1 id: 03322e1f-9223-4703-ad6b-06ab84f8d7cd
2 url: http://weburbanist.com/2009/09/07/art-meets-storytelling-15-amazing-illustrators/
+0
-2
data/links/0347ff1b-2993-4563-9318-e21903ddaed3 less more
1 id: 0347ff1b-2993-4563-9318-e21903ddaed3
2 url: http://www.youtube.com/watch?v=EXPcBI4CJc8
+0
-2
data/links/034c706f-2d41-4735-a84c-3d0775040ddf less more
1 id: 034c706f-2d41-4735-a84c-3d0775040ddf
2 url: http://www.fubiz.net/2010/04/12/amose/
+0
-2
data/links/034e8ec1-9295-441c-905d-87c3ec604823 less more
1 id: 034e8ec1-9295-441c-905d-87c3ec604823
2 url: http://www.buttercupfestival.com/113vol4.htm
+0
-2
data/links/036ce0da-bbdf-4d7d-b453-d2d1f4970bb8 less more
1 id: 036ce0da-bbdf-4d7d-b453-d2d1f4970bb8
2 url: http://makezine.com/2012/04/13/cnc-panel-joinery-notebook/
+0
-2
data/links/03b723f6-9231-4037-9380-15334af05295 less more
1 id: 03b723f6-9231-4037-9380-15334af05295
2 url: http://owlboygame.com/
+0
-2
data/links/03c38e92-7043-42b9-85b7-cea7be5553d9 less more
1 id: 03c38e92-7043-42b9-85b7-cea7be5553d9
2 url: http://www-cs-students.stanford.edu/~amitp/gameprog.html
+0
-2
data/links/03cbb730-ddc5-4aa1-a1c7-b1f8f3804bbc less more
1 id: 03cbb730-ddc5-4aa1-a1c7-b1f8f3804bbc
2 url: http://open-rtms.sourceforge.net/
+0
-2
data/links/03ce9e12-be61-4712-a8d1-2cb2f6cec727 less more
1 id: 03ce9e12-be61-4712-a8d1-2cb2f6cec727
2 url: http://sourceforge.net/projects/xviservicethief/
+0
-2
data/links/043870ac-fdec-41ad-827c-ffea5d42a742 less more
1 id: 043870ac-fdec-41ad-827c-ffea5d42a742
2 url: http://en.wikipedia.org/wiki/French_Republican_Calendar
+0
-2
data/links/0449041b-0186-4e84-937d-d200bd50b3bc less more
1 id: 0449041b-0186-4e84-937d-d200bd50b3bc
2 url: http://www.howardzzh.com/research/terrain/doc/terrain_TVCG2007_lowres.pdf
+0
-2
data/links/04586b59-7555-40bc-8001-6ddd57033d4b less more
1 id: 04586b59-7555-40bc-8001-6ddd57033d4b
2 url: http://arbesman.net/milkyway/
+0
-2
data/links/04663681-edba-4c6b-abbf-8bd1ce285590 less more
1 id: 04663681-edba-4c6b-abbf-8bd1ce285590
2 url: http://imgur.com/a/UlfIu
+0
-2
data/links/04b4e984-408c-41d7-983e-b2c9aacc9b65 less more
1 id: 04b4e984-408c-41d7-983e-b2c9aacc9b65
2 url: http://xkcd.com/comics/jacket.jpg
+0
-2
data/links/04e9747e-082d-43d7-a59a-e7b1551bec4a less more
1 id: 04e9747e-082d-43d7-a59a-e7b1551bec4a
2 url: http://www.instructables.com/id/EIHYB1I6J4EX50318B/
+0
-2
data/links/04f256af-c272-4947-afdf-4e46580e24b5 less more
1 id: 04f256af-c272-4947-afdf-4e46580e24b5
2 url: http://www.ectomo.com/index.php/2008/03/07/noise-du-jour-this-device-has-been-modified-by-victims-of-science/
+0
-2
data/links/04f87f1e-0242-4e02-9565-32d42482a00b less more
1 id: 04f87f1e-0242-4e02-9565-32d42482a00b
2 url: http://www.readability.com/articles/08lkutub?legacy_bookmarklet=1
+0
-2
data/links/05305912-da66-4abb-8c14-4860218df30c less more
1 id: 05305912-da66-4abb-8c14-4860218df30c
2 url: http://www.erasing.org/2008/07/25/sheik
+0
-2
data/links/055b5327-454f-4d9f-9653-e7a3b40807b5 less more
1 id: 055b5327-454f-4d9f-9653-e7a3b40807b5
2 url: http://idrawgirls.blogspot.com/
+0
-2
data/links/056e7d56-f51b-47a0-8141-7fe9a8161cc7 less more
1 id: 056e7d56-f51b-47a0-8141-7fe9a8161cc7
2 url: http://news.ycombinator.com/item?id=1142292
+0
-2
data/links/057c5021-ccb0-4db7-b4d1-1af053b4b420 less more
1 id: 057c5021-ccb0-4db7-b4d1-1af053b4b420
2 url: http://www.w3.org/DesignIssues/MatrixURIs.html
+0
-2
data/links/05bc4e82-88b5-42b1-9eca-e7a5455344b1 less more
1 id: 05bc4e82-88b5-42b1-9eca-e7a5455344b1
2 url: http://www.anti-shurtugal.com/wordpress/?page_id=11
+0
-2
data/links/05f7f8ca-93d6-43a5-a0f3-bd13e5f6dae7 less more
1 id: 05f7f8ca-93d6-43a5-a0f3-bd13e5f6dae7
2 url: http://tunes.org/~iepos/joy.html
+0
-2
data/links/060d0627-19d5-475d-8d00-8c3e6aa11edd less more
1 id: 060d0627-19d5-475d-8d00-8c3e6aa11edd
2 url: http://cherrypeel.com/
+0
-2
data/links/06957408-45a6-4cb5-91c7-b774dce26cdc less more
1 id: 06957408-45a6-4cb5-91c7-b774dce26cdc
2 url: http://www.ashedryden.com/blog/ashes-favorite-books-of-2014?u
+0
-2
data/links/06beedb8-0f3a-477f-9226-cb24cf6ff323 less more
1 id: 06beedb8-0f3a-477f-9226-cb24cf6ff323
2 url: http://www.props.eric-hart.com/resources/the-100-best-sites-for-the-prop-maker/
+0
-2
data/links/06c84ec6-05ba-4f9a-8974-46928822bdd4 less more
1 id: 06c84ec6-05ba-4f9a-8974-46928822bdd4
2 url: http://uggly.tumblr.com/post/80025895238/knapp-the-post-war-collection-a-w-2012-2013
+0
-2
data/links/0700b1e5-5dce-4bcf-a180-3ebbcf64a5ef less more
1 id: 0700b1e5-5dce-4bcf-a180-3ebbcf64a5ef
2 url: http://lifehacker.com/400505/rotate-desktop-backgrounds-in-ubuntu
+0
-2
data/links/0701e7a1-a645-4bad-b8fe-1bd57eac0a26 less more
1 id: 0701e7a1-a645-4bad-b8fe-1bd57eac0a26
2 url: http://home.comcast.net/~anton.solovyev/linux-on-clie/linux-on-clie.html
+0
-2
data/links/07200229-2b35-433b-8667-21eaeaebefe8 less more
1 id: 07200229-2b35-433b-8667-21eaeaebefe8
2 url: http://golem.ph.utexas.edu/category/
+0
-2
data/links/0779378b-54c0-439a-9689-6384aa59f554 less more
1 id: 0779378b-54c0-439a-9689-6384aa59f554
2 url: https://medium.com/message/everything-is-broken-81e5f33a24e1
+0
-2
data/links/078230ba-e124-4cf2-bc11-8c21a17df3e0 less more
1 id: 078230ba-e124-4cf2-bc11-8c21a17df3e0
2 url: https://github.com/aidin36/tocc
+0
-2
data/links/07976c16-16e4-4a2a-b9a9-74069428b972 less more
1 id: 07976c16-16e4-4a2a-b9a9-74069428b972
2 url: http://sciencecareers.sciencemag.org/career_magazine/previous_issues/articles/2011_02_04/caredit.a1100011
+0
-2
data/links/07c79077-d965-4064-95af-35499ada1397 less more
1 id: 07c79077-d965-4064-95af-35499ada1397
2 url: http://pdos.csail.mit.edu/exo/
+0
-2
data/links/07da37a1-3ece-4e59-8e7a-8f16864744be less more
1 id: 07da37a1-3ece-4e59-8e7a-8f16864744be
2 url: http://www.musopen.com/
+0
-2
data/links/07e7888f-8e42-479c-bc55-3ac3d0e08170 less more
1 id: 07e7888f-8e42-479c-bc55-3ac3d0e08170
2 url: http://www.homeenergy.se/vindkraft.aspx
+0
-2
data/links/080c17e3-c5ac-4b79-9e39-657d24794818 less more
1 id: 080c17e3-c5ac-4b79-9e39-657d24794818
2 url: http://xmppflask.org/index.html
+0
-2
data/links/0810abed-e903-4af6-9874-9c91214c2c40 less more
1 id: 0810abed-e903-4af6-9874-9c91214c2c40
2 url: http://www.fourmilab.ch/hackdiet/e4/
+0
-2
data/links/0826a970-9727-4bb2-9f29-4bdc4c1b81f1 less more
1 id: 0826a970-9727-4bb2-9f29-4bdc4c1b81f1
2 url: http://dohistory.org/on_your_own/toolkit/writing.html
+0
-2
data/links/0841b36d-ec0c-4323-ba5a-eb6b395bb295 less more
1 id: 0841b36d-ec0c-4323-ba5a-eb6b395bb295
2 url: http://mumble.net/~jar/articles/language-manifesto.html
+0
-2
data/links/08fcea37-fe42-4b22-9be6-d4332a2d73ab less more
1 id: 08fcea37-fe42-4b22-9be6-d4332a2d73ab
2 url: http://simulatedcomicproduct.com/boxen/
+0
-2
data/links/09277485-2f87-446f-8b7a-91a57d495013 less more
1 id: 09277485-2f87-446f-8b7a-91a57d495013
2 url: http://individual.utoronto.ca/markfederman/article_mediumisthemessage.htm
+0
-2
data/links/0982b2dd-2c0e-4f18-b83d-a9ae7a40bbd1 less more
1 id: 0982b2dd-2c0e-4f18-b83d-a9ae7a40bbd1
2 url: http://ogden.basic-english.org/words.html
+0
-2
data/links/09dd9fc3-b466-4a00-8cf5-79a741f5b512 less more
1 id: 09dd9fc3-b466-4a00-8cf5-79a741f5b512
2 url: http://www.zombietime.com/sf_anti-war_rally_oct_27_2007/the_republican_anti-war_march/
+0
-2
data/links/09f2fac4-1a3d-4458-9ba4-5017b978bbd8 less more
1 id: 09f2fac4-1a3d-4458-9ba4-5017b978bbd8
2 url: http://www.decluttered.com/
+0
-2
data/links/0a032e47-5920-4369-9141-29b11ab1ba40 less more
1 id: 0a032e47-5920-4369-9141-29b11ab1ba40
2 url: http://vectortuts.com/illustration/how-to-create-a-see-through-information-graphic/
+0
-2
data/links/0a2f66d9-ccd1-4ebe-bc0f-7de20443564d less more
1 id: 0a2f66d9-ccd1-4ebe-bc0f-7de20443564d
2 url: http://sup.rubyforge.org/
+0
-2
data/links/0a490129-153d-474b-970f-81499cd263a2 less more
1 id: 0a490129-153d-474b-970f-81499cd263a2
2 url: http://m.assetbar.com/achewood/uuagbx5Zq
+0
-2
data/links/0a917ced-e635-4a78-8412-34ccd53a62d5 less more
1 id: 0a917ced-e635-4a78-8412-34ccd53a62d5
2 url: http://en.qi-hardware.com/wiki/Ben_NanoNote
+0
-2
data/links/0a928d4d-752a-4436-ba52-c44c04154f7d less more
1 id: 0a928d4d-752a-4436-ba52-c44c04154f7d
2 url: http://www.rudimentsofwisdom.com/default.htm
+0
-2
data/links/0acc1e71-48f6-472d-95ff-c4269bb66869 less more
1 id: 0acc1e71-48f6-472d-95ff-c4269bb66869
2 url: http://minimalistorgy.blogspot.com/2010/12/100-best-chinese-movies.html
+0
-2
data/links/0aed8097-da37-483a-8a89-8d0aa1b4b102 less more
1 id: 0aed8097-da37-483a-8a89-8d0aa1b4b102
2 url: http://intuitionistic.org/
+0
-2
data/links/0b086999-e54d-43f1-9210-b338d6bcf4c3 less more
1 id: 0b086999-e54d-43f1-9210-b338d6bcf4c3
2 url: http://www.hackszine.com/blog/archive/2008/07/_alternate_data_streams_in.html?CMP=OTC-7G2N43923558
+0
-2
data/links/0b46fc57-e202-43c4-a259-f3475a19b26d less more
1 id: 0b46fc57-e202-43c4-a259-f3475a19b26d
2 url: http://lumma.org/music/theory/notation/
+0
-2
data/links/0b4c5110-6854-46fc-a55a-221672a960c5 less more
1 id: 0b4c5110-6854-46fc-a55a-221672a960c5
2 url: http://www.bobsredmill.com/recipes.php?recipe=751
+0
-2
data/links/0b5c38d0-b351-4832-a6db-7ffdc182c944 less more
1 id: 0b5c38d0-b351-4832-a6db-7ffdc182c944
2 url: http://www.youtube.com/watch?v=KHEIvF1U4PM&amp;feature=related
+0
-2
data/links/0b674647-759c-44b1-a567-07b2458ecf97 less more
1 id: 0b674647-759c-44b1-a567-07b2458ecf97
2 url: http://www.keithsmithbooks.com/index.htm
+0
-2
data/links/0b76f33a-f9ef-4b4c-9e96-276fedace3a1 less more
1 id: 0b76f33a-f9ef-4b4c-9e96-276fedace3a1
2 url: http://blog.wired.com/games/2007/10/complete-your-b.html
+0
-2
data/links/0b9267ea-7a41-488d-888e-348e8b43f8e8 less more
1 id: 0b9267ea-7a41-488d-888e-348e8b43f8e8
2 url: http://www.hacknmod.com/displayMOD.php?hack=1538
+0
-2
data/links/0b92f93c-d094-45a8-a7d4-b14bcc77ba72 less more
1 id: 0b92f93c-d094-45a8-a7d4-b14bcc77ba72
2 url: http://larrysanger.org/2011/06/is-there-a-new-geek-anti-intellectualism/
+0
-2
data/links/0ba6252b-3fe5-4a47-899c-04482761cfa5 less more
1 id: 0ba6252b-3fe5-4a47-899c-04482761cfa5
2 url: http://omgthatdress.tumblr.com/
+0
-3
data/links/0bc652ff-056b-4660-9489-489b512b7dcc less more
1 id: 0bc652ff-056b-4660-9489-489b512b7dcc
2 url: http://chocolateandzucchini.com/archives/2009/02/homemade_vanilla_extract.php
3 name: Homemade Vanilla Extract
+0
-2
data/links/0c0077ab-a942-45f4-b89a-47c1cd35e3db less more
1 id: 0c0077ab-a942-45f4-b89a-47c1cd35e3db
2 url: http://teddziuba.com/2008/09/a-web-os-are-you-dense.html
+0
-2
data/links/0c2624b3-da47-490e-b99f-92320f0bd1a7 less more
1 id: 0c2624b3-da47-490e-b99f-92320f0bd1a7
2 url: http://weblog.raganwald.com/2006/11/first-seven-books-i-would-buy-if-my_17.html
+0
-2
data/links/0c528663-326c-4929-99b4-a33f99c82794 less more
1 id: 0c528663-326c-4929-99b4-a33f99c82794
2 url: http://i.imgur.com/yan6r.png
+0
-2
data/links/0cb7fb95-77b4-4fc9-9dff-98d498184ec6 less more
1 id: 0cb7fb95-77b4-4fc9-9dff-98d498184ec6
2 url: http://www.youtube.com/watch?v=c1fWLDauug0&amp;NR=1
+0
-2
data/links/0cd39098-dc4b-4e60-b5ce-9f886457fe87 less more
1 id: 0cd39098-dc4b-4e60-b5ce-9f886457fe87
2 url: http://blog.makezine.com/archive/2008/05/diy_biodiesel_processor.html?CMP=OTC-0D6B48984890
+0
-2
data/links/0cee35f5-2de5-43c9-9abc-1ad175ef59e7 less more
1 id: 0cee35f5-2de5-43c9-9abc-1ad175ef59e7
2 url: http://en.wikipedia.org/wiki/NewLISP
+0
-2
data/links/0d19560a-e3f8-4f6c-aa27-b660d4547657 less more
1 id: 0d19560a-e3f8-4f6c-aa27-b660d4547657
2 url: http://hackedgadgets.com/2009/01/14/electric-trike/
+0
-2
data/links/0d662799-2d29-4b0f-bf11-5ec7cb8d3b22 less more
1 id: 0d662799-2d29-4b0f-bf11-5ec7cb8d3b22
2 url: http://www.cowlark.com/2009-11-15-go/
+0
-2
data/links/0d73273a-9ce0-4762-abf7-05fd56b8a0ce less more
1 id: 0d73273a-9ce0-4762-abf7-05fd56b8a0ce
2 url: http://eliterature.org/pad/afb.html
+0
-2
data/links/0d989501-0f4b-4b1c-9c18-654b1fa82b4f less more
1 id: 0d989501-0f4b-4b1c-9c18-654b1fa82b4f
2 url: http://www.instructables.com/files/deriv/FQI/A8HN/FEL1NO3S/FQIA8HNFEL1NO3S.THUMB.jpg
+0
-2
data/links/0da2c286-c6a7-48f1-83a5-2f8dda713963 less more
1 id: 0da2c286-c6a7-48f1-83a5-2f8dda713963
2 url: http://www.antilabelblog.com/?p=288
+0
-2
data/links/0db60af3-584a-4c7b-8564-50ad043e1575 less more
1 id: 0db60af3-584a-4c7b-8564-50ad043e1575
2 url: http://www.colorhexa.com/
+0
-2
data/links/0dc1be4d-3254-4e02-b0e0-24875e51315f less more
1 id: 0dc1be4d-3254-4e02-b0e0-24875e51315f
2 url: http://www.techsupportforum.com/hardware-support/laptop-support/146002-dell-laptop-keyboard-problems.html
+0
-2
data/links/0df3b217-218a-4754-8603-82d8cc8c25b4 less more
1 id: 0df3b217-218a-4754-8603-82d8cc8c25b4
2 url: http://www.fantasticmetropolis.com/i/division/full/
+0
-2
data/links/0eaefcd5-c220-4274-9797-7a546f13a81c less more
1 id: 0eaefcd5-c220-4274-9797-7a546f13a81c
2 url: http://napkinlaf.sourceforge.net/
+0
-2
data/links/0eb66ee0-0001-4aed-b1a5-c2a4046dd79f less more
1 id: 0eb66ee0-0001-4aed-b1a5-c2a4046dd79f
2 url: http://youtube.com/watch?v=CqDE8kocoTI
+0
-2
data/links/0ed6de7e-67e0-4fd8-bf97-c8aa24defaef less more
1 id: 0ed6de7e-67e0-4fd8-bf97-c8aa24defaef
2 url: http://itre.cis.upenn.edu/~myl/languagelog/archives/003998.html
+0
-2
data/links/0eee65fa-b19a-4ab3-81b6-1510182e3f7e less more
1 id: 0eee65fa-b19a-4ab3-81b6-1510182e3f7e
2 url: http://c2.com/cgi/wiki
+0
-2
data/links/0fcc6f6b-be3d-4653-a741-f648f439b8f9 less more
1 id: 0fcc6f6b-be3d-4653-a741-f648f439b8f9
2 url: http://pyopengl.sourceforge.net/documentation/index.html
+0
-2
data/links/0feeea7c-aa57-46da-ad67-1a61497a6342 less more
1 id: 0feeea7c-aa57-46da-ad67-1a61497a6342
2 url: http://www.bzg.fr/emacs-strip-tease.html
+0
-2
data/links/102106ff-431e-42d1-b2b1-8868b1424a55 less more
1 id: 102106ff-431e-42d1-b2b1-8868b1424a55
2 url: http://ansuz.sooke.bc.ca/lawpoli/colour/2004061001.php
+0
-2
data/links/1021f7e7-b0d7-4d3e-b9b6-4e571ca089be less more
1 id: 1021f7e7-b0d7-4d3e-b9b6-4e571ca089be
2 url: http://www.arcadianvisions.com/blog/?p=388
+0
-2
data/links/105e6c4b-b133-4135-aaab-5bf0f45a9983 less more
1 id: 105e6c4b-b133-4135-aaab-5bf0f45a9983
2 url: http://www.youtube.com/watch?v=0awjPUkBXOU
+0
-2
data/links/1098d73e-54f2-4030-842b-8fbf5a4673f9 less more
1 id: 1098d73e-54f2-4030-842b-8fbf5a4673f9
2 url: http://tunes.org/papers/WhyNewOS/WhyNewOS.html#htoc36
+0
-2
data/links/10be536b-a3ff-44db-9504-7db98c882b07 less more
1 id: 10be536b-a3ff-44db-9504-7db98c882b07
2 url: http://hackaddict.blogspot.com/2007/06/tutorial-itunes-on-wii-for-free.html
+0
-2
data/links/10c168da-9362-4b28-bf26-c3c5d8769b6e less more
1 id: 10c168da-9362-4b28-bf26-c3c5d8769b6e
2 url: http://nixos.org/nixos/
+0
-2
data/links/10cf1562-8c4f-4456-8819-b54ab0b7bf06 less more
1 id: 10cf1562-8c4f-4456-8819-b54ab0b7bf06
2 url: http://www.flickr.com/photos/lodefink/2252101998/in/pool-make
+0
-2
data/links/10e0c45a-973a-4306-9fbf-beb6d106351d less more
1 id: 10e0c45a-973a-4306-9fbf-beb6d106351d
2 url: http://babelstone.blogspot.de/2006/06/rules-for-long-s.html
+0
-2
data/links/10ebe450-e75d-4051-be62-de0aa6b04e9e less more
1 id: 10ebe450-e75d-4051-be62-de0aa6b04e9e
2 url: http://llemarie.wordpress.com/2007/09/29/project-wired-to-wireless-headphones/
+0
-2
data/links/1148dbf0-dbbd-4bb6-9313-c421a20d110b less more
1 id: 1148dbf0-dbbd-4bb6-9313-c421a20d110b
2 url: http://repository.tamu.edu/bitstream/handle/1969.1/4401/etd-tamu-2006B-CPSC-ong.pdf?sequence=1
+0
-2
data/links/116c12ae-1985-4292-9c27-299c1534b0ae less more
1 id: 116c12ae-1985-4292-9c27-299c1534b0ae
2 url: http://www.cdburnerxp.se/home
+0
-2
data/links/11741fce-643f-4740-8a0d-b95d7f6e299d less more
1 id: 11741fce-643f-4740-8a0d-b95d7f6e299d
2 url: http://pcaro.es/p/hermit
+0
-2
data/links/11d1184b-59c9-46bd-bb92-a462415a0f49 less more
1 id: 11d1184b-59c9-46bd-bb92-a462415a0f49
2 url: http://www.flickr.com/photos/ninthwavedesigns/sets/927874/
+0
-2
data/links/11d94cbc-042c-4c68-a56e-efaafc10937f less more
1 id: 11d94cbc-042c-4c68-a56e-efaafc10937f
2 url: http://blog.selector.com/nz/2010/08/09/deconstructive-origami/
+0
-2
data/links/123f6167-768a-4730-9792-02814ec18ce0 less more
1 id: 123f6167-768a-4730-9792-02814ec18ce0
2 url: http://terralang.org/
+0
-2
data/links/12887ab5-49bf-4072-934e-a8bbc0225dc9 less more
1 id: 12887ab5-49bf-4072-934e-a8bbc0225dc9
2 url: http://stevelosh.com/blog/2013/09/teach-dont-tell/
+0
-2
data/links/12db6a8e-72d3-4cc6-bd6b-c1c479875dfb less more
1 id: 12db6a8e-72d3-4cc6-bd6b-c1c479875dfb
2 url: http://www.oxfordsymposium.org.uk/proceedings/downloads/
+0
-2
data/links/132d311d-82d3-4216-a7bf-36d287ea7e95 less more
1 id: 132d311d-82d3-4216-a7bf-36d287ea7e95
2 url: http://ltheory.com/
+0
-2
data/links/133ae63e-93a4-4759-86b2-47aab41ff696 less more
1 id: 133ae63e-93a4-4759-86b2-47aab41ff696
2 url: http://code.google.com/edu/languages/google-python-class/
+0
-2
data/links/135ca8ef-245c-4cc3-a3f7-4f1f74c7cb8e less more
1 id: 135ca8ef-245c-4cc3-a3f7-4f1f74c7cb8e
2 url: http://www.geocities.com/Heartland/Ranch/2426/chicken.html
+0
-2
data/links/1361b951-eb87-47ba-b301-b9d2d0d72ab3 less more
1 id: 1361b951-eb87-47ba-b301-b9d2d0d72ab3
2 url: http://www.ziaspace.com/ZIA/sections/music.html
+0
-2
data/links/13d6ea50-6358-42e6-9ae9-ca57c0366c92 less more
1 id: 13d6ea50-6358-42e6-9ae9-ca57c0366c92
2 url: http://www.thewallflowerreport.com/
+0
-2
data/links/141363b0-3d5a-4707-9237-c5f52f52c799 less more
1 id: 141363b0-3d5a-4707-9237-c5f52f52c799
2 url: http://www.forthworks.com/retro/
+0
-2
data/links/1424e7af-7f36-4faf-a82c-98e4c28c7615 less more
1 id: 1424e7af-7f36-4faf-a82c-98e4c28c7615
2 url: http://cthulhuchick.com/free-complete-lovecraft-ebook-nook-kindle/
+0
-2
data/links/1454ec7f-2e8c-4566-b504-5c551e820517 less more
1 id: 1454ec7f-2e8c-4566-b504-5c551e820517
2 url: http://www.mactech.com/articles/mactech/Vol.10/10.10/LearningSmalltalk/
+0
-2
data/links/145df10e-98c5-4b0a-908c-5ea304b34e63 less more
1 id: 145df10e-98c5-4b0a-908c-5ea304b34e63
2 url: http://en.wikipedia.org/wiki/General_semantics
+0
-2
data/links/14d16655-b49a-4188-a79d-5a2750741bd1 less more
1 id: 14d16655-b49a-4188-a79d-5a2750741bd1
2 url: http://ryan-a.tumblr.com/post/1325972211/nif01
+0
-2
data/links/14ee5bdc-a2b6-44e2-85d2-454dd3d4f14d less more
1 id: 14ee5bdc-a2b6-44e2-85d2-454dd3d4f14d
2 url: http://www.economist.com/node/17647627?story_id=17647627
+0
-2
data/links/1533553e-eee9-494d-ba4b-4b748da9c935 less more
1 id: 1533553e-eee9-494d-ba4b-4b748da9c935
2 url: http://web.yl.is.s.u-tokyo.ac.jp/~furuse/gcaml/
+0
-2
data/links/1541547d-b535-491c-9172-94d853473182 less more
1 id: 1541547d-b535-491c-9172-94d853473182
2 url: http://aquasixio.deviantart.com/art/Beneath-other-skies-36510628
+0
-2
data/links/155adb38-cd85-4904-a143-5f4905ef3285 less more
1 id: 155adb38-cd85-4904-a143-5f4905ef3285
2 url: http://www.mostlymaths.net/2011/01/diy-origami-notebook-to-keep-in-your.html
+0
-2
data/links/1577ebb0-faba-4575-8981-bdcc5a94de85 less more
1 id: 1577ebb0-faba-4575-8981-bdcc5a94de85
2 url: http://www.biteycastle.com/
+0
-2
data/links/1594017c-e690-4090-a2d5-c9ff3e5ecd19 less more
1 id: 1594017c-e690-4090-a2d5-c9ff3e5ecd19
2 url: http://rpg.drivethrustuff.com/product/98901/USR-%28Unbelievably-Simple-Role-playing%29
+0
-2
data/links/15a59885-2cd9-4b07-8188-5f03988282ca less more
1 id: 15a59885-2cd9-4b07-8188-5f03988282ca
2 url: http://www.terrorisland.net/strips/102.html
+0
-2
data/links/15ab9154-0db3-4657-ab67-6f42f8a3aaaa less more
1 id: 15ab9154-0db3-4657-ab67-6f42f8a3aaaa
2 url: http://home.pipeline.com/~hbaker1/hakmem/hakmem.html
+0
-2
data/links/15c93d47-112b-490f-91fe-768e656b69e0 less more
1 id: 15c93d47-112b-490f-91fe-768e656b69e0
2 url: http://www.instructables.com/id/Floating-Dock-with-Barrels/
+0
-2
data/links/15e24506-04c1-4ce8-848d-60a29817f5c0 less more
1 id: 15e24506-04c1-4ce8-848d-60a29817f5c0
2 url: http://www.norvig.com/ltd/test/micro-tale-spin.lisp
+0
-2
data/links/15f800a6-42a6-4ef4-93e5-ec3bb3f88dcb less more
1 id: 15f800a6-42a6-4ef4-93e5-ec3bb3f88dcb
2 url: http://www.amctv.com/originals/the-prisoner-1960s-series/
+0
-2
data/links/163191c2-c07f-4e79-b89b-d89da8387b7d less more
1 id: 163191c2-c07f-4e79-b89b-d89da8387b7d
2 url: http://www.joelonsoftware.com/items/2008/03/17.html
+0
-2
data/links/1678efad-e512-40e2-84d3-bf98269737f4 less more
1 id: 1678efad-e512-40e2-84d3-bf98269737f4
2 url: http://futureboy.homeip.net/frinkdocs/
+0
-2
data/links/1699dacd-8e1f-4558-83ba-d8b58d0e0363 less more
1 id: 1699dacd-8e1f-4558-83ba-d8b58d0e0363
2 url: http://cacm.acm.org/magazines/2010/6/92479-the-resurgence-of-parallelism/fulltext
+0
-2
data/links/16bafaf4-88b0-4147-97c1-cd6e2fe50077 less more
1 id: 16bafaf4-88b0-4147-97c1-cd6e2fe50077
2 url: http://www.instructables.com/id/Floppy-Disk-Bag/
+0
-2
data/links/16fa1d0e-0e39-4a58-a351-f0d4647121fa less more
1 id: 16fa1d0e-0e39-4a58-a351-f0d4647121fa
2 url: http://www.ryterdesign.ch/recycline/frame.htm
+0
-2
data/links/17204a04-cda3-4ad7-89ee-526780b7dfbd less more
1 id: 17204a04-cda3-4ad7-89ee-526780b7dfbd
2 url: http://www.ssireview.org/articles/entry/romanticizing_the_poor/
+0
-2
data/links/174f5cec-14e4-443f-b396-a8a38089d484 less more
1 id: 174f5cec-14e4-443f-b396-a8a38089d484
2 url: http://morgansen.insanejournal.com/
+0
-2
data/links/17a96ae4-5db1-4c53-a4d5-30424dd6e706 less more
1 id: 17a96ae4-5db1-4c53-a4d5-30424dd6e706
2 url: http://shapeof.com/archives/2013/4/we_need_a_standard_layered_image_format.html
+0
-2
data/links/17ae07a3-dae4-4f60-9d2c-78cb6da15197 less more
1 id: 17ae07a3-dae4-4f60-9d2c-78cb6da15197
2 url: http://weburbanist.com/2009/09/28/digital-painters-old-world-art-meets-modern-tech/
+0
-2
data/links/1840b941-a227-4d0d-9ab3-27731eabd1c5 less more
1 id: 1840b941-a227-4d0d-9ab3-27731eabd1c5
2 url: http://theanimeblog.com/japanese-recipes/japanese-recipe-natsu-furutsu-dango/
+0
-2
data/links/185173ac-50f1-4e03-9a5e-65a99d97e4db less more
1 id: 185173ac-50f1-4e03-9a5e-65a99d97e4db
2 url: http://en.wikipedia.org/wiki/Jacques_Fresco
+0
-2
data/links/18532257-97e6-41ac-88fe-394f68030a11 less more
1 id: 18532257-97e6-41ac-88fe-394f68030a11
2 url: http://www.elephantstaircase.com/wiki/index.php?title=HowToBuildALoft
+0
-2
data/links/187db6b3-634c-4797-aea9-f10fc3dd75a2 less more
1 id: 187db6b3-634c-4797-aea9-f10fc3dd75a2
2 url: http://garfunkelandoates.com/
+0
-2
data/links/18d25814-f09e-48bc-8d97-1ded125a0ef4 less more
1 id: 18d25814-f09e-48bc-8d97-1ded125a0ef4
2 url: http://gitprint.com/
+0
-2
data/links/194a7bd3-6fe5-472b-a5da-aecc41bd65c2 less more
1 id: 194a7bd3-6fe5-472b-a5da-aecc41bd65c2
2 url: http://www.aleph.se/andart/archives/2014/02/torusearth.html
+0
-2
data/links/196b30e6-d642-4589-ac54-7f1092f86e9b less more
1 id: 196b30e6-d642-4589-ac54-7f1092f86e9b
2 url: http://www.arestlesstransplant.com/
+0
-2
data/links/198bfcac-7a4f-4336-b961-cb6e155433fc less more
1 id: 198bfcac-7a4f-4336-b961-cb6e155433fc
2 url: http://typeface.neocracy.org/
+0
-2
data/links/19a20f0f-a40f-4648-ae3e-8d938d35a644 less more
1 id: 19a20f0f-a40f-4648-ae3e-8d938d35a644
2 url: http://www.youtube.com/watch?v=xB7IHNnyJ00
+0
-2
data/links/19b58b0e-d709-4edb-8399-93cd0c53297e less more
1 id: 19b58b0e-d709-4edb-8399-93cd0c53297e
2 url: http://wiki.github.com/bjpop/berp/
+0
-2
data/links/19d2a493-30c3-430a-a4f9-06750cabc0e8 less more
1 id: 19d2a493-30c3-430a-a4f9-06750cabc0e8
2 url: http://www.patrickwilson.com/goggles_plans.htm
+0
-2
data/links/1a016c03-bc2b-4c45-890b-01ce897a6004 less more
1 id: 1a016c03-bc2b-4c45-890b-01ce897a6004
2 url: http://moonman.io/
+0
-2
data/links/1a1a189f-48d7-4500-8333-88dcb1c397b5 less more
1 id: 1a1a189f-48d7-4500-8333-88dcb1c397b5
2 url: http://www.embroidery.rocksea.org/hand-embroidery/sashiko/
+0
-2
data/links/1a1b7b55-2322-4464-9eec-9178e7fa73aa less more
1 id: 1a1b7b55-2322-4464-9eec-9178e7fa73aa
2 url: http://www.artsreformation.com/a001/hays-code.html
+0
-2
data/links/1a35106e-bc4a-4de1-888c-fd10622ac6d5 less more
1 id: 1a35106e-bc4a-4de1-888c-fd10622ac6d5
2 url: http://patterns.endeca.com/content/library/en/home.html
+0
-2
data/links/1b3b1169-045e-4934-a29c-74018774cec6 less more
1 id: 1b3b1169-045e-4934-a29c-74018774cec6
2 url: https://github.com/troglobit/uftpd
+0
-2
data/links/1b607264-2d66-4309-ae22-66c0fdc32e7b less more
1 id: 1b607264-2d66-4309-ae22-66c0fdc32e7b
2 url: http://www.shiningsilence.com/media/400pirate.jpg
+0
-2
data/links/1b830bf8-2dd2-4baf-bf5c-c9083b858520 less more
1 id: 1b830bf8-2dd2-4baf-bf5c-c9083b858520
2 url: http://www.pygame.org/project/795/?release_id=1359
+0
-2
data/links/1bf863b9-f0d9-40f6-b40b-4e5b8c767834 less more
1 id: 1bf863b9-f0d9-40f6-b40b-4e5b8c767834
2 url: http://www.designsponge.com/2013/03/bookbinding-101-five-hole-pamphlet-stitch.html
+0
-2
data/links/1c06d96b-f367-465b-97b3-70d60752dfab less more
1 id: 1c06d96b-f367-465b-97b3-70d60752dfab
2 url: http://web.mit.edu/anime/www/onomatopoeia.html
+0
-2
data/links/1c186d80-1b15-485c-988f-f60eafcfc922 less more
1 id: 1c186d80-1b15-485c-988f-f60eafcfc922
2 url: http://www.therealcaffeine.com/how-to/rip-dvd-with-vlc/
+0
-2
data/links/1c306ad2-5e90-4890-88b3-aedac8472f51 less more
1 id: 1c306ad2-5e90-4890-88b3-aedac8472f51
2 url: http://www.projectdalek.com/projectdalek/files/index.html
+0
-2
data/links/1c369807-0309-4fc8-8dfa-4368c03c6f21 less more
1 id: 1c369807-0309-4fc8-8dfa-4368c03c6f21
2 url: http://parts.mit.edu/registry/index.php/Main_Page
+0
-2
data/links/1c590e3b-4f47-4fd1-a5b1-81f38aff7af9 less more
1 id: 1c590e3b-4f47-4fd1-a5b1-81f38aff7af9
2 url: http://www.wonderhowto.com/wonderment/score-with-tron-sutra-nsfw-0118924/
+0
-2
data/links/1c763421-2666-4783-a02b-c50e4845555d less more
1 id: 1c763421-2666-4783-a02b-c50e4845555d
2 url: http://grillgrrrl.com/2011/04/lemon-lavender-pound-cake-with-honey-lemon-whipped-cream/
+0
-2
data/links/1cb9b842-a0ed-4879-8a7d-28ee223f30e0 less more
1 id: 1cb9b842-a0ed-4879-8a7d-28ee223f30e0
2 url: http://savoringthepast.net/
+0
-2
data/links/1ce508fc-4302-414e-82ec-2b40d0e8a222 less more
1 id: 1ce508fc-4302-414e-82ec-2b40d0e8a222
2 url: http://alex-charlton.com/posts/Prototype_to_polish_Making_games_in_CHICKEN_Scheme_with_Hypergiant/
+0
-2
data/links/1cf624a9-8d43-4531-928d-3ec08c2a5991 less more
1 id: 1cf624a9-8d43-4531-928d-3ec08c2a5991
2 url: http://www.instructables.com/id/Fakola-cola-clone/?ALLSTEPS
+0
-2
data/links/1d14dd6f-9585-442e-b97a-8bdfdac26485 less more
1 id: 1d14dd6f-9585-442e-b97a-8bdfdac26485
2 url: http://qntm.org/destroy
+0
-2
data/links/1d672ef4-cb2e-4bf3-9cd1-2e73cdbcb4f3 less more
1 id: 1d672ef4-cb2e-4bf3-9cd1-2e73cdbcb4f3
2 url: http://dev-tricks.net/pipe-infix-syntax-for-python
+0
-2
data/links/1d95adbf-8fe8-4ca1-8b62-253244abd9ea less more
1 id: 1d95adbf-8fe8-4ca1-8b62-253244abd9ea
2 url: http://www.recipezaar.com/117242
+0
-2
data/links/1e67c147-0c51-433c-a4a9-9a8454d569ec less more
1 id: 1e67c147-0c51-433c-a4a9-9a8454d569ec
2 url: http://www.avidemux.org/admWiki/index.php?title=DVD_to_AVI
+0
-2
data/links/1e91367c-4dcd-442f-8663-8b84b603b795 less more
1 id: 1e91367c-4dcd-442f-8663-8b84b603b795
2 url: http://designlesson.blogspot.com/
+0
-2
data/links/1e970c1b-0944-4218-be53-e351a9c4c201 less more
1 id: 1e970c1b-0944-4218-be53-e351a9c4c201
2 url: http://io9.com/384242/20-science-books-every-scifi-fan-and-writer-should-read
+0
-2
data/links/1ed6024d-204e-4a21-9249-3bc263801e92 less more
1 id: 1ed6024d-204e-4a21-9249-3bc263801e92
2 url: http://www.quicktweaks.com/2008/09/27/gmail-weather-beauty-right-on-your-ubuntu-desktop/
+0
-2
data/links/1ef132e4-f045-43dc-a9fa-de60dac3eee8 less more
1 id: 1ef132e4-f045-43dc-a9fa-de60dac3eee8
2 url: http://www.q-lang.io/
+0
-2
data/links/1f08e639-a0ac-4952-9943-979c1e42b6d4 less more
1 id: 1f08e639-a0ac-4952-9943-979c1e42b6d4
2 url: http://lifehacker.com/5067341/customize-conky-for-ambient-linux-productivity
+0
-2
data/links/1f0969e6-ec3c-43e8-808e-ebd01b8827ce less more
1 id: 1f0969e6-ec3c-43e8-808e-ebd01b8827ce
2 url: http://www.popsci.com/diy/article/2008-11/making-glass-grill-video
+0
-2
data/links/1f67fa1e-c095-48aa-b7ce-b953ed108812 less more
1 id: 1f67fa1e-c095-48aa-b7ce-b953ed108812
2 url: http://www.pinktentacle.com/2008/08/tokyo-fantasy-images-of-the-apocalypse/
+0
-2
data/links/1f9ce4db-f8b8-48f1-afd4-4e30195afa0a less more
1 id: 1f9ce4db-f8b8-48f1-afd4-4e30195afa0a
2 url: http://uploads.neowin.net/forum/post-218115-1188061969.jpg
+0
-2
data/links/1fae05a4-bd92-4819-8311-5668bd60ebf8 less more
1 id: 1fae05a4-bd92-4819-8311-5668bd60ebf8
2 url: http://www.pcmag.com/article2/0,2704,2230735,00.asp
+0
-2
data/links/1fc3cb86-84a5-43c7-a763-aea4db26d1d9 less more
1 id: 1fc3cb86-84a5-43c7-a763-aea4db26d1d9
2 url: http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.157.7899
+0
-2
data/links/2060d25b-d6ef-4c4c-b4e5-97f426c254f8 less more
1 id: 2060d25b-d6ef-4c4c-b4e5-97f426c254f8
2 url: http://www.instructables.com/id/Perfect-Basmati-Rice/?ALLSTEPS
+0
-2
data/links/20657ab1-4c4f-47cc-b900-1e91ba5a0eb5 less more
1 id: 20657ab1-4c4f-47cc-b900-1e91ba5a0eb5
2 url: http://designingwebinterfaces.com/designing-web-interfaces-12-screen-patterns
+0
-2
data/links/207ad9cc-86ed-4d3f-bf66-4382998a6e1d less more
1 id: 207ad9cc-86ed-4d3f-bf66-4382998a6e1d
2 url: http://en.wikipedia.org/wiki/Smalltalk
+0
-2
data/links/207b68ec-979d-4806-a0c3-99a34de1a3ba less more
1 id: 207b68ec-979d-4806-a0c3-99a34de1a3ba
2 url: http://www.theothersideofkim.com/index.php/tos/P163/
+0
-2
data/links/2082da26-36a9-4f74-834a-131738aa5ac2 less more
1 id: 2082da26-36a9-4f74-834a-131738aa5ac2
2 url: http://orgmode.org/worg/org-contrib/org-velocity.html
+0
-2
data/links/208b523c-a6e5-4c19-ad17-5193b57ec6c7 less more
1 id: 208b523c-a6e5-4c19-ad17-5193b57ec6c7
2 url: http://arclanguage.org/
+0
-2
data/links/20b5b9bc-5b66-47d5-ae31-4fe675302e72 less more
1 id: 20b5b9bc-5b66-47d5-ae31-4fe675302e72
2 url: http://en.wikipedia.org/wiki/Robert_Aickman
+0
-2
data/links/215dadef-bffe-42ed-9862-e2a0e57aebe6 less more
1 id: 215dadef-bffe-42ed-9862-e2a0e57aebe6
2 url: http://www.valvesoftware.com/publications.html
+0
-2
data/links/21b20aaf-d810-4dea-b109-32bb9c9b09e7 less more
1 id: 21b20aaf-d810-4dea-b109-32bb9c9b09e7
2 url: http://rsms.me/2012/10/14/sol-a-sunny-little-virtual-machine.html
+0
-2
data/links/221a2012-8526-4416-a9da-bc49b1022e91 less more
1 id: 221a2012-8526-4416-a9da-bc49b1022e91
2 url: http://lifehacker.com/5042254/operate-your-computer-with-wii-controllers
+0
-2
data/links/222f9aae-15d9-4729-a902-461a34743bad less more
1 id: 222f9aae-15d9-4729-a902-461a34743bad
2 url: http://github.com/micha/jsawk
+0
-2
data/links/225a33bf-420a-47f3-a44a-da63e4e3d1ad less more
1 id: 225a33bf-420a-47f3-a44a-da63e4e3d1ad
2 url: http://www.jeffreymorgenthaler.com/2008/how-to-make-your-own-tonic-water/
+0
-2
data/links/22642bef-e4e4-4643-810d-1c7c4acedee5 less more
1 id: 22642bef-e4e4-4643-810d-1c7c4acedee5
2 url: http://eliade.livejournal.com/472331.html
+0
-2
data/links/22b78e50-26a2-4579-9182-bc1b4cbb550c less more
1 id: 22b78e50-26a2-4579-9182-bc1b4cbb550c
2 url: http://blogs.denverpost.com/captured/2010/07/26/captured-america-in-color-from-1939-1943/
+0
-2
data/links/234b448b-2bf4-4635-8d59-13cfa640a0b3 less more
1 id: 234b448b-2bf4-4635-8d59-13cfa640a0b3
2 url: http://webcast.berkeley.edu/course_details.php?seriesid=1906978278
+0
-2
data/links/238277a6-b42f-4284-af4f-ada31527269c less more
1 id: 238277a6-b42f-4284-af4f-ada31527269c
2 url: http://www.webmonkey.com/tutorial/Build_an_SMS_Notification_App
+0
-2
data/links/23a51c95-9a4a-46bd-86ed-dedea2d0235d less more
1 id: 23a51c95-9a4a-46bd-86ed-dedea2d0235d
2 url: http://youtube.com/watch?v=JYOKLS0XhYA
+0
-2
data/links/2417914a-0edd-410b-bb0d-26e0625305cf less more
1 id: 2417914a-0edd-410b-bb0d-26e0625305cf
2 url: http://www.bunniestudios.com/blog/?p=3040
+0
-2
data/links/2424ba08-25cd-47b0-9eb1-0364593896bd less more
1 id: 2424ba08-25cd-47b0-9eb1-0364593896bd
2 url: http://aima.cs.berkeley.edu/
+0
-2
data/links/24939a2a-a6b0-4a3c-8dca-554d79af5390 less more
1 id: 24939a2a-a6b0-4a3c-8dca-554d79af5390
2 url: http://learn.adafruit.com/retro-gaming-with-raspberry-pi?view=all
+0
-2
data/links/24cbadce-4f8e-4917-be88-a9698ce7eb31 less more
1 id: 24cbadce-4f8e-4917-be88-a9698ce7eb31
2 url: http://phrack.com/issues.html?issue=67&id=1#article
+0
-2
data/links/25cfc90a-b193-42b5-9a45-3217828090ed less more
1 id: 25cfc90a-b193-42b5-9a45-3217828090ed
2 url: http://www.youtube.com/watch?v=aJRJ5bynMFQ&amp;eurl=http://www.google.com/reader/view/
+0
-2
data/links/26240d51-192c-448f-9cf6-5c97bd3e6c3e less more
1 id: 26240d51-192c-448f-9cf6-5c97bd3e6c3e
2 url: http://members.tripod.com/urekarm/synth/download.html
+0
-2
data/links/2644f773-2573-495f-9f73-5cb3085203c6 less more
1 id: 2644f773-2573-495f-9f73-5cb3085203c6
2 url: http://uk.youtube.com/watch?v=NpRqvCps_MQ
+0
-2
data/links/264af063-33be-479d-91a1-7b423e724d0a less more
1 id: 264af063-33be-479d-91a1-7b423e724d0a
2 url: http://www.codeguru.com/Cpp/Cpp/cpp_mfc/
+0
-2
data/links/26a078d4-24ee-4c4d-bbf2-39f05a70e552 less more
1 id: 26a078d4-24ee-4c4d-bbf2-39f05a70e552
2 url: http://blog.steveklabnik.com/2011/07/03/nobody-understands-rest-or-http.html
+0
-2
data/links/26c60c97-7482-44f1-8fdd-2d8f04a797bf less more
1 id: 26c60c97-7482-44f1-8fdd-2d8f04a797bf
2 url: http://rubyists.github.io/2011/05/02/runit-for-ruby-and-everything-else.html
+0
-2
data/links/26c8699b-3f91-4180-8d1d-b609cd6df5ca less more
1 id: 26c8699b-3f91-4180-8d1d-b609cd6df5ca
2 url: http://www.instructables.com/id/Light-Bar-Ambient-Lighting/?ALLSTEPS
+0
-2
data/links/2744888d-798d-475a-9120-3adbcc76e265 less more
1 id: 2744888d-798d-475a-9120-3adbcc76e265
2 url: http://www.deadmedia.org/notes/index-cat.html
+0
-2
data/links/27568160-4a07-472f-9585-22e8eedf5b4e less more
1 id: 27568160-4a07-472f-9585-22e8eedf5b4e
2 url: http://pistondevelopers.github.io/
+0
-2
data/links/277d7a9e-889a-459a-98ae-533a093bc761 less more
1 id: 277d7a9e-889a-459a-98ae-533a093bc761
2 url: http://lifehacker.com/5067996/some-productive-ubuntu-kung-fu
+0
-2
data/links/27898966-d21a-4d66-b86e-bb3e52a344a5 less more
1 id: 27898966-d21a-4d66-b86e-bb3e52a344a5
2 url: http://www.hemmy.net/2007/08/06/aquarium-art-by-takashi-amano/
+0
-2
data/links/278b3fa6-588d-4d1d-84ea-f1999e707a51 less more
1 id: 278b3fa6-588d-4d1d-84ea-f1999e707a51
2 url: http://pyopengl.sourceforge.net/
+0
-2
data/links/27a1fa02-fd78-4ef4-87d4-2938334fef03 less more
1 id: 27a1fa02-fd78-4ef4-87d4-2938334fef03
2 url: http://www.zachpoff.com/site/software/software.html
+0
-2
data/links/27be37bc-bd38-414c-85ba-5ba068f93b7c less more
1 id: 27be37bc-bd38-414c-85ba-5ba068f93b7c
2 url: http://www.pinktentacle.com/2008/08/styrofoam-dome-homes/
+0
-2
data/links/27c86481-cb82-4d8a-9c05-d1d614ae6ae8 less more
1 id: 27c86481-cb82-4d8a-9c05-d1d614ae6ae8
2 url: http://www.hackszine.com/blog/archive/2008/11/gesture_recognition_for_javasc.html
+0
-2
data/links/284824d5-2054-4d1a-8727-0798a3d19750 less more
1 id: 284824d5-2054-4d1a-8727-0798a3d19750
2 url: http://weburbanist.com/2008/01/27/7-abandoned-wonders-of-the-former-soviet-union-from-submarine-stations-to-unfinished-structures/
+0
-2
data/links/284eece3-74be-4344-8a2c-41ae32cdfdb6 less more
1 id: 284eece3-74be-4344-8a2c-41ae32cdfdb6
2 url: http://www.fractalcurves.com/
+0
-2
data/links/28b7acb7-8cac-46b3-88bc-6d320090e445 less more
1 id: 28b7acb7-8cac-46b3-88bc-6d320090e445
2 url: http://www.legitreviews.com/article/349/3/
+0
-2
data/links/28c54009-e27e-451e-a153-026c83e9acea less more
1 id: 28c54009-e27e-451e-a153-026c83e9acea
2 url: http://ase.tufts.edu/cogstud/papers/quinqual.htm
+0
-2
data/links/28e635e5-a330-4985-8829-ebd203bfd768 less more
1 id: 28e635e5-a330-4985-8829-ebd203bfd768
2 url: http://www.katebeaton.com/Site/History_Project.html
+0
-2
data/links/28f73d9c-c283-4923-a9f1-f48585080a7f less more
1 id: 28f73d9c-c283-4923-a9f1-f48585080a7f
2 url: http://www.youtube.com/watch?v=qRuNxHqwazs&amp;eurl=http://picnicface.com/videos.php?videoID=12
+0
-2
data/links/290ae82d-41b9-4964-8bca-95d9e7d5e0a3 less more
1 id: 290ae82d-41b9-4964-8bca-95d9e7d5e0a3
2 url: http://www.spqrblues.com/
+0
-2
data/links/29192b42-03b8-494e-9450-7077c7ade757 less more
1 id: 29192b42-03b8-494e-9450-7077c7ade757
2 url: http://23.fi/jj/
+0
-2
data/links/296084a6-f266-4a46-bbf8-de3a4204ecd8 less more
1 id: 296084a6-f266-4a46-bbf8-de3a4204ecd8
2 url: http://www.techoozie.com/10-books-that-will-substitute-a-computer-science-degree/
+0
-2
data/links/29c6bcad-f835-4e95-b282-ec3a1cf58285 less more
1 id: 29c6bcad-f835-4e95-b282-ec3a1cf58285
2 url: http://www.artde3.com/tutoimag/ingles.html
+0
-2
data/links/29effb93-14d0-4d09-b553-64d5777144ad less more
1 id: 29effb93-14d0-4d09-b553-64d5777144ad
2 url: http://blogs.berkeley.edu/2010/08/24/a-letter-to-my-students/
+0
-2
data/links/2a47cc33-672c-4276-a8f2-f0d3c0b9664f less more
1 id: 2a47cc33-672c-4276-a8f2-f0d3c0b9664f
2 url: http://news.bbc.co.uk/2/hi/asia-pacific/6932801.stm
+0
-2
data/links/2aa85fc5-4624-4c3b-8d78-5f36e9dbdbc6 less more
1 id: 2aa85fc5-4624-4c3b-8d78-5f36e9dbdbc6
2 url: http://tmsu.org/
+0
-2
data/links/2aada331-d54a-4d1e-94e3-c86f95916dc0 less more
1 id: 2aada331-d54a-4d1e-94e3-c86f95916dc0
2 url: http://circledock.wikidot.com/
+0
-2
data/links/2abd66d8-5d34-4558-9702-5669dbb0de10 less more
1 id: 2abd66d8-5d34-4558-9702-5669dbb0de10
2 url: http://www.wired.com/wiredscience/2013/08/fictional-koana-islands-maps/
+0
-2
data/links/2aca1d6c-2c65-48a9-aac0-1e129c4fba9b less more
1 id: 2aca1d6c-2c65-48a9-aac0-1e129c4fba9b
2 url: http://funcall.blogspot.com/2011/04/exercises.html
+0
-2
data/links/2b253313-4c12-4f42-8411-c4acb46a2061 less more
1 id: 2b253313-4c12-4f42-8411-c4acb46a2061
2 url: http://planetmath.org/
+0
-2
data/links/2b3942e9-6022-445c-b1f4-5c6865ba4cf9 less more
1 id: 2b3942e9-6022-445c-b1f4-5c6865ba4cf9
2 url: http://www.danperezstudios.com/workshoppages/molding_casting.htm
+0
-2
data/links/2bce6355-4762-45ca-96f7-a5e35ecf8854 less more
1 id: 2bce6355-4762-45ca-96f7-a5e35ecf8854
2 url: http://www.cd3wd.com/cd3wd_40/cd3wd/index.htm
+0
-2
data/links/2c0e5ad2-7c14-44aa-8699-a94bb52a4ae0 less more
1 id: 2c0e5ad2-7c14-44aa-8699-a94bb52a4ae0
2 url: http://zaach.github.com/jison/docs/
+0
-2
data/links/2c894300-6fc3-4e84-a1df-c57a00f48df1 less more
1 id: 2c894300-6fc3-4e84-a1df-c57a00f48df1
2 url: http://vintagericrac.blogspot.com/2008/04/extreme-crafting-resin-jewellery.html
+0
-2
data/links/2ca0b5b3-e1ad-4ae8-8ea1-097187d59392 less more
1 id: 2ca0b5b3-e1ad-4ae8-8ea1-097187d59392
2 url: http://typesetinthefuture.com/postfiles/alien/semiotic_01_full.jpg
+0
-2
data/links/2cdaba85-4896-413b-9c75-7f2e9f408ab4 less more
1 id: 2cdaba85-4896-413b-9c75-7f2e9f408ab4
2 url: http://makinglifedelicious.com/2011/04/12/original-sin-bars/
+0
-2
data/links/2ced6314-3119-461c-9a12-4206fbc76e4e less more
1 id: 2ced6314-3119-461c-9a12-4206fbc76e4e
2 url: http://lcamtuf.coredump.cx/gcnc/
+0
-2
data/links/2d52a0c1-454e-4b56-ba47-494457ebcb88 less more
1 id: 2d52a0c1-454e-4b56-ba47-494457ebcb88
2 url: http://mailpile.is/
+0
-2
data/links/2d6d5187-f9a1-45ee-a19e-79bcad4f09ec less more
1 id: 2d6d5187-f9a1-45ee-a19e-79bcad4f09ec
2 url: http://i231.photobucket.com/albums/ee242/schrodingersduck/HALGlaDOS.png
+0
-2
data/links/2da76be6-85ea-4adb-bd32-82c9e54c5697 less more
1 id: 2da76be6-85ea-4adb-bd32-82c9e54c5697
2 url: http://lifehacker.com/5056544/how-to-use-custom-windows-visual-styles
+0
-2
data/links/2db23ec7-5396-483f-aee2-525e5cd273f8 less more
1 id: 2db23ec7-5396-483f-aee2-525e5cd273f8
2 url: http://www.whitetreeaz.com/gibber/faeries_aire_and_death_waltz.jpg
+0
-2
data/links/2dc285f9-2422-4a85-8e1d-0dc27024ac61 less more
1 id: 2dc285f9-2422-4a85-8e1d-0dc27024ac61
2 url: http://skarnet.org/software/s6/index.html
+0
-2
data/links/2de118d0-2e6b-4a0a-8915-2212ae32c641 less more
1 id: 2de118d0-2e6b-4a0a-8915-2212ae32c641
2 url: http://emshort.wordpress.com/2009/05/19/in-search-of-a-canon/
+0
-2
data/links/2dedd3d9-8ada-4be3-98a3-64980d27329e less more
1 id: 2dedd3d9-8ada-4be3-98a3-64980d27329e
2 url: http://cakirbey.googlepages.com/
+0
-2
data/links/2e3fc3de-c710-4807-a4b5-8924a3834e15 less more
1 id: 2e3fc3de-c710-4807-a4b5-8924a3834e15
2 url: http://www.etsy.com/storque/search/title/handmade-portraits/
+0
-2
data/links/2e44733f-7f22-4fff-826e-667538cbde0c less more
1 id: 2e44733f-7f22-4fff-826e-667538cbde0c
2 url: http://www.dyers.org/blog/beards/beard-types/
+0
-2
data/links/2e8dcfb0-96cf-43fe-b68d-547bf567a860 less more
1 id: 2e8dcfb0-96cf-43fe-b68d-547bf567a860
2 url: http://deoxy.org/endwork.htm
+0
-2
data/links/2e8fad88-08c6-4af7-91c0-a75d192b05f2 less more
1 id: 2e8fad88-08c6-4af7-91c0-a75d192b05f2
2 url: http://www.rosshudgens.com/thoughts-from-paul-graham/
+0
-2
data/links/2ed5036a-48b4-4d77-91e5-ec5d92552e9c less more
1 id: 2ed5036a-48b4-4d77-91e5-ec5d92552e9c
2 url: http://www.collegehumor.com/video:1770138
+0
-2
data/links/2ee46dc1-5ab8-4467-bfcd-35c9be28abda less more
1 id: 2ee46dc1-5ab8-4467-bfcd-35c9be28abda
2 url: http://people.csail.mit.edu/alan/mtt/
+0
-2
data/links/2f2661d4-8a2e-4ffa-8b0a-6d4a7c0a634b less more
1 id: 2f2661d4-8a2e-4ffa-8b0a-6d4a7c0a634b
2 url: http://www.context.org/ICLIB/IC10/Esfandry.htm
+0
-2
data/links/2f5afd21-aea1-4d26-a1d6-dfaaf1142fa6 less more
1 id: 2f5afd21-aea1-4d26-a1d6-dfaaf1142fa6
2 url: http://imgur.com/a/bbElz?gallery
+0
-2
data/links/2f69714c-8718-4ba7-b4e6-0662fcea9c1f less more
1 id: 2f69714c-8718-4ba7-b4e6-0662fcea9c1f
2 url: http://blog.makezine.com/archive/2008/04/make_primer_moldmaking_by.html?CMP=OTC-0D6B48984890
+0
-2
data/links/2f6bee01-5e23-4d37-b6e5-7d4e69a0e630 less more
1 id: 2f6bee01-5e23-4d37-b6e5-7d4e69a0e630
2 url: http://www.learningpython.com/2006/07/25/writing-a-custom-widget-using-pygtk/
+0
-2
data/links/2fa6a91a-c101-4176-97c3-e591357a1956 less more
1 id: 2fa6a91a-c101-4176-97c3-e591357a1956
2 url: http://kmandla.wordpress.com/2011/01/13/a-comparison-of-text-based-browsers/
+0
-2
data/links/2fa77395-64a3-4497-8d06-7627293911f0 less more
1 id: 2fa77395-64a3-4497-8d06-7627293911f0
2 url: http://crosbymichael.com/dockerfile-best-practices-take-2.html
+0
-2
data/links/2fc70832-e39d-49a9-b07d-beb57616791c less more
1 id: 2fc70832-e39d-49a9-b07d-beb57616791c
2 url: http://www.evilshenanigans.com/2011/05/bock-beer-macaroni-and-cheese/
+0
-2
data/links/2fcf358a-9d42-493c-9f72-0ca4ff40ba8d less more
1 id: 2fcf358a-9d42-493c-9f72-0ca4ff40ba8d
2 url: http://en.wikipedia.org/wiki/Rockbox
+0
-2
data/links/301caebb-7e9b-44ad-93d2-bcc794158780 less more
1 id: 301caebb-7e9b-44ad-93d2-bcc794158780
2 url: http://www.webdesignerdepot.com/2009/06/50-great-examples-of-data-visualization/
+0
-2
data/links/303609d2-c616-4b73-8462-ba50fc9a70da less more
1 id: 303609d2-c616-4b73-8462-ba50fc9a70da
2 url: http://b.jonw.com/post/46853309918/making-a-physical-product
+0
-2
data/links/30425e40-9df3-4270-96d2-0c7390a5357d less more
1 id: 30425e40-9df3-4270-96d2-0c7390a5357d
2 url: http://lists.canonical.org/pipermail/kragen-tol/2007-September/000871.html
+0
-2
data/links/30a92132-e764-4e43-b513-1d16f9f399d0 less more
1 id: 30a92132-e764-4e43-b513-1d16f9f399d0
2 url: http://www.lifesci.ucsb.edu/~haddock/poems/cinnamon.html
+0
-2
data/links/30b81f45-23f6-48c1-8054-dafee0c513e1 less more
1 id: 30b81f45-23f6-48c1-8054-dafee0c513e1
2 url: http://www.lyricsmode.com/lyrics/b/bill_bailey/leg_of_time.html
+0
-2
data/links/312791c4-dce2-4a32-a6b1-dd952085b22f less more
1 id: 312791c4-dce2-4a32-a6b1-dd952085b22f
2 url: http://canhazcode.blogspot.co.uk/2012/02/we-need-to-talk-about-binary-search.html
+0
-2
data/links/31407549-ac6b-4384-9ce4-4e6cc909bc43 less more
1 id: 31407549-ac6b-4384-9ce4-4e6cc909bc43
2 url: http://www.youtube.com/watch?v=D93OD5IYDx4&amp;eurl=http://www.ectomo.com/index.php/category/noise-du-jour/
+0
-2
data/links/314231ba-6860-4129-bf8b-13106b1ba9db less more
1 id: 314231ba-6860-4129-bf8b-13106b1ba9db
2 url: http://worrydream.com/refs/Vannevar%20Bush%20Symposium%20-%20Closing%20Panel.html
+0
-2
data/links/31a48626-d4fc-4ea1-9978-f6ae578ac0f8 less more
1 id: 31a48626-d4fc-4ea1-9978-f6ae578ac0f8
2 url: http://learn.adafruit.com/introducing-trinket/introduction
+0
-2
data/links/31c1a8f5-30da-4e7c-bfe1-b4c4bc9dccd3 less more
1 id: 31c1a8f5-30da-4e7c-bfe1-b4c4bc9dccd3
2 url: http://www.instructables.com/id/Electronic-Drum-Set-with-Controller/?ALLSTEPS
+0
-2
data/links/31e11650-d015-4e8e-bf60-fc90b6fb8144 less more
1 id: 31e11650-d015-4e8e-bf60-fc90b6fb8144
2 url: http://www.shelfari.com/
+0
-2
data/links/31f83eec-b61f-448f-b106-1fd2fbe72f77 less more
1 id: 31f83eec-b61f-448f-b106-1fd2fbe72f77
2 url: http://www.nerve.com/CS/blogs/61fps/archive/2008/11/21/crossing-the-uncanny-valley-part-5.aspx
+0
-2
data/links/32120efe-ae81-4c6e-bc22-5dad002191e9 less more
1 id: 32120efe-ae81-4c6e-bc22-5dad002191e9
2 url: http://books.google.com/books?id=cYNmcTuZdsgC&amp;pg=PA70&amp;lpg=PA70&amp;dq=english+tapped+r&amp;source=web&amp;ots=HglFZmDSMs&amp;sig=2Ya7NFvRCt_A_22wFwa6LifUm7s&amp;hl=en#PPA72,M1
+0
-2
data/links/3218269d-d304-48eb-89d9-a625e5d97d83 less more
1 id: 3218269d-d304-48eb-89d9-a625e5d97d83
2 url: http://www.youtube.com/watch?v=yRebnO5MlDk
+0
-2
data/links/3227493b-d786-4af4-8202-f47e9c1e92dd less more
1 id: 3227493b-d786-4af4-8202-f47e9c1e92dd
2 url: http://ikeahacker.blogspot.com/
+0
-2
data/links/326a95c2-2752-4732-aa01-c101ed10415a less more
1 id: 326a95c2-2752-4732-aa01-c101ed10415a
2 url: http://www.e-drexler.com/d/06/00/EOC/EOC_Table_of_Contents.html
+0
-2
data/links/32995dad-697c-4e70-a604-80f4f078bbab less more
1 id: 32995dad-697c-4e70-a604-80f4f078bbab
2 url: http://web.archive.org/web/20120410145302/http://lubutu.com/idea/on-structural-regexes
+0
-2
data/links/32a8366f-24d5-4550-aff3-e5153af57b17 less more
1 id: 32a8366f-24d5-4550-aff3-e5153af57b17
2 url: http://workshop.thomthom.net/minimediacentre/
+0
-2
data/links/32c821ca-dd79-4d1c-a27d-905603b900bc less more
1 id: 32c821ca-dd79-4d1c-a27d-905603b900bc
2 url: http://www.youtube.com/watch?v=XCdZn1QxPDU&amp;eurl=http://languagelog.ldc.upenn.edu/nll/?p=1179
+0
-2
data/links/3318e084-d68b-40ee-ba25-c86a4c3296b5 less more
1 id: 3318e084-d68b-40ee-ba25-c86a4c3296b5
2 url: http://siek.blogspot.be/2012/07/crash-course-on-notation-in-programming.html
+0
-2
data/links/33265fec-d90c-4a5c-ba67-46add13f1103 less more
1 id: 33265fec-d90c-4a5c-ba67-46add13f1103
2 url: http://nakkaya.com/2010/08/24/a-micro-manual-for-lisp-implemented-in-c/
+0
-2
data/links/336c3cc3-3275-44ef-b03e-295e8d944523 less more
1 id: 336c3cc3-3275-44ef-b03e-295e8d944523
2 url: http://images1.fanpop.com/images/photos/1300000/Vincent-D-Onofrio-vincent-donofrio-1315754-1600-1200.jpg
+0
-2
data/links/336f82c1-5924-4026-adec-be2ed18e3969 less more
1 id: 336f82c1-5924-4026-adec-be2ed18e3969
2 url: https://github.com/mojombo/toml
+0
-2
data/links/3375d4a1-0d42-458c-8e08-b8c22db9b76f less more
1 id: 3375d4a1-0d42-458c-8e08-b8c22db9b76f
2 url: http://axisofeval.blogspot.com/2012/06/what-ive-been-reading.html
+0
-2
data/links/33a4fb70-bc8a-4c10-bcc3-443320a8cdf6 less more
1 id: 33a4fb70-bc8a-4c10-bcc3-443320a8cdf6
2 url: http://www.typonine.com/t9site/typonine/Glagolitic.html
+0
-2
data/links/33b23963-755f-486c-acb2-706c51159369 less more
1 id: 33b23963-755f-486c-acb2-706c51159369
2 url: http://blog.makezine.com/archive/2008/04/our_kind_of_catalog.html?CMP=OTC-0D6B48984890
+0
-2
data/links/3407e8f2-0c4a-42ff-ae9a-7a7d228e77ff less more
1 id: 3407e8f2-0c4a-42ff-ae9a-7a7d228e77ff
2 url: http://www.rpi.edu/~kouttc/01/Project-scooter.html
+0
-2
data/links/340d9e79-ae84-40ea-9132-66438b368f56 less more
1 id: 340d9e79-ae84-40ea-9132-66438b368f56
2 url: http://rarecooking.wordpress.com/
+0
-2
data/links/34523edd-98a7-4e77-8fd0-925a1b1bb801 less more
1 id: 34523edd-98a7-4e77-8fd0-925a1b1bb801
2 url: http://web.mit.edu/cms/People/henry3/games&amp;narrative.html
+0
-2
data/links/34537c67-b28d-4e9b-a62a-3a8e78ea0d57 less more
1 id: 34537c67-b28d-4e9b-a62a-3a8e78ea0d57
2 url: http://hiphilangsci.net/2013/05/01/on-the-history-of-the-question-of-whether-natural-language-is-illogical/
+0
-2
data/links/3489512d-1592-4cf2-b31b-acdbe6fb135d less more
1 id: 3489512d-1592-4cf2-b31b-acdbe6fb135d
2 url: http://seapagan.org/pagan-hierarchy/pagan-hierarchy.png
+0
-2
data/links/348b2adb-f7da-4988-911d-753bb7e39768 less more
1 id: 348b2adb-f7da-4988-911d-753bb7e39768
2 url: http://www.redkawa.com/mediacenters/wiimediacenterx/
+0
-2
data/links/3498a08d-a05c-4b31-bc3f-1cbddef7c701 less more
1 id: 3498a08d-a05c-4b31-bc3f-1cbddef7c701
2 url: http://osdir.com/ml/debian.internationalization.english/2005-04/msg00002.html
+0
-2
data/links/35c59a11-0a07-4aae-ad2a-f33b2780c2d1 less more
1 id: 35c59a11-0a07-4aae-ad2a-f33b2780c2d1
2 url: http://math.andrej.com/2007/09/28/seemingly-impossible-functional-programs/
+0
-2
data/links/35ed3499-af6f-46b7-b662-8d88995431b1 less more
1 id: 35ed3499-af6f-46b7-b662-8d88995431b1
2 url: http://www.ectomo.com/index.php/2007/11/30/noise-du-jour-bizarro-genius-baby-by-mc-frontalot/
+0
-2
data/links/35f7a6b7-0576-4b89-aeb2-c75533414535 less more
1 id: 35f7a6b7-0576-4b89-aeb2-c75533414535
2 url: https://github.com/trevp/noise/wiki
+0
-2
data/links/36520403-8d94-4ab4-9c23-439800a5c3fd less more
1 id: 36520403-8d94-4ab4-9c23-439800a5c3fd
2 url: http://www.ccs.neu.edu/home/tonyg/esop2014/network-as-language-construct-20140117-1204.pdf
+0
-2
data/links/36546dba-f7c0-446b-b0f1-7398d91a449c less more
1 id: 36546dba-f7c0-446b-b0f1-7398d91a449c
2 url: http://www.ted.com/index.php/talks/emily_levine_s_theory_of_everything.html
+0
-2
data/links/3662db96-d409-42b0-869d-a3f8bbabce70 less more
1 id: 3662db96-d409-42b0-869d-a3f8bbabce70
2 url: http://www.carpintariacarlosalberto.com/vespa_daniela.htm
+0
-2
data/links/36805c44-2c52-44a4-bd73-6baa07904f30 less more
1 id: 36805c44-2c52-44a4-bd73-6baa07904f30
2 url: https://www.youtube.com/watch?v=Sr_tEm3Kxc0
+0
-2
data/links/3687d33d-542c-445a-a2da-2fe5ca82d494 less more
1 id: 3687d33d-542c-445a-a2da-2fe5ca82d494
2 url: http://gardenandgun.com/blog/cheerwine-vinegar-pie
+0
-2
data/links/3718dc87-de1e-47e5-a80f-f5939c3af22d less more
1 id: 3718dc87-de1e-47e5-a80f-f5939c3af22d
2 url: http://www.youtube.com/watch?v=56Iq3PbSWZY
+0
-2
data/links/378a872a-62df-4dae-bc9e-46852bfa1e2a less more
1 id: 378a872a-62df-4dae-bc9e-46852bfa1e2a
2 url: http://www.pgannon.com/index.htm
+0
-2
data/links/378f5972-6960-4fea-8319-917c88374d10 less more
1 id: 378f5972-6960-4fea-8319-917c88374d10
2 url: http://vectortuts.com/tutorials/illustration/working-with-orthographic-projections-and-basic-isometrics/
+0
-2
data/links/37924381-c528-4b7d-b277-8d0e493b2e4f less more
1 id: 37924381-c528-4b7d-b277-8d0e493b2e4f
2 url: http://billmill.org/pymag-trees/
+0
-2
data/links/37c67a80-bf18-4fbb-a9dc-9092e1dd3dff less more
1 id: 37c67a80-bf18-4fbb-a9dc-9092e1dd3dff
2 url: http://www.lrb.co.uk/v32/n18/elif-batuman/get-a-real-degree
+0
-2
data/links/37f8af1d-b4f9-4ea0-87a7-8d933221448b less more
1 id: 37f8af1d-b4f9-4ea0-87a7-8d933221448b
2 url: http://www.youtube.com/watch?v=Bnxdqm9Pbjo&amp;eurl=
+0
-2
data/links/37fc061a-fdee-42d7-8043-fd50a521605c less more
1 id: 37fc061a-fdee-42d7-8043-fd50a521605c
2 url: http://www.rickmor.x10.mx/lexical_semantics.html
+0
-2
data/links/380ba32f-7b1f-4282-b105-c78556811b94 less more
1 id: 380ba32f-7b1f-4282-b105-c78556811b94
2 url: http://www.chasmgame.com/
+0
-2
data/links/385fb468-92ee-457d-aeba-77037a75158e less more
1 id: 385fb468-92ee-457d-aeba-77037a75158e
2 url: http://www.tskuebler.com/gallery.html
+0
-2
data/links/3892d8c8-e407-4ff1-be7e-e9c94f52a364 less more
1 id: 3892d8c8-e407-4ff1-be7e-e9c94f52a364
2 url: http://ask.metafilter.com/224344/What-one-book-could-give-me-a-new-useful-superpower
+0
-2
data/links/38c6cdb6-ea63-472e-bad8-d8ed8fb34362 less more
1 id: 38c6cdb6-ea63-472e-bad8-d8ed8fb34362
2 url: http://tale-of-tales.com/tales/RAM.html
+0
-2
data/links/38cc0f7c-5c3f-45d9-b0f0-4ce5041c9dbd less more
1 id: 38cc0f7c-5c3f-45d9-b0f0-4ce5041c9dbd
2 url: http://pl.cs.jhu.edu/big-bang/types-for-flexible-objects.pdf
+0
-2
data/links/38d4a1c5-8ce3-473b-af41-4f4e44fbee22 less more
1 id: 38d4a1c5-8ce3-473b-af41-4f4e44fbee22
2 url: http://en.wikipedia.org/wiki/List_of_architectural_styles
+0
-2
data/links/38ee0957-5312-461d-83e6-be899acb7845 less more
1 id: 38ee0957-5312-461d-83e6-be899acb7845
2 url: http://shoomlah.tumblr.com/post/76245310670/claires-fancy-pants-historical-fashion-master-post
+0
-2
data/links/38fafaf5-ad13-4682-ab28-6f2036c88274 less more
1 id: 38fafaf5-ad13-4682-ab28-6f2036c88274
2 url: http://homepages.wmich.edu/~cooneys/poems/cummings.nextto.html
+0
-2
data/links/39436aa4-6a5b-4fd6-bb5a-3f3917c8c83f less more
1 id: 39436aa4-6a5b-4fd6-bb5a-3f3917c8c83f
2 url: http://www.youtube.com/watch?v=u46eaeAfeqw&amp;eurl=
+0
-2
data/links/397394e5-9bc2-4570-9194-1f80f1229f00 less more
1 id: 397394e5-9bc2-4570-9194-1f80f1229f00
2 url: http://nytimesbooks.blogspot.com/2007/11/my-favorite-book-covers-of-2007.html
+0
-2
data/links/3988bb23-ea82-4403-afd6-4f1e794b1082 less more
1 id: 3988bb23-ea82-4403-afd6-4f1e794b1082
2 url: http://www.youtube.com/watch?v=JdxkVQy7QLM
+0
-2
data/links/39a45652-67c0-49a6-859f-bbfa682491d8 less more
1 id: 39a45652-67c0-49a6-859f-bbfa682491d8
2 url: http://www.paulgraham.com/nerds.html
+0
-2
data/links/39d11838-2b45-4b97-8da3-0e2d7399df76 less more
1 id: 39d11838-2b45-4b97-8da3-0e2d7399df76
2 url: http://www.hemmy.net/2007/10/21/extreme-pets-fishing-cat/
+0
-2
data/links/39d6dcc8-3f3e-4778-8f36-79d14ec6c4b6 less more
1 id: 39d6dcc8-3f3e-4778-8f36-79d14ec6c4b6
2 url: http://en.wikipedia.org/wiki/Finite_and_Infinite_Games
+0
-2
data/links/39df625b-d358-4c41-a056-ee93f17029fe less more
1 id: 39df625b-d358-4c41-a056-ee93f17029fe
2 url: http://www.metmuseum.org/learn/for-educators/publications-for-educators
+0
-2
data/links/3a3c7e71-7e73-4e29-b58e-9f98996e6c93 less more
1 id: 3a3c7e71-7e73-4e29-b58e-9f98996e6c93
2 url: http://ask.metafilter.com/26711/Some-quick-food-that-isnt-Fast-Food
+0
-2
data/links/3a4e0043-861f-4992-a367-41363d0e2a3f less more
1 id: 3a4e0043-861f-4992-a367-41363d0e2a3f
2 url: http://www.paulgraham.com/say.html
+0
-2
data/links/3a521d7e-9cb0-4541-b71b-6bfe1e38c6fb less more
1 id: 3a521d7e-9cb0-4541-b71b-6bfe1e38c6fb
2 url: http://1978th.net/kyotocabinet/
+0
-2
data/links/3a56fc58-85d7-4fe6-af5b-6de2c0b2aa25 less more
1 id: 3a56fc58-85d7-4fe6-af5b-6de2c0b2aa25
2 url: http://blog.sanctum.geek.nz/vim-anti-patterns/
+0
-2
data/links/3a793551-9392-46af-bebb-53c1a1736313 less more
1 id: 3a793551-9392-46af-bebb-53c1a1736313
2 url: http://graphics.uni-konstanz.de/~luft/ivy_generator/
+0
-2
data/links/3a7b6b3a-0374-43e0-8b0a-29064c9618d8 less more
1 id: 3a7b6b3a-0374-43e0-8b0a-29064c9618d8
2 url: http://anaximandrake.blogspirit.com/
+0
-2
data/links/3a8f48be-5bab-418a-812a-9ecf13bc4957 less more
1 id: 3a8f48be-5bab-418a-812a-9ecf13bc4957
2 url: http://www.gametrailers.com/umwatcher.php?id=12321
+0
-2
data/links/3aa44666-8c72-4b0a-a808-07ff8a87f21f less more
1 id: 3aa44666-8c72-4b0a-a808-07ff8a87f21f
2 url: http://sylvain-henry.info/blog/posts/2014-04-01-libc-considered-harmful.html
+0
-2
data/links/3ac07729-e4a4-43d0-b3fb-ed18147b39a6 less more
1 id: 3ac07729-e4a4-43d0-b3fb-ed18147b39a6
2 url: http://www.tekumel.com/
+0
-2
data/links/3ae73f8e-e827-4e1f-b44f-d0e4f5d72499 less more
1 id: 3ae73f8e-e827-4e1f-b44f-d0e4f5d72499
2 url: http://www.instructables.com/id/how-to-add-EL-wire-to-a-coat-or-other-garment/
+0
-2
data/links/3b09ad79-691e-4b81-a366-7cc229d577f4 less more
1 id: 3b09ad79-691e-4b81-a366-7cc229d577f4
2 url: http://benheck.com/04-14-2008/apple-iigs-original-hardware-laptop
+0
-2
data/links/3b1ac94e-fbc1-4e8c-8d30-2b92c312ca9e less more
1 id: 3b1ac94e-fbc1-4e8c-8d30-2b92c312ca9e
2 url: http://www.jwz.org/doc/worse-is-better.html
+0
-2
data/links/3b338e59-6fc4-4f99-9ea5-26e30c1bdf2b less more
1 id: 3b338e59-6fc4-4f99-9ea5-26e30c1bdf2b
2 url: http://www.youtube.com/watch?v=zAAIx2Tfasw&amp;NR
+0
-2
data/links/3b58aa2e-8a79-4952-83f0-7e22883dad0b less more
1 id: 3b58aa2e-8a79-4952-83f0-7e22883dad0b
2 url: http://diglett.blogspot.com/search?updated-max=2008-08-08T09%3A37%3A00%2B01%3A00&amp;max-results=7
+0
-2
data/links/3b98154a-e978-4061-971f-0ddcb62aabf6 less more
1 id: 3b98154a-e978-4061-971f-0ddcb62aabf6
2 url: http://ben.cbccinc.com/BEM/BEM.htm
+0
-2
data/links/3ba54f6a-b36a-4fda-ba2b-459e939e2022 less more
1 id: 3ba54f6a-b36a-4fda-ba2b-459e939e2022
2 url: http://www.thedailywtf.com/Images/200607/screenshot24ga.png
+0
-2
data/links/3bbd9fe2-ed19-44c1-957f-63b558f9939b less more
1 id: 3bbd9fe2-ed19-44c1-957f-63b558f9939b
2 url: http://idiolect.org.uk/notes/?p=660
+0
-2
data/links/3bed3ec8-aaee-4e8f-a34a-fdea7344c35f less more
1 id: 3bed3ec8-aaee-4e8f-a34a-fdea7344c35f
2 url: http://printingcode.runemadsen.com/
+0
-2
data/links/3c3cbd72-e669-4523-ae0c-acda493b21a9 less more
1 id: 3c3cbd72-e669-4523-ae0c-acda493b21a9
2 url: http://web.media.mit.edu/~mellis/cellphone/index.html
+0
-2
data/links/3c47b779-b381-4920-b811-bf5e4aaa91b1 less more
1 id: 3c47b779-b381-4920-b811-bf5e4aaa91b1
2 url: http://www.goplexian.com/2010/02/facebook-will-set-indie-gaming-back-5.html
+0
-2
data/links/3c7ebeb6-8d12-46ea-97ee-1dc3d1c8c312 less more
1 id: 3c7ebeb6-8d12-46ea-97ee-1dc3d1c8c312
2 url: http://www.curiousinventor.com/blog/27
+0
-2
data/links/3c94a857-ba0c-4d22-ab15-23e15a562807 less more
1 id: 3c94a857-ba0c-4d22-ab15-23e15a562807
2 url: http://www.buttercupfestival.com/145vol4.htm
+0
-2
data/links/3c975a0e-0c3f-41ea-93ce-29ecf745bbc9 less more
1 id: 3c975a0e-0c3f-41ea-93ce-29ecf745bbc9
2 url: http://www.irosf.com/q/zine/article/10087
+0
-2
data/links/3cbf83bc-4c70-4a61-ab3e-134580dcc313 less more
1 id: 3cbf83bc-4c70-4a61-ab3e-134580dcc313
2 url: https://developer.mozilla.org/en/JavaScript/Guide
+0
-2
data/links/3cd77d19-e458-41ea-95d3-1cdd276bcd62 less more
1 id: 3cd77d19-e458-41ea-95d3-1cdd276bcd62
2 url: http://www.openculture.com/
+0
-2
data/links/3d0b6aa9-d265-4a5b-9cf8-e98049beb64d less more
1 id: 3d0b6aa9-d265-4a5b-9cf8-e98049beb64d
2 url: http://debu.gs/entries/inferno-part-0-namespaces
+0
-2
data/links/3d182a69-4bfc-44ae-9568-dedde47cded2 less more
1 id: 3d182a69-4bfc-44ae-9568-dedde47cded2
2 url: http://www.erights.org/elib/concurrency/vat.html
+0
-2
data/links/3e2c198c-125c-44bd-83d6-f735d6df76f3 less more
1 id: 3e2c198c-125c-44bd-83d6-f735d6df76f3
2 url: http://www.truthandbeautybombs.com/bb/viewtopic.php?t=4997&amp;postdays=0&amp;postorder=asc&amp;start=0
+0
-2
data/links/3e3572fa-a448-44c4-a3ff-c899fdf8ba37 less more
1 id: 3e3572fa-a448-44c4-a3ff-c899fdf8ba37
2 url: http://www.instructables.com/id/How-to-Buy-from-the-Greatest-Store-The-World-Has-E/?ALLSTEPS
+0
-2
data/links/3e3f2609-beec-43ea-a3f6-34ee24997c57 less more
1 id: 3e3f2609-beec-43ea-a3f6-34ee24997c57
2 url: http://dbpmail.net/essays/2013-06-29-hackers-replacement-for-gmail.html
+0
-2
data/links/3e517aa0-050a-4358-9a03-79a6f6690dc4 less more
1 id: 3e517aa0-050a-4358-9a03-79a6f6690dc4
2 url: http://explodingdog.tumblr.com/
+0
-2
data/links/3e72d96a-e4e7-4927-bf2e-ce22ba508ec7 less more
1 id: 3e72d96a-e4e7-4927-bf2e-ce22ba508ec7
2 url: http://www.fullyramblomatic.com/games.htm
+0
-2
data/links/3e9e0b7c-85dd-4ec5-8475-6dde9cb4de56 less more
1 id: 3e9e0b7c-85dd-4ec5-8475-6dde9cb4de56
2 url: http://www.reocities.com/Athens/8926/Kharms/Incidences.html
+0
-2
data/links/3ea8e4ae-b298-4d31-9ba2-340358014c0f less more
1 id: 3ea8e4ae-b298-4d31-9ba2-340358014c0f
2 url: http://www.harptabs.com/song.php?ID=4701
+0
-2
data/links/3ec2c3df-51c5-4ab5-b945-a16e81c9b0be less more
1 id: 3ec2c3df-51c5-4ab5-b945-a16e81c9b0be
2 url: http://www.forgottenfutures.com/library/fashion/fut_fash.htm
+0
-2
data/links/3ef368dc-98d2-47c4-9c22-06b012af289b less more
1 id: 3ef368dc-98d2-47c4-9c22-06b012af289b
2 url: http://www.youtube.com/watch?v=vK5CTd0OVLw
+0
-2
data/links/3f16eed3-47a7-41ed-8ee4-f5565e2ad5b4 less more
1 id: 3f16eed3-47a7-41ed-8ee4-f5565e2ad5b4
2 url: http://www.fakesteve.net/2010/04/we-are-removing-flash-support-from-os-x.html
+0
-2
data/links/3f556724-6fb9-4e15-979f-18aca160a1ab less more
1 id: 3f556724-6fb9-4e15-979f-18aca160a1ab
2 url: http://www.humancar.com/overview.htm
+0
-2
data/links/3f7ea77f-b876-42fb-889c-c2bd79aa780a less more
1 id: 3f7ea77f-b876-42fb-889c-c2bd79aa780a
2 url: http://www.notmartha.org/archives/2007/11/19/everyday-food-recipes-i-use/
+0
-2
data/links/3ff0f43d-45f2-43d0-bf7a-d69dda74cbfc less more
1 id: 3ff0f43d-45f2-43d0-bf7a-d69dda74cbfc
2 url: http://en.wikipedia.org/wiki/Army_Man_%28magazine%29
+0
-2
data/links/3ffac394-0a66-4ed7-8ae3-2705cb084b44 less more
1 id: 3ffac394-0a66-4ed7-8ae3-2705cb084b44
2 url: http://www.amk.ca/quotations/quotations/
+0
-2
data/links/4038f189-8283-43ef-9f23-8e97b9e9714e less more
1 id: 4038f189-8283-43ef-9f23-8e97b9e9714e
2 url: http://lifehacker.com/5041631/expand-your-brain-with-evernote
+0
-2
data/links/405f260a-1b64-4ce5-a722-2682402fb6fd less more
1 id: 405f260a-1b64-4ce5-a722-2682402fb6fd
2 url: http://www.viruscomix.com/page473.html
+0
-2
data/links/406220c6-984a-4286-92aa-f78d9efb7e1c less more
1 id: 406220c6-984a-4286-92aa-f78d9efb7e1c
2 url: http://sixrevisions.com/graphics-design/40-useful-and-creative-infographics/
+0
-2
data/links/40789851-eb15-4f26-b552-a666ff856eea less more
1 id: 40789851-eb15-4f26-b552-a666ff856eea
2 url: http://dotsies.org/
+0
-2
data/links/40bc9f13-4617-4526-a6b4-b576f1ddc5eb less more
1 id: 40bc9f13-4617-4526-a6b4-b576f1ddc5eb
2 url: http://wearscience.com/
+0
-2
data/links/41108978-769e-4911-a012-c0b2ae337346 less more
1 id: 41108978-769e-4911-a012-c0b2ae337346
2 url: http://www.zachtronicsindustries.com/?p=710
+0
-2
data/links/4125aaf6-38b2-4431-9dfd-af9999b91e53 less more
1 id: 4125aaf6-38b2-4431-9dfd-af9999b91e53
2 url: http://www.dinosaursandrobots.com/search/label/cocopunk
+0
-2
data/links/41594b09-1691-4a6b-b8b4-bfc70750f841 less more
1 id: 41594b09-1691-4a6b-b8b4-bfc70750f841
2 url: http://en.wikipedia.org/wiki/Cognitive_dimensions
+0
-2
data/links/41663e58-db73-4971-be1e-c36407492151 less more
1 id: 41663e58-db73-4971-be1e-c36407492151
2 url: http://www.fubiz.net/2009/04/28/alex-andreev/
+0
-2
data/links/4167a16d-1832-4d21-94fb-d2fa375e2684 less more
1 id: 4167a16d-1832-4d21-94fb-d2fa375e2684
2 url: http://www.lunarbistro.com/art/8-bit_tarot/
+0
-2
data/links/41a1ea4e-5489-4b40-8da5-7c1fd6dc6430 less more
1 id: 41a1ea4e-5489-4b40-8da5-7c1fd6dc6430
2 url: http://whitewrenchconservatory.com/
+0
-2
data/links/41b07459-7cb4-4b60-accd-a5d5898e9010 less more
1 id: 41b07459-7cb4-4b60-accd-a5d5898e9010
2 url: http://www.cogsci.indiana.edu/farg/mcgrawg/lspirit.html
+0
-2
data/links/41ecbf95-4888-4218-9916-675feecbb54f less more
1 id: 41ecbf95-4888-4218-9916-675feecbb54f
2 url: http://en.wikipedia.org/wiki/Arahant
+0
-2
data/links/425a7a58-5c76-4176-9edd-24179d73413c less more
1 id: 425a7a58-5c76-4176-9edd-24179d73413c
2 url: http://www.instructables.com/id/How-to-make-a-still/?ALLSTEPS
+0
-2
data/links/426bf144-7d73-45a1-b16b-ee4776b4a237 less more
1 id: 426bf144-7d73-45a1-b16b-ee4776b4a237
2 url: http://publicdomainreview.org/2012/10/18/the-proper-art-of-writing-1655/
+0
-2
data/links/427acad3-3b02-4e31-8c9b-790e2bfcac24 less more
1 id: 427acad3-3b02-4e31-8c9b-790e2bfcac24
2 url: http://blog.initprogram.com/2010/10/14/a-quick-basic-primer-on-the-irc-protocol/
+0
-2
data/links/429f7833-a5e8-4ed9-92c7-13b9fa895092 less more
1 id: 429f7833-a5e8-4ed9-92c7-13b9fa895092
2 url: http://www.marthastewart.com/portal/site/mslo/menuitem.3a0656639de62ad593598e10d373a0a0/?vgnextoid=3f65ce908332f010VgnVCM1000003d370a0aRCRD&amp;lnc=ad27a68fc92fe010VgnVCM1000003d370a0aRCRD&amp;rsc=taxonomylist
+0
-2
data/links/42a6fb79-e861-40c6-8fc4-a00ce1aa3c21 less more
1 id: 42a6fb79-e861-40c6-8fc4-a00ce1aa3c21
2 url: http://www.escapistmagazine.com/articles/view/editorials/zeropunctuation/1394-Zero-Punctuation-BioShock
+0
-2
data/links/42c01986-e341-4c3e-b341-88e545957d87 less more
1 id: 42c01986-e341-4c3e-b341-88e545957d87
2 url: http://www.wired.com/wired/archive/4.12/ffglass_pr.html
+0
-2
data/links/430558b9-b6f0-486c-8421-02fc6d0befc6 less more
1 id: 430558b9-b6f0-486c-8421-02fc6d0befc6
2 url: http://journal.stuffwithstuff.com/2011/03/19/pratt-parsers-expression-parsing-made-easy/
+0
-2
data/links/430efba3-5256-4086-bf42-332636e8bda2 less more
1 id: 430efba3-5256-4086-bf42-332636e8bda2
2 url: http://www.salon.com/news/feature/2010/07/27/american_people_obsolete
+0
-2
data/links/438c29e3-33ba-4567-ad47-755e9d22f0cb less more
1 id: 438c29e3-33ba-4567-ad47-755e9d22f0cb
2 url: http://web.archive.org/web/20071230150841/http://uzwi.wordpress.com/worldbuilding-further-notes/
+0
-2
data/links/439c9012-fb73-4c61-8aee-d130d0335cff less more
1 id: 439c9012-fb73-4c61-8aee-d130d0335cff
2 url: http://www.wayofthepixel.net/
+0
-2
data/links/43a1e5af-40d9-4953-919e-f1df4ff69746 less more
1 id: 43a1e5af-40d9-4953-919e-f1df4ff69746
2 url: http://www.slideshare.net/slidarko/problemsolving-using-graph-traversals-searching-scoring-ranking-and-recommendation
+0
-2
data/links/43d3a770-c6b4-44ec-8cd3-08e336a41c83 less more
1 id: 43d3a770-c6b4-44ec-8cd3-08e336a41c83
2 url: http://www.lapetiteclaudine.com/archives/011196.html
+0
-2
data/links/4438fbaa-8538-4570-b6eb-6814fae74c6e less more
1 id: 4438fbaa-8538-4570-b6eb-6814fae74c6e
2 url: http://www.adampetersen.se/articles/lispweb.htm
+0
-2
data/links/44788ef2-e9f9-4be1-9925-0bf61e841289 less more
1 id: 44788ef2-e9f9-4be1-9925-0bf61e841289
2 url: http://web.archive.org/web/20121228204847/http://frankchimero.com/writing/2011/sorting-a-mass/
+0
-2
data/links/4480b83d-0f49-4ed7-9a8b-09f274c8e128 less more
1 id: 4480b83d-0f49-4ed7-9a8b-09f274c8e128
2 url: http://en.nothingisreal.com/wiki/Why_I_Will_Never_Have_a_Girlfriend
+0
-2
data/links/4495031a-9fca-4c69-a4c9-b91e0ea4a72a less more
1 id: 4495031a-9fca-4c69-a4c9-b91e0ea4a72a
2 url: http://www.victorianlondon.org/
+0
-2
data/links/4498aeca-fdf3-4bb7-babd-d0157179858e less more
1 id: 4498aeca-fdf3-4bb7-babd-d0157179858e
2 url: http://www.food52.com/recipes/6441_fresh_sriracha_aka_home_made_rooster
+0
-2
data/links/44ebebf2-3abc-4656-b88d-89aa0f1c3563 less more
1 id: 44ebebf2-3abc-4656-b88d-89aa0f1c3563
2 url: http://www.technorhetoric.net/12.3/topoi/stolley/index.htm
+0
-2
data/links/45372043-bc34-4fc7-bd1f-02ce4379473e less more
1 id: 45372043-bc34-4fc7-bd1f-02ce4379473e
2 url: http://www.teknikus.dk/tj/gdc2001.htm
+0
-2
data/links/45436195-9b39-45f2-b5bc-59c9625ac22d less more
1 id: 45436195-9b39-45f2-b5bc-59c9625ac22d
2 url: http://mypoyozo.com/
+0
-2
data/links/45708c9f-46d5-49bb-83e2-d4b352ea4687 less more
1 id: 45708c9f-46d5-49bb-83e2-d4b352ea4687
2 url: http://www.langmaker.com/fith.htm
+0
-2
data/links/45ed72d1-b07c-4756-967e-2c822c90b8a6 less more
1 id: 45ed72d1-b07c-4756-967e-2c822c90b8a6
2 url: https://github.com/apenwarr/git-subtree/blob/master/git-subtree.txt
+0
-2
data/links/466863e1-7a61-4d33-9d64-54eeb4273f96 less more
1 id: 466863e1-7a61-4d33-9d64-54eeb4273f96
2 url: http://procjam.tumblr.com/post/99689402659/procedural-generation-tutorials-getting-started
+0
-2
data/links/46af088e-5afb-434b-b7f5-99b5b110f5b4 less more
1 id: 46af088e-5afb-434b-b7f5-99b5b110f5b4
2 url: http://artofdessert.blogspot.com/2008/12/celebrating-with-champagne-truffles.html
+0
-2
data/links/46bf49b3-3c3d-41b3-b510-7b88961e53ea less more
1 id: 46bf49b3-3c3d-41b3-b510-7b88961e53ea
2 url: http://pssurvival.com/
+0
-2
data/links/46eaf799-9a5e-470e-951f-12b6a62704f7 less more
1 id: 46eaf799-9a5e-470e-951f-12b6a62704f7
2 url: http://penelope.uchicago.edu/Thayer/E/Roman/Texts/Apicius/home.html
+0
-2
data/links/4718dbdb-ddd6-41c1-aee2-8fb149835b13 less more
1 id: 4718dbdb-ddd6-41c1-aee2-8fb149835b13
2 url: http://online.wsj.com/article/SB10001424052748704868604575433620189923744.html?mod=WSJ_hpp_sections_lifestyle
+0
-2
data/links/47325453-53ac-4c51-a7e8-69c2aa1bcd11 less more
1 id: 47325453-53ac-4c51-a7e8-69c2aa1bcd11
2 url: http://www.sinfest.net/archive_page.php?comicID=58
+0
-2
data/links/47391644-a6b9-45f1-9bfe-2a30a60924ac less more
1 id: 47391644-a6b9-45f1-9bfe-2a30a60924ac
2 url: http://www.eskimo.com/~ram/essays.html
+0
-2
data/links/473b5cee-62f3-4926-ace3-37ac52292d5d less more
1 id: 473b5cee-62f3-4926-ace3-37ac52292d5d
2 url: http://practicaltypography.com/
+0
-2
data/links/4836ee59-f4cb-418b-a334-0db8a1a24517 less more
1 id: 4836ee59-f4cb-418b-a334-0db8a1a24517
2 url: http://code.goto10.org/projects/puredyne/
+0
-2
data/links/487cad67-df6b-4733-80e2-b8ef610afb2c less more
1 id: 487cad67-df6b-4733-80e2-b8ef610afb2c
2 url: http://code.google.com/p/decac/
+0
-2
data/links/4898b100-ce29-4d0f-87b4-79fc2405b4f2 less more
1 id: 4898b100-ce29-4d0f-87b4-79fc2405b4f2
2 url: http://wwwcdf.pd.infn.it/~loreti/science.html
+0
-2
data/links/48dfe8e7-739e-49aa-b798-59e86e0570b5 less more
1 id: 48dfe8e7-739e-49aa-b798-59e86e0570b5
2 url: http://mynewdutchlife.blogspot.com/2006/09/yes-we-have-no-bananas.html
+0
-2
data/links/491e5790-4cfa-40c9-bb35-29f3ce4dc6db less more
1 id: 491e5790-4cfa-40c9-bb35-29f3ce4dc6db
2 url: http://static.monolithic.com/
+0
-2
data/links/4957c4c0-7bcc-4962-b8d7-dfe36019581f less more
1 id: 4957c4c0-7bcc-4962-b8d7-dfe36019581f
2 url: http://en.wikipedia.org/wiki/Bulwer-Lytton_Fiction_Contest
+0
-2
data/links/495b29de-3f16-4d6d-9e64-877de1e512fd less more
1 id: 495b29de-3f16-4d6d-9e64-877de1e512fd
2 url: http://features.csmonitor.com/gardening/2009/02/05/sprouts-and-microgreens-edible-houseplants/
+0
-2
data/links/496d43a2-dd9f-41da-a886-ea91e7cc1ed4 less more
1 id: 496d43a2-dd9f-41da-a886-ea91e7cc1ed4
2 url: http://www.youtube.com/user/keithjohnsonberkeley
+0
-2
data/links/4971b071-4018-4600-b62a-bc5c3490aa88 less more
1 id: 4971b071-4018-4600-b62a-bc5c3490aa88
2 url: http://defunctfashion.tumblr.com/
+0
-2
data/links/497b73e4-4d28-4c7f-ab01-5a22baee6e4f less more
1 id: 497b73e4-4d28-4c7f-ab01-5a22baee6e4f
2 url: http://www.instructables.com/id/Cardboard-shelf-for-groceries/?ALLSTEPS
+0
-2
data/links/49a913bb-b571-4a5b-9a12-88dea73ee7bb less more
1 id: 49a913bb-b571-4a5b-9a12-88dea73ee7bb
2 url: http://www.the-getting-things-done.blogspot.com/
+0
-2
data/links/49b8a39e-9e2f-483a-9103-773065719cbc less more
1 id: 49b8a39e-9e2f-483a-9103-773065719cbc
2 url: http://www.dzone.com/links/index.html
+0
-2
data/links/4a29bd17-c9b6-4a53-826f-7622d285da79 less more
1 id: 4a29bd17-c9b6-4a53-826f-7622d285da79
2 url: http://www.thekitchn.com/thekitchn/holidays-easter/spring-treat-how-to-make-golden-chocolate-easter-eggs-045125
+0
-2
data/links/4a403d00-fa78-48d9-995a-0c29f5d93176 less more
1 id: 4a403d00-fa78-48d9-995a-0c29f5d93176
2 url: http://www.visualcomplexity.com/vc/
+0
-2
data/links/4a4a4690-ae48-4585-adb9-6babdba29725 less more
1 id: 4a4a4690-ae48-4585-adb9-6babdba29725
2 url: http://www.barrelfish.org/
+0
-2
data/links/4a543e25-4594-47dd-a221-9d79a781c92c less more
1 id: 4a543e25-4594-47dd-a221-9d79a781c92c
2 url: http://www.xent.com/pipermail/fork/Week-of-Mon-20070219/044101.html
+0
-2
data/links/4a56ee2a-c502-4659-9b5d-1a11e8c844f4 less more
1 id: 4a56ee2a-c502-4659-9b5d-1a11e8c844f4
2 url: http://piperka.net/
+0
-2
data/links/4a8ee629-256b-44f4-8342-d0907e4faaaa less more
1 id: 4a8ee629-256b-44f4-8342-d0907e4faaaa
2 url: http://www.youtube.com/watch?v=Afttcxd6law
+0
-2
data/links/4aaa816b-fc72-433a-ad50-fb5d9481ea24 less more
1 id: 4aaa816b-fc72-433a-ad50-fb5d9481ea24
2 url: http://www.shortpacked.com/d/20070413.html
+0
-2
data/links/4ad89ef9-0ada-4790-a6f6-efd6e7d760a6 less more
1 id: 4ad89ef9-0ada-4790-a6f6-efd6e7d760a6
2 url: http://www.learningpython.com/2006/05/07/creating-a-gui-using-pygtk-and-glade/
+0
-2
data/links/4aed5947-1447-4123-8100-c49594657e2d less more
1 id: 4aed5947-1447-4123-8100-c49594657e2d
2 url: http://activitystrea.ms/specs/json/1.0/
+0
-2
data/links/4af83c3c-7880-4514-abdb-b4dda6bab5fe less more
1 id: 4af83c3c-7880-4514-abdb-b4dda6bab5fe
2 url: http://www.matessa.org/~mike/dutil-dumas.html
+0
-2
data/links/4b2f8ae2-c808-4c45-9f1f-d5590d56c37e less more
1 id: 4b2f8ae2-c808-4c45-9f1f-d5590d56c37e
2 url: http://www.instructables.com/id/Cook-a-Poutine-!/?ALLSTEPS
+0
-2
data/links/4ba6d296-9cf2-4937-99fd-cd7f34f8bd4e less more
1 id: 4ba6d296-9cf2-4937-99fd-cd7f34f8bd4e
2 url: http://bjoern.hoehrmann.de/utf-8/decoder/dfa/
+0
-2
data/links/4bac24b4-a1ac-47e4-97d7-2beeaa89a1dd less more
1 id: 4bac24b4-a1ac-47e4-97d7-2beeaa89a1dd
2 url: http://home.comcast.net/~dwm042/worldbuilder_perl_notes.html
+0
-2
data/links/4bd4211c-2ee4-4d6d-917c-16774ff9b0b3 less more
1 id: 4bd4211c-2ee4-4d6d-917c-16774ff9b0b3
2 url: http://gittup.org/tup/index.html
+0
-2
data/links/4c34c5de-73a8-4d83-a02a-60a97c5baeb7 less more
1 id: 4c34c5de-73a8-4d83-a02a-60a97c5baeb7
2 url: http://en.wikipedia.org/wiki/Charles_Fort
+0
-2
data/links/4c592f48-dad9-4ad5-9ebd-3e94d7717726 less more
1 id: 4c592f48-dad9-4ad5-9ebd-3e94d7717726
2 url: http://www.newgrounds.com/portal/viewer.php?id=415497&amp;key=YzFeLpXzRtOzJxbStiOGYwOTExMWY0QjkxNTIrNV9xNWI3NzE7QjcxQlYxOzJWNjFiMjI5ZjErVnFfOTAxbTk5NzczOTM3Mw%3D%3D
+0
-2
data/links/4c78ce61-ef9c-4646-895a-13fce46c6e2e less more
1 id: 4c78ce61-ef9c-4646-895a-13fce46c6e2e
2 url: http://bukucomics.com/loserz/index.php?comicID=416
+0
-2
data/links/4c895141-ef32-4cef-be70-91c5e5e00522 less more
1 id: 4c895141-ef32-4cef-be70-91c5e5e00522
2 url: http://entertainment.timesonline.co.uk/tol/arts_and_entertainment/books/book_extracts/article6879237.ece
+0
-2
data/links/4c922830-aee4-4e7e-9a32-bd9c5b76b5b7 less more
1 id: 4c922830-aee4-4e7e-9a32-bd9c5b76b5b7
2 url: http://project-apollo.net/text/rpg.html
+0
-2
data/links/4cbb28ea-ec31-4a7e-881f-79d490f658be less more
1 id: 4cbb28ea-ec31-4a7e-881f-79d490f658be
2 url: http://www.lanascooking.com/2011/05/02/shepherds-pie/
+0
-2
data/links/4cd40db9-e710-4c57-910c-9580a7832f8e less more
1 id: 4cd40db9-e710-4c57-910c-9580a7832f8e
2 url: http://boards.polycount.net/showthread.php?t=41232
+0
-2
data/links/4d295413-35d3-469a-89b3-af2488d5a78b less more
1 id: 4d295413-35d3-469a-89b3-af2488d5a78b
2 url: http://io9.com/5041767/i-cannot-navigate-your-buildings-user-interface
+0
-2
data/links/4dd47149-d9e2-4aa4-bca2-b7a212253e7c less more
1 id: 4dd47149-d9e2-4aa4-bca2-b7a212253e7c
2 url: http://madarchitect.blogspot.com/search/label/interactive%20fiction
+0
-2
data/links/4de2cb52-eae3-4b5f-92f7-d396f91cf47f less more
1 id: 4de2cb52-eae3-4b5f-92f7-d396f91cf47f
2 url: http://hchom.files.wordpress.com/2011/11/skyrimcharactersheetempty.jpg
+0
-2
data/links/4dede8af-371b-48c2-8812-9cd2c17630ca less more
1 id: 4dede8af-371b-48c2-8812-9cd2c17630ca
2 url: http://sketchupdate.blogspot.com/2008/10/file-3d-print.html
+0
-2
data/links/4e2a5248-1f72-44d6-9891-2eef2e34dcdf less more
1 id: 4e2a5248-1f72-44d6-9891-2eef2e34dcdf
2 url: http://en.wikipedia.org/wiki/Skyland
+0
-2
data/links/4e2df844-08f1-469e-ad00-84f72b5c0f37 less more
1 id: 4e2df844-08f1-469e-ad00-84f72b5c0f37
2 url: http://blog.makezine.com/archive/2008/01/turning_a_sphere_inside_o.html?CMP=OTC-0D6B48984890
+0
-2
data/links/4e59a103-bf63-4b39-a943-b89931bc8a41 less more
1 id: 4e59a103-bf63-4b39-a943-b89931bc8a41
2 url: http://www.informationisbeautiful.net/visualizations/snake-oil-supplements/
+0
-2
data/links/4eb4063a-1439-4b4c-a128-22aaf4552755 less more
1 id: 4eb4063a-1439-4b4c-a128-22aaf4552755
2 url: http://blog.fedora-fr.org/bioinfornatics/post/D-Programming-with-SDL-and-openGL
+0
-2
data/links/4ed12bea-bf19-42df-93f5-03743519e776 less more
1 id: 4ed12bea-bf19-42df-93f5-03743519e776
2 url: http://stephane.ducasse.free.fr/FreeBooks.html
+0
-2
data/links/4ee20763-542b-41ca-8574-020eb5bdb36b less more
1 id: 4ee20763-542b-41ca-8574-020eb5bdb36b
2 url: http://www.designersnotebook.com/Columns/columns.htm
+0
-2
data/links/4eec46c2-3517-48ee-b8f0-79c6559be2a2 less more
1 id: 4eec46c2-3517-48ee-b8f0-79c6559be2a2
2 url: http://archinect.com/features/article.php?id=76244_0_23_0_M
+0
-2
data/links/4f345d00-76cd-4c38-993f-e9f7b7b86291 less more
1 id: 4f345d00-76cd-4c38-993f-e9f7b7b86291
2 url: http://www.instructables.com/id/Under-30-Light-Table/?ALLSTEPS
+0
-2
data/links/4f44bdfa-f9da-4e87-8f47-8b314148fc33 less more
1 id: 4f44bdfa-f9da-4e87-8f47-8b314148fc33
2 url: http://niemann.blogs.nytimes.com/2010/03/10/my-way/
+0
-2
data/links/4faf84b4-aabd-4e6e-a29d-2c224bf72ed7 less more
1 id: 4faf84b4-aabd-4e6e-a29d-2c224bf72ed7
2 url: http://gbarto.com/multilingua/confessions/
+0
-2
data/links/4fbca376-126b-4e1f-bb76-78cbf0d4c3f2 less more
1 id: 4fbca376-126b-4e1f-bb76-78cbf0d4c3f2
2 url: http://www.textfiles.com/food/bread.rcp
+0
-2
data/links/50094de8-a6db-4cfc-91e5-c0b6585fa062 less more
1 id: 50094de8-a6db-4cfc-91e5-c0b6585fa062
2 url: http://www.soundcomparisons.com/
+0
-2
data/links/5059dbb2-787c-4528-97f2-422e13dfbeb5 less more
1 id: 5059dbb2-787c-4528-97f2-422e13dfbeb5
2 url: http://classes.bnf.fr/ecritures/bibliographie/07.htm
+0
-2
data/links/508df051-a1a9-428c-b8ba-7f611891058b less more
1 id: 508df051-a1a9-428c-b8ba-7f611891058b
2 url: http://blog.ponoko.com/2008/04/08/the-ponoko-10-day-puzzle-design-challenge/
+0
-2
data/links/50c7faed-8940-48cd-8ec5-739b95e3a7e5 less more
1 id: 50c7faed-8940-48cd-8ec5-739b95e3a7e5
2 url: http://www.amazon.com/exec/obidos/ASIN/0471287857/kjemiihverdao-20
+0
-2
data/links/50cbf030-022b-4ffd-a8ad-138acf766e9d less more
1 id: 50cbf030-022b-4ffd-a8ad-138acf766e9d
2 url: http://www.thesimpledollar.com/2009/02/27/a-walkthrough-and-cost-breakdown-of-brewing-your-own-beer/
+0
-2
data/links/50f55926-084c-42f1-827d-566aea104c45 less more
1 id: 50f55926-084c-42f1-827d-566aea104c45
2 url: http://supercollider.sourceforge.net/learning/
+0
-2
data/links/50fdfbf1-49cf-42fe-84d0-44620898499a less more
1 id: 50fdfbf1-49cf-42fe-84d0-44620898499a
2 url: http://www.themaninblue.com/articles/handwritten_typographers/
+0
-2
data/links/510ed0c5-ca4f-4cb2-9626-0f5c90495769 less more
1 id: 510ed0c5-ca4f-4cb2-9626-0f5c90495769
2 url: http://www.objectsofdesire.de/objects_e.html
+0
-2
data/links/51287b1c-65bd-483e-a6b8-65e8211e83fc less more
1 id: 51287b1c-65bd-483e-a6b8-65e8211e83fc
2 url: http://artdecobuildings.blogspot.com/2009/02/mutual-building-cape-town.html
+0
-2
data/links/5134c5f4-2865-4777-8265-542ad1f95fdd less more
1 id: 5134c5f4-2865-4777-8265-542ad1f95fdd
2 url: http://en.wikipedia.org/wiki/Arvo_P%C3%A4rt
+0
-2
data/links/5135533c-03c6-4cb3-8964-53df9f988e6e less more
1 id: 5135533c-03c6-4cb3-8964-53df9f988e6e
2 url: http://en.wikipedia.org/wiki/Urban_Terror
+0
-2
data/links/514d675d-7f56-4656-8186-2fb0e8db4f34 less more
1 id: 514d675d-7f56-4656-8186-2fb0e8db4f34
2 url: https://github.com/tj64/outshine
+0
-2
data/links/51775ddc-d044-4316-b224-915abee705dd less more
1 id: 51775ddc-d044-4316-b224-915abee705dd
2 url: http://www.isitchristmas.com/
+0
-2
data/links/517d309f-1f54-4c93-9d78-7776124d8e48 less more
1 id: 517d309f-1f54-4c93-9d78-7776124d8e48
2 url: http://www.epicurious.com/articlesguides/blogs/editor/2007/09/top-10-food-b-1.html?mbid=rss_epilog
+0
-2
data/links/51d5ea21-dea7-49e7-bd9f-f603373a3fce less more
1 id: 51d5ea21-dea7-49e7-bd9f-f603373a3fce
2 url: https://code.google.com/p/qira/
+0
-2
data/links/521084f6-85a5-43aa-b095-8b5eea89d347 less more
1 id: 521084f6-85a5-43aa-b095-8b5eea89d347
2 url: http://ryan-a.tumblr.com/post/1325972211/nif01
+0
-2
data/links/5236fff9-5d92-42b0-939b-05cc3df6e462 less more
1 id: 5236fff9-5d92-42b0-939b-05cc3df6e462
2 url: http://www.fashion156.com/index.php
+0
-2
data/links/528109d8-a492-461d-80ed-6c2850aff8f7 less more
1 id: 528109d8-a492-461d-80ed-6c2850aff8f7
2 url: http://zserge.com/jsmn.html
+0
-2
data/links/52d5be56-e823-4531-be33-3e12e2d03e30 less more
1 id: 52d5be56-e823-4531-be33-3e12e2d03e30
2 url: http://en.wikipedia.org/wiki/The_Gods_of_Peg%C4%81na
+0
-2
data/links/52e2ba7d-8f32-4829-99a6-2212c01a94c0 less more
1 id: 52e2ba7d-8f32-4829-99a6-2212c01a94c0
2 url: http://blog.makezine.com/archive/2008/05/bodymod_elf_ears.html?CMP=OTC-0D6B48984890
+0
-2
data/links/52fcd4df-7703-4b6f-bb15-23cd26b326d1 less more
1 id: 52fcd4df-7703-4b6f-bb15-23cd26b326d1
2 url: http://hackszine.com/
+0
-2
data/links/53006289-18a1-447c-8470-d2e2139229bf less more
1 id: 53006289-18a1-447c-8470-d2e2139229bf
2 url: http://halfhalf.posterous.com/dont-work-be-hated-love-someone
+0
-2
data/links/5330cfba-5059-4ad9-b2f5-ed1ef4f63c52 less more
1 id: 5330cfba-5059-4ad9-b2f5-ed1ef4f63c52
2 url: http://exple.tive.org/blarg/?p=2131
+0
-2
data/links/53429518-f415-4fe7-a174-977d680b2714 less more
1 id: 53429518-f415-4fe7-a174-977d680b2714
2 url: http://livepipe.net/
+0
-2
data/links/537f6b38-eec2-4629-88ff-ebf3246ce9f8 less more
1 id: 537f6b38-eec2-4629-88ff-ebf3246ce9f8
2 url: http://ziza.es/2007/07/23/page,1,3,La_vida_de_vagabundos_americanos_42_fotos.html
+0
-2
data/links/53be19ec-f0e9-4e51-b3cc-928d27762f7e less more
1 id: 53be19ec-f0e9-4e51-b3cc-928d27762f7e
2 url: http://julien.danjou.info/blog/2011.html#Handling_my_music_collection_with_git-annex
+0
-2
data/links/53c5df98-35f3-43d7-b1d2-f2bc60efcf59 less more
1 id: 53c5df98-35f3-43d7-b1d2-f2bc60efcf59
2 url: http://www.thedailyshow.com/video/index.jhtml?videoId=163653&amp;title=marines-in-berkeley
+0
-2
data/links/540f3028-440d-45ca-9bf6-37aa0643e098 less more
1 id: 540f3028-440d-45ca-9bf6-37aa0643e098
2 url: http://www.greenteapress.com/thinkpython/thinkCSpy/html/
+0
-2
data/links/54119b22-98eb-44c5-be3b-51daea00baa4 less more
1 id: 54119b22-98eb-44c5-be3b-51daea00baa4
2 url: http://garote.bdmonkeys.net/nethack/index.html
+0
-2
data/links/54142d2c-899c-437a-a6e4-fb02b702a2a0 less more
1 id: 54142d2c-899c-437a-a6e4-fb02b702a2a0
2 url: http://en.wikipedia.org/wiki/The_Saragossa_Manuscript
+0
-2
data/links/542f792c-b982-4396-9a23-13e246b13ca7 less more
1 id: 542f792c-b982-4396-9a23-13e246b13ca7
2 url: http://mathworld.wolfram.com/TotalisticCellularAutomaton.html
+0
-2
data/links/54560a9f-152e-4905-b643-e1483f1fde8d less more
1 id: 54560a9f-152e-4905-b643-e1483f1fde8d
2 url: http://blog.lindseyyeo.com/almond-butter-oats-chocolate-chip-cookies/
+0
-2
data/links/546e267d-90f7-474a-91ff-4dc2faecf5a1 less more
1 id: 546e267d-90f7-474a-91ff-4dc2faecf5a1
2 url: http://cedarseed.deviantart.com/art/Guide-to-Human-Types-part-2-33220929
+0
-2
data/links/5473f04a-88d1-4e9a-9bc9-591f85e1f315 less more
1 id: 5473f04a-88d1-4e9a-9bc9-591f85e1f315
2 url: http://blog.makezine.com/archive/2007/12/phidget_rfid_reader_on_fr.html?CMP=OTC-0D6B48984890
+0
-2
data/links/54799536-457e-44e8-bad0-4e5d19579644 less more
1 id: 54799536-457e-44e8-bad0-4e5d19579644
2 url: http://www.materialicious.com/
+0
-2
data/links/54bf96cc-c9ba-4739-b160-abdd60ff20f1 less more
1 id: 54bf96cc-c9ba-4739-b160-abdd60ff20f1
2 url: http://www.bkent.net/Doc/simple5.htm
+0
-2
data/links/54c34301-241c-49cc-b9b9-fd2498587d56 less more
1 id: 54c34301-241c-49cc-b9b9-fd2498587d56
2 url: http://en.wikipedia.org/wiki/Il_cucchiaio_d%27argento
+0
-2
data/links/551ed0c9-068d-4909-b730-33213188400f less more
1 id: 551ed0c9-068d-4909-b730-33213188400f
2 url: https://files.nyu.edu/knl201/public/diss.html?utm_content=buffer1d4a3
+0
-2
data/links/557e9b47-27e1-475a-ae3e-7d69797adb9c less more
1 id: 557e9b47-27e1-475a-ae3e-7d69797adb9c
2 url: http://encyclopediadramatica.com/images/8/83/Outofwork.jpg
+0
-2
data/links/56418a6e-c812-4b1f-a911-a8431028b3d7 less more
1 id: 56418a6e-c812-4b1f-a911-a8431028b3d7
2 url: http://en.wikipedia.org/wiki/List_of_film_noir#Classic_film_noir.2F1940s
+0
-2
data/links/56a79310-f3d2-4943-8a54-a1910673bf14 less more
1 id: 56a79310-f3d2-4943-8a54-a1910673bf14
2 url: http://www.cs.mcgill.ca/~complogic/beluga/
+0
-2
data/links/56bc5576-d4b8-41c2-b990-96591c2af493 less more
1 id: 56bc5576-d4b8-41c2-b990-96591c2af493
2 url: http://recenteats.blogspot.com/p/the-complete-list-of-american-whiskey.html
+0
-2
data/links/56dc0b12-55d0-4c56-8cf4-31d8496d90c8 less more
1 id: 56dc0b12-55d0-4c56-8cf4-31d8496d90c8
2 url: http://blog.makezine.com/archive/2010/04/flashback_30_micro_forge.html
+0
-2
data/links/56f522fc-fada-4830-87f6-377948d725bd less more
1 id: 56f522fc-fada-4830-87f6-377948d725bd
2 url: http://www.instructables.com/id/Conductive-Fabric-Make-Flexible-Circuits-Using-An/?ALLSTEPS
+0
-2
data/links/56f6c7df-f3ee-4557-90da-0525ab19abcd less more
1 id: 56f6c7df-f3ee-4557-90da-0525ab19abcd
2 url: http://www.overcomingbias.com/2008/12/dunbars-function.html
+0
-2
data/links/57523928-cf28-497d-bfb2-2bd884b3adb2 less more
1 id: 57523928-cf28-497d-bfb2-2bd884b3adb2
2 url: http://www.yosefk.com/blog/my-history-with-forth-stack-machines.html
+0
-2
data/links/575b8916-0125-472c-b331-2351513784fa less more
1 id: 575b8916-0125-472c-b331-2351513784fa
2 url: http://www.weebl.jolt.co.uk/kungfu.htm
+0
-2
data/links/577a027e-b575-44d4-ac48-e288776c5c52 less more
1 id: 577a027e-b575-44d4-ac48-e288776c5c52
2 url: http://23sandygallery.blogspot.com/2010/08/book-arts-resources.html
+0
-2
data/links/57a0ab5b-2564-4825-bf17-40f17c792c41 less more
1 id: 57a0ab5b-2564-4825-bf17-40f17c792c41
2 url: http://alliejon.es/blog/2014/03/24/adding-syntax-highlighting-to-knitting-patterns/
+0
-2
data/links/57d73216-813b-4ad8-be57-5f601bd611ba less more
1 id: 57d73216-813b-4ad8-be57-5f601bd611ba
2 url: http://mapbox.com/developers/mbtiles/
+0
-2
data/links/58005ea3-e915-4a38-9b2f-fcc88137af0d less more
1 id: 58005ea3-e915-4a38-9b2f-fcc88137af0d
2 url: http://www.instructables.com/id/E9331VJF3DES9J73YS/?ALLSTEPS
+0
-2
data/links/580fde16-8051-4134-9e44-f480f34e64cc less more
1 id: 580fde16-8051-4134-9e44-f480f34e64cc
2 url: http://www.washingtonpost.com/wp-dyn/content/article/2008/12/19/AR2008121901592.html
+0
-2
data/links/58a4786f-98dd-4959-8e6d-1d63ec21e619 less more
1 id: 58a4786f-98dd-4959-8e6d-1d63ec21e619
2 url: http://www.catb.org/jargon/html/B/book-titles.html
+0
-2
data/links/58bfb87a-2bd7-42ae-b2e2-7786a5dc0751 less more
1 id: 58bfb87a-2bd7-42ae-b2e2-7786a5dc0751
2 url: https://github.com/wmutils/core
+0
-2
data/links/58c9ae04-e3f4-4e2f-94eb-a8ec9feed3dd less more
1 id: 58c9ae04-e3f4-4e2f-94eb-a8ec9feed3dd
2 url: http://www.soundonsound.com/sos/aug06/articles/puredata_0806.htm
+0
-2
data/links/58de9270-ca92-4c8b-88ff-9bfe5a813bb2 less more
1 id: 58de9270-ca92-4c8b-88ff-9bfe5a813bb2
2 url: http://fireflychinese.kevinsullivansite.net/episode2.html#sh
+0
-2
data/links/58ea658d-6a54-471e-ad00-442a0f5ce4bf less more
1 id: 58ea658d-6a54-471e-ad00-442a0f5ce4bf
2 url: http://neoriceisgood.deviantart.com/art/150-fakemon-old-version-45324732
+0
-2
data/links/5914e74b-2fd3-4607-929e-89c5716d0766 less more
1 id: 5914e74b-2fd3-4607-929e-89c5716d0766
2 url: http://www.willamette.edu/~fruehr/haskell/evolution.html
+0
-2
data/links/5939387b-441a-42bb-9f9b-0adfc9ad5295 less more
1 id: 5939387b-441a-42bb-9f9b-0adfc9ad5295
2 url: http://theweek.com/article/index/96342/The_last_word_Advice_from_Americas_worst_mom
+0
-2
data/links/593fe584-3e45-4882-9cc7-6a04a894553d less more
1 id: 593fe584-3e45-4882-9cc7-6a04a894553d
2 url: http://www.mortalspaces.com/diytouchpanels/
+0
-2
data/links/5987ff85-b669-483d-9482-828a1fec66dc less more
1 id: 5987ff85-b669-483d-9482-828a1fec66dc
2 url: http://butdoesitfloat.com/1253909/The-Architect-of-Ruins
+0
-2
data/links/59be456e-6e02-4a3d-a326-1f308868908b less more
1 id: 59be456e-6e02-4a3d-a326-1f308868908b
2 url: http://www.youtube.com/watch?v=A15v4tTab0Y
+0
-2
data/links/59c4d595-841f-4d3c-8355-fa2126404592 less more
1 id: 59c4d595-841f-4d3c-8355-fa2126404592
2 url: http://mrl.nyu.edu/~perlin/
+0
-2
data/links/59eb42eb-93ec-41e2-b44c-4ff015ed5f8c less more
1 id: 59eb42eb-93ec-41e2-b44c-4ff015ed5f8c
2 url: http://www.squidi.net/three/
+0
-2
data/links/5a01616c-21d6-49e9-8b86-c53645605a71 less more
1 id: 5a01616c-21d6-49e9-8b86-c53645605a71
2 url: http://www.ddj.com/cpp/184403746
+0
-2
data/links/5a0335d3-0c4d-4c01-9e25-e3540c1a6aae less more
1 id: 5a0335d3-0c4d-4c01-9e25-e3540c1a6aae
2 url: http://www.leeners.com/cheeseprocess.html#pasturize
+0
-2
data/links/5a080b4a-2453-4e8c-a1d0-0a431826cda0 less more
1 id: 5a080b4a-2453-4e8c-a1d0-0a431826cda0
2 url: http://jayisgames.com/archives/2008/04/netshift.php
+0
-2
data/links/5a13be1b-0454-46a1-8beb-2c87c91e7831 less more
1 id: 5a13be1b-0454-46a1-8beb-2c87c91e7831
2 url: http://www.finecooking.com/recipes/bacon-five-spice-millionaires.aspx
+0
-2
data/links/5a27ff32-4950-4a71-8f91-5d1ead02bac5 less more
1 id: 5a27ff32-4950-4a71-8f91-5d1ead02bac5
2 url: http://gregg.angelfishy.net/anunit01.shtml
+0
-2
data/links/5a3274cd-11da-42f9-bca7-81bb47d348fb less more
1 id: 5a3274cd-11da-42f9-bca7-81bb47d348fb
2 url: http://ieet.org/index.php/IEET/more/biohack/
+0
-2
data/links/5a3452e6-08f7-419f-a283-c8430a2b8ea4 less more
1 id: 5a3452e6-08f7-419f-a283-c8430a2b8ea4
2 url: http://forums.bit-tech.net/showthread.php?t=115461
+0
-2
data/links/5a50f344-5c3a-41af-9e1b-485f08ec35a8 less more
1 id: 5a50f344-5c3a-41af-9e1b-485f08ec35a8
2 url: http://onethingwell.org/post/104921974134/git-up
+0
-2
data/links/5a800108-32c1-431c-86ba-079edc2e5e88 less more
1 id: 5a800108-32c1-431c-86ba-079edc2e5e88
2 url: https://framenet.icsi.berkeley.edu/fndrupal/
+0
-2
data/links/5a856c98-696a-463e-93f2-5e8d2e74c146 less more
1 id: 5a856c98-696a-463e-93f2-5e8d2e74c146
2 url: https://www.youtube.com/watch?v=4bM3Gut1hIk
+0
-2
data/links/5aabebf1-0e6e-4377-b59d-5ee8c41c266b less more
1 id: 5aabebf1-0e6e-4377-b59d-5ee8c41c266b
2 url: http://www.viruscomix.com/page500.html
+0
-2
data/links/5b29b53e-663b-456e-9348-d591b5a432fe less more
1 id: 5b29b53e-663b-456e-9348-d591b5a432fe
2 url: http://lifehacker.com/399871/easeus-creates-and-manages-hard-drive-partitions-for-free
+0
-2
data/links/5b72e5f5-e596-46d1-be39-b3752ed73c9c less more
1 id: 5b72e5f5-e596-46d1-be39-b3752ed73c9c
2 url: http://languagelog.ldc.upenn.edu/nll/?p=189
+0
-2
data/links/5b9d14fc-520c-4ff2-b490-7088b91ddde7 less more
1 id: 5b9d14fc-520c-4ff2-b490-7088b91ddde7
2 url: http://www.slashfood.com/
+0
-2
data/links/5bbddf14-47bf-4515-b63c-045088d41709 less more
1 id: 5bbddf14-47bf-4515-b63c-045088d41709
2 url: http://www.sugarboukas.com/PD
+0
-2
data/links/5bd5f491-7a21-4eed-997b-ecce49a9b046 less more
1 id: 5bd5f491-7a21-4eed-997b-ecce49a9b046
2 url: http://www.gateway.com/programs/showyourspots/index.php?cmpid=cphm_btn2
+0
-2
data/links/5bfa26c6-84df-4368-ad84-594e38a469ef less more
1 id: 5bfa26c6-84df-4368-ad84-594e38a469ef
2 url: http://www.doanepaper.com/
+0
-2
data/links/5c0d604b-ccaa-4f9e-a7b3-26666b23fe4b less more
1 id: 5c0d604b-ccaa-4f9e-a7b3-26666b23fe4b
2 url: http://www.khanacademy.org/
+0
-2
data/links/5c5c782c-cf22-4a58-97a1-c1fe09b53308 less more
1 id: 5c5c782c-cf22-4a58-97a1-c1fe09b53308
2 url: http://www.flickr.com/photo_zoom.gne?id=1217966857&amp;size=o
+0
-2
data/links/5c8c35b6-3b33-43dd-a9f5-cda840451e37 less more
1 id: 5c8c35b6-3b33-43dd-a9f5-cda840451e37
2 url: http://www.iz3d.com/t-dcdriver.aspx
+0
-2
data/links/5cc9bc05-165d-4005-b158-2a412bb36469 less more
1 id: 5cc9bc05-165d-4005-b158-2a412bb36469
2 url: http://www.highrez.co.uk/downloads/XMouseButtonControl.htm
+0
-2
data/links/5cea8603-fbce-4194-90c9-5d91e893879b less more
1 id: 5cea8603-fbce-4194-90c9-5d91e893879b
2 url: http://www.cameronius.com/games/
+0
-2
data/links/5d1734dd-7bfd-4e3f-8aad-8fc3b32a1275 less more
1 id: 5d1734dd-7bfd-4e3f-8aad-8fc3b32a1275
2 url: http://bitchassgodliness.files.wordpress.com/2012/08/tfbopsexts.pdf
+0
-2
data/links/5d29ea4b-8167-4027-8aca-1e7cd594e2a7 less more
1 id: 5d29ea4b-8167-4027-8aca-1e7cd594e2a7
2 url: http://hcsoftware.sourceforge.net/gravitation/
+0
-2
data/links/5d7463bf-a9e4-434b-ad47-4d9f56784704 less more
1 id: 5d7463bf-a9e4-434b-ad47-4d9f56784704
2 url: http://fudco.com/chip/tech.html
+0
-2
data/links/5d8f12c0-838f-43a3-8973-37b90f993187 less more
1 id: 5d8f12c0-838f-43a3-8973-37b90f993187
2 url: https://wunki.org/posts/2014-05-17-haskell-packages-development.html
+0
-2
data/links/5d986d67-3c2b-4f35-9afb-1e6ef3289183 less more
1 id: 5d986d67-3c2b-4f35-9afb-1e6ef3289183
2 url: http://bloxes.com/
+0
-2
data/links/5db4ad9d-2e59-429d-b1f9-6ac178001423 less more
1 id: 5db4ad9d-2e59-429d-b1f9-6ac178001423
2 url: http://www.busuu.com/
+0
-2
data/links/5db9fe3b-636e-481c-b4e8-32e8f9119f08 less more
1 id: 5db9fe3b-636e-481c-b4e8-32e8f9119f08
2 url: http://www.openculture.com/2012/02/david_foster_wallace_the_big_uncut_interview_2003.html
+0
-2
data/links/5e5ab4ed-b0f2-4905-abe0-4b52fc844311 less more
1 id: 5e5ab4ed-b0f2-4905-abe0-4b52fc844311
2 url: http://micro.magnet.fsu.edu/cocktails/index.html
+0
-2
data/links/5e7b21ef-f8c8-4b8c-a7c1-ea93986da6ef less more
1 id: 5e7b21ef-f8c8-4b8c-a7c1-ea93986da6ef
2 url: http://www-rohan.sdsu.edu/faculty/vinge/misc/singularity.html
+0
-2
data/links/5eda1886-d9e6-4516-8555-13d373abcc70 less more
1 id: 5eda1886-d9e6-4516-8555-13d373abcc70
2 url: http://www.pajiba.com/10-scifi-films-you-should-see-but-probably-havent.htm
+0
-2
data/links/5f2176e3-50ad-4a7c-b972-dce8c7349e29 less more
1 id: 5f2176e3-50ad-4a7c-b972-dce8c7349e29
2 url: http://video.google.com/videoplay?docid=1775609780693994711&amp;q=USS+make+shit+up&amp;total=30&amp;start=0&amp;num=10&amp;so=0&amp;type=search&amp;plindex=0
+0
-2
data/links/5fce7683-20b8-482c-badc-080bbcecf7e5 less more
1 id: 5fce7683-20b8-482c-badc-080bbcecf7e5
2 url: http://imgur.com/gallery/NNC6H
+0
-2
data/links/600b62ec-163b-445f-bfcf-7870a4cd6813 less more
1 id: 600b62ec-163b-445f-bfcf-7870a4cd6813
2 url: http://tartelette.blogspot.com/2008/03/chocolate-caramel-mousse-date-night.html
+0
-2
data/links/6058bccc-f4ba-4a0a-a7df-ef16123270d0 less more
1 id: 6058bccc-f4ba-4a0a-a7df-ef16123270d0
2 url: http://extension765.com/sdr/18-raiders
+0
-2
data/links/606e11b5-bad9-45fb-8a2b-9ec8b521ebda less more
1 id: 606e11b5-bad9-45fb-8a2b-9ec8b521ebda
2 url: http://www.emdb.tk/
+0
-2
data/links/60b8c14d-ba43-47b7-90ba-d055ad03be99 less more
1 id: 60b8c14d-ba43-47b7-90ba-d055ad03be99
2 url: http://www.linux-gamers.net/smartsection.item.81/comparison-of-free-software-shooters.html
+0
-2
data/links/612693af-48a5-4d6f-bdb6-b6ea43abd6ba less more
1 id: 612693af-48a5-4d6f-bdb6-b6ea43abd6ba
2 url: http://thetentacleparadox.com/blog/2008/10/28/steampunk-esque-neo-victorian-keyboard-monitor/
+0
-2
data/links/6133f7ab-6dbb-4016-a8b7-a5738c7acc7b less more
1 id: 6133f7ab-6dbb-4016-a8b7-a5738c7acc7b
2 url: http://emshort.wordpress.com/2012/11/28/female-voices-in-games/
+0
-2
data/links/61366608-4dc8-46ea-a78b-30a4ccee1c93 less more
1 id: 61366608-4dc8-46ea-a78b-30a4ccee1c93
2 url: http://musicforprogramming.net/
+0
-2
data/links/616e2c8e-98c7-49fb-b0ea-39dd736c5ec8 less more
1 id: 616e2c8e-98c7-49fb-b0ea-39dd736c5ec8
2 url: https://github.com/trith/trith
+0
-2
data/links/618a30f7-0377-4fdd-90b1-6f4a5aaa1e7e less more
1 id: 618a30f7-0377-4fdd-90b1-6f4a5aaa1e7e
2 url: http://www.pixeljoint.com/
+0
-2
data/links/61965de2-e98b-48d8-b3e2-88c5aa344e85 less more
1 id: 61965de2-e98b-48d8-b3e2-88c5aa344e85
2 url: http://jacobinmag.com/2012/04/against-chairs/
+0
-2
data/links/61a860e9-fe3f-48df-abc1-3ba1e70d5099 less more
1 id: 61a860e9-fe3f-48df-abc1-3ba1e70d5099
2 url: http://www.seriouseats.com/recipes/2014/03/java-good-night-blue-bottle-cold-brew-rum-cocktail-recipe.html
+0
-2
data/links/61d21ba4-7cac-4005-bf7b-844ae8f50726 less more
1 id: 61d21ba4-7cac-4005-bf7b-844ae8f50726
2 url: http://gist.io/
+0
-2
data/links/61e11e48-7a7c-494a-91c8-db3179a3a1d9 less more
1 id: 61e11e48-7a7c-494a-91c8-db3179a3a1d9
2 url: http://www.ryan-a.com/comics/this_was_our_pact_01.htm
+0
-2
data/links/61f0e0fb-4f69-4c39-987b-aede1d1b9e74 less more
1 id: 61f0e0fb-4f69-4c39-987b-aede1d1b9e74
2 url: http://www.newyorker.com/reporting/2010/11/29/101129fa_fact_cassidy?currentPage=all
+0
-2
data/links/61f8debb-a924-462d-8c13-5f75421ec715 less more
1 id: 61f8debb-a924-462d-8c13-5f75421ec715
2 url: http://www.cleveralgorithms.com/nature-inspired/index.html
+0
-2
data/links/62d832ef-e4c4-4dfa-8399-83bbdbce9435 less more
1 id: 62d832ef-e4c4-4dfa-8399-83bbdbce9435
2 url: http://anchor.github.io/git-vogue/
+0
-2
data/links/62db5674-0f93-4ff2-9d49-005ec999c485 less more
1 id: 62db5674-0f93-4ff2-9d49-005ec999c485
2 url: http://www.instructables.com/id/Delicious_Apple_Pie_Stix/?ALLSTEPS
+0
-2
data/links/6321a503-9116-4bd5-bea2-7a8e40451c73 less more
1 id: 6321a503-9116-4bd5-bea2-7a8e40451c73
2 url: http://blog.makezine.com/archive/2009/01/editing_sound_with_photoshop.html?CMP=OTC-0D6B48984890
+0
-2
data/links/63a1bf2c-300b-45d3-8f99-6c797d4fc47e less more
1 id: 63a1bf2c-300b-45d3-8f99-6c797d4fc47e
2 url: http://radicalsustainability.org/rust/toolbox
+0
-2
data/links/63a40e19-8b85-4faf-9401-12fae34763f4 less more
1 id: 63a40e19-8b85-4faf-9401-12fae34763f4
2 url: http://forfood.rezimo.com/?p=545
+0
-2
data/links/63d570b3-3c8a-462e-9c15-ce7b8c7de124 less more
1 id: 63d570b3-3c8a-462e-9c15-ce7b8c7de124
2 url: http://vimeo.com/2809991?pg=embed&amp;sec=2809991
+0
-2
data/links/63dc09e9-69bd-41bd-a8c4-c097de3dca79 less more
1 id: 63dc09e9-69bd-41bd-a8c4-c097de3dca79
2 url: http://www.clemesha.org/blog/modern-python-hacker-tools-virtualenv-fabric-pip/
+0
-2
data/links/63e66249-8960-4d77-91b1-df7635c4d4fb less more
1 id: 63e66249-8960-4d77-91b1-df7635c4d4fb
2 url: http://www.llamma.com/xbox360/repair/ring_of_light_x-clamp_fix.htm
+0
-2
data/links/640f317d-0c86-4fc7-b448-2da9ef8f91d9 less more
1 id: 640f317d-0c86-4fc7-b448-2da9ef8f91d9
2 url: http://blog.makezine.com/archive/2008/08/electronics_levity.html?CMP=OTC-0D6B48984890
+0
-2
data/links/641da004-87f3-4761-ade7-3da2d8817d3a less more
1 id: 641da004-87f3-4761-ade7-3da2d8817d3a
2 url: http://scriptogr.am/kuehnm/post/2012-12-22-111621
+0
-2
data/links/64b4d767-a64a-4a4f-81e1-8aeca313bd7e less more
1 id: 64b4d767-a64a-4a4f-81e1-8aeca313bd7e
2 url: http://www.crookedbrains.net/2009/04/interesting_24.html
+0
-2
data/links/64c6547e-f323-4134-8439-ab2c5d3c912b less more
1 id: 64c6547e-f323-4134-8439-ab2c5d3c912b
2 url: http://weave.spiderforest.com/2009/08/10/ch01page003/
+0
-2
data/links/64e208e7-1a6a-4b75-b7dd-d46c932b551f less more
1 id: 64e208e7-1a6a-4b75-b7dd-d46c932b551f
2 url: https://github.com/froggey/Mezzano
+0
-2
data/links/64f6df01-e957-4c35-9e5f-23ea63486d18 less more
1 id: 64f6df01-e957-4c35-9e5f-23ea63486d18
2 url: http://en.wikipedia.org/wiki/Generative_Modelling_Language
+0
-2
data/links/65432675-d2a4-4101-b31d-c7944cc5023b less more
1 id: 65432675-d2a4-4101-b31d-c7944cc5023b
2 url: http://youtube.com/watch?v=pUPsfYJONrU
+0
-2
data/links/657a5e90-227b-426d-a01c-febf41bfab95 less more
1 id: 657a5e90-227b-426d-a01c-febf41bfab95
2 url: http://blog.makezine.com/archive/2008/12/wii_drum_high.html?CMP=OTC-0D6B48984890
+0
-2
data/links/6596bbb1-e21c-428e-8f87-4dfef5b0c24d less more
1 id: 6596bbb1-e21c-428e-8f87-4dfef5b0c24d
2 url: http://chocolateandmarrow.com/2014/03/25/cheddar-and-thyme-gougeres/
+0
-2
data/links/659d7b3a-5f42-40b3-81ff-fa8428095eab less more
1 id: 659d7b3a-5f42-40b3-81ff-fa8428095eab
2 url: http://stackoverflow.com/questions/1218390/what-is-your-most-productive-shortcut-with-vim/1220118#1220118
+0
-2
data/links/65e9b4d3-4fcc-49f2-97ef-2d9f7ee640aa less more
1 id: 65e9b4d3-4fcc-49f2-97ef-2d9f7ee640aa
2 url: http://www.kirkhammotorsports.com/book-the-art-of-engineering-by-david-kirkham/
+0
-2
data/links/65ee372c-f96b-4926-b9c6-d03c0edae504 less more
1 id: 65ee372c-f96b-4926-b9c6-d03c0edae504
2 url: http://community.livejournal.com/ru_wondermark/
+0
-2
data/links/661f81d1-618e-4238-affe-30a8d8334c0b less more
1 id: 661f81d1-618e-4238-affe-30a8d8334c0b
2 url: http://www.threadbanger.com/
+0
-2
data/links/6633f110-6fb3-47d5-ba5d-249e767d5f24 less more
1 id: 6633f110-6fb3-47d5-ba5d-249e767d5f24
2 url: http://m1.2mdn.net/viewad/1848390/rspd05_160avail.jpg
+0
-2
data/links/66608966-788b-4d85-ab70-dc6181f8a922 less more
1 id: 66608966-788b-4d85-ab70-dc6181f8a922
2 url: http://burningfp.tumblr.com/post/107901024623
+0
-2
data/links/6672a9b9-2ce2-4509-a938-b07ca11f0eff less more
1 id: 6672a9b9-2ce2-4509-a938-b07ca11f0eff
2 url: http://www.apple.com/ipad/guided-tours/
+0
-2
data/links/668d5dc0-c309-40ea-8ff3-62f245340706 less more
1 id: 668d5dc0-c309-40ea-8ff3-62f245340706
2 url: http://gizmodo.com/gadgets/how-it-works/how-the-worlds-first-all+in+one-beer-machine-works-314304.php
+0
-2
data/links/679bad0e-7ef3-45ec-87a1-5023d89e3eda less more
1 id: 679bad0e-7ef3-45ec-87a1-5023d89e3eda
2 url: http://www.chicaandjo.com/2010/04/26/make-hard-candy-jewels/
+0
-2
data/links/67fc5659-24f2-4004-98b1-a93222aaa242 less more
1 id: 67fc5659-24f2-4004-98b1-a93222aaa242
2 url: http://www.instructables.com/id/LeGummies_brick_shaped_gummy_candies/?ALLSTEPS
+0
-2
data/links/68079871-6d0c-4992-8b02-5eba7d67f69b less more
1 id: 68079871-6d0c-4992-8b02-5eba7d67f69b
2 url: http://www.washingtonwinemaker.com/blog/2007/05/06/a-simple-mead/
+0
-2
data/links/68673643-a603-4fab-9c74-f5d98157b6aa less more
1 id: 68673643-a603-4fab-9c74-f5d98157b6aa
2 url: http://www.vanityfair.com/business/features/2011/03/michael-lewis-ireland-201103?printable=true
+0
-2
data/links/6869334f-8955-47a9-86d6-13edf417cd99 less more
1 id: 6869334f-8955-47a9-86d6-13edf417cd99
2 url: http://www.pokemonelite2000.com/sprites.html
+0
-2
data/links/6884f536-8f57-4749-a669-536bf48711d9 less more
1 id: 6884f536-8f57-4749-a669-536bf48711d9
2 url: http://thebigcaption.com/
+0
-2
data/links/68bcf64a-5f36-4d39-89ad-580e1e8f6040 less more
1 id: 68bcf64a-5f36-4d39-89ad-580e1e8f6040
2 url: http://stereotypist.livejournal.com/95987.html#cutid1
+0
-2
data/links/68ce5fc5-6e8a-4bf0-a61b-fa36b0729ba2 less more
1 id: 68ce5fc5-6e8a-4bf0-a61b-fa36b0729ba2
2 url: http://www.mazapan.se/games/BurnTheRope.php
+0
-2
data/links/6932b587-45bb-4d1c-a0ea-13252bd0cf3c less more
1 id: 6932b587-45bb-4d1c-a0ea-13252bd0cf3c
2 url: http://wonderingminstrels.blogspot.com/2001/10/shrinking-lonesome-sestina-miller.html
+0
-2
data/links/6936a1b4-fd60-48ad-b18a-63a5477e3d1c less more
1 id: 6936a1b4-fd60-48ad-b18a-63a5477e3d1c
2 url: http://www.instructables.com/id/DIY-Vinyl-Wall-Art/?ALLSTEPS
+0
-2
data/links/698a0fe0-7c67-4fd5-809c-cd03cdb5f692 less more
1 id: 698a0fe0-7c67-4fd5-809c-cd03cdb5f692
2 url: http://www.flickr.com/photos/ethanhein/sets/72157603838266990/
+0
-2
data/links/69a73e75-817c-4c2e-b45a-a549b2323e25 less more
1 id: 69a73e75-817c-4c2e-b45a-a549b2323e25
2 url: http://pixelatedcrumb.com/2011/05/12/cornmeal-lime-cookies/
+0
-2
data/links/69a7e672-c843-48c9-9f1b-32cc6a27039f less more
1 id: 69a7e672-c843-48c9-9f1b-32cc6a27039f
2 url: http://uk.youtube.com/watch?v=lSAExHBrfwU
+0
-2
data/links/69af0ce2-7160-424d-9ca7-b5bfd263886f less more
1 id: 69af0ce2-7160-424d-9ca7-b5bfd263886f
2 url: http://www.hackszine.com/blog/archive/2008/11/myvu_crystal_as_a_wearable_hea.html?CMP=OTC-7G2N43923558
+0
-2
data/links/69d2d66e-e3be-41fc-961b-f33fae04cbab less more
1 id: 69d2d66e-e3be-41fc-961b-f33fae04cbab
2 url: http://transmaterial.net/2008/03/luminescent-gravel.htm
+0
-2
data/links/69e149a8-cdce-4f37-ab4b-91848714f882 less more
1 id: 69e149a8-cdce-4f37-ab4b-91848714f882
2 url: http://www.themorningnews.org/archives/reviews/animated_films_for_grown-ups.php
+0
-2
data/links/6a333f84-e551-44ad-b500-1d8171a975d3 less more
1 id: 6a333f84-e551-44ad-b500-1d8171a975d3
2 url: http://ilovetypography.com/2008/09/10/designing-books-practice-and-theory/
+0
-2
data/links/6a344eb4-1e87-4935-ab02-1d02a9794fc4 less more
1 id: 6a344eb4-1e87-4935-ab02-1d02a9794fc4
2 url: http://digifesto.com/2015/01/09/horkheimer-and-wiener/
+0
-2
data/links/6a4ddc45-97c1-4675-b61f-618c1b279de2 less more
1 id: 6a4ddc45-97c1-4675-b61f-618c1b279de2
2 url: http://etext.lib.virginia.edu/toc/modeng/public/PreVarn.html
+0
-2
data/links/6a7b2aa9-16c9-4cd1-97d3-19f568fc15d9 less more
1 id: 6a7b2aa9-16c9-4cd1-97d3-19f568fc15d9
2 url: http://johnkenn.blogspot.com/
+0
-2
data/links/6a8fd441-34de-4258-9f33-892c7bb78a4b less more
1 id: 6a8fd441-34de-4258-9f33-892c7bb78a4b
2 url: http://www.theonion.com/content/node/27794
+0
-2
data/links/6b08a92d-1150-4833-894d-49fbdaefda5a less more
1 id: 6b08a92d-1150-4833-894d-49fbdaefda5a
2 url: http://www.youtube.com/watch?v=MTbX1aMajow
+0
-2
data/links/6b9c5e4d-30c1-4c67-80c0-dad58a97d8f6 less more
1 id: 6b9c5e4d-30c1-4c67-80c0-dad58a97d8f6
2 url: http://www.phillymag.com/articles/booboos_in_paradise/
+0
-2
data/links/6bb4add4-0de9-40d5-b364-06419c0be241 less more
1 id: 6bb4add4-0de9-40d5-b364-06419c0be241
2 url: http://latimesblogs.latimes.com/jacketcopy/2009/07/the-mostly-complete-annotated-and-essential-postmodern-reading-list.html
+0
-2
data/links/6bb5db84-3626-461a-990b-e44d018be27f less more
1 id: 6bb5db84-3626-461a-990b-e44d018be27f
2 url: http://upload.wikimedia.org/wikipedia/commons/e/e4/Santelia03.jpg
+0
-2
data/links/6c2cf8d9-7276-4e7e-b9fd-a528790755af less more
1 id: 6c2cf8d9-7276-4e7e-b9fd-a528790755af
2 url: https://github.com/rxin/db-readings
+0
-2
data/links/6c2fa2a5-281a-42ae-9bd9-b97290a3c740 less more
1 id: 6c2fa2a5-281a-42ae-9bd9-b97290a3c740
2 url: http://w2.eff.org/Misc/Publications/Bruce_Sterling/Catscan_columns/catscan.05
+0
-2
data/links/6c3f2e8b-aaff-495b-8afd-3b5688e55c4b less more
1 id: 6c3f2e8b-aaff-495b-8afd-3b5688e55c4b
2 url: http://winemaking.jackkeller.net/
+0
-2
data/links/6c8b5335-b9a5-4464-8ba5-b50f8561006b less more
1 id: 6c8b5335-b9a5-4464-8ba5-b50f8561006b
2 url: http://strangemaps.wordpress.com/
+0
-2
data/links/6ca45c71-3771-4ba1-bb21-e15bc5534361 less more
1 id: 6ca45c71-3771-4ba1-bb21-e15bc5534361
2 url: http://www.cheapshooter.com/2007/08/24/tilt-shift-photography-its-a-small-world-after-all/
+0
-2
data/links/6caba932-a02f-4753-9fa4-376bc7bfa52d less more
1 id: 6caba932-a02f-4753-9fa4-376bc7bfa52d
2 url: http://bldgblog.blogspot.com/2010/09/house-in-can.html
+0
-2
data/links/6ccc7f3e-4259-4a54-b794-062e4f83f347 less more
1 id: 6ccc7f3e-4259-4a54-b794-062e4f83f347
2 url: http://www.darkroastedblend.com/2007/08/worlds-smallest-vehicles.html
+0
-2
data/links/6cfef855-f929-496a-94d8-a82ac7f628d1 less more
1 id: 6cfef855-f929-496a-94d8-a82ac7f628d1
2 url: http://www.menuetos.net/
+0
-2
data/links/6d3b6aba-59d4-41db-8978-d3cca2c50ed8 less more
1 id: 6d3b6aba-59d4-41db-8978-d3cca2c50ed8
2 url: http://www.guardian.co.uk/music/2005/mar/20/popandrock1
+0
-2
data/links/6d625271-a305-4d94-a295-cc2a82af51bf less more
1 id: 6d625271-a305-4d94-a295-cc2a82af51bf
2 url: http://en.wikipedia.org/wiki/Patron_saints_of_ailments%2C_illness_and_dangers
+0
-2
data/links/6d6c3912-3da1-44fd-8ad5-958928e719de less more
1 id: 6d6c3912-3da1-44fd-8ad5-958928e719de
2 url: http://en.wikipedia.org/wiki/Vernor_Vinge
+0
-2
data/links/6d804870-6f75-42b2-a5ac-9bb8f7412862 less more
1 id: 6d804870-6f75-42b2-a5ac-9bb8f7412862
2 url: http://www.valvesoftware.com/publications.html
+0
-2
data/links/6d8b341d-5aae-493b-bbf4-f0c7f5f410a9 less more
1 id: 6d8b341d-5aae-493b-bbf4-f0c7f5f410a9
2 url: http://www.youtube.com/watch?v=dsBTo5LExr0&amp;eurl=
+0
-2
data/links/6da57394-fe7d-4f86-a3c1-b91a55758da0 less more
1 id: 6da57394-fe7d-4f86-a3c1-b91a55758da0
2 url: http://lifehacker.com/399468/top-10-command-line-tools
+0
-2
data/links/6dc427a6-af26-4c01-89ad-ffc5e5307d29 less more
1 id: 6dc427a6-af26-4c01-89ad-ffc5e5307d29
2 url: http://www.seriouseats.com/2014/09/diy-instant-noodle-cups-food-lab.html
+0
-2
data/links/6e937aae-74a2-46b6-8528-fdca51723728 less more
1 id: 6e937aae-74a2-46b6-8528-fdca51723728
2 url: http://www.dspguide.com/pdfbook.htm
+0
-2
data/links/6ec2fc9f-92c5-44b0-b7af-8bb9f6a87771 less more
1 id: 6ec2fc9f-92c5-44b0-b7af-8bb9f6a87771
2 url: http://designculturelab.org/2013/03/31/5-things-about-ubiquitous-computing-that-make-me-nervous/
+0
-2
data/links/6ec33d56-1462-4754-824e-995537407040 less more
1 id: 6ec33d56-1462-4754-824e-995537407040
2 url: http://en.wikipedia.org/wiki/1001_Albums_You_Must_Hear_Before_You_Die
+0
-2
data/links/6ec5e4e3-2764-4439-a9cc-44e8b871f48e less more
1 id: 6ec5e4e3-2764-4439-a9cc-44e8b871f48e
2 url: http://www.cs.rice.edu/~ssiyer/minstrels/poems/597.html
+0
-2
data/links/6ecba6ff-d961-43c8-95d6-76e7cc86a5f5 less more
1 id: 6ecba6ff-d961-43c8-95d6-76e7cc86a5f5
2 url: http://www.djcbsoftware.nl/code/mu/cheatsheet.html
+0
-2
data/links/6edfba9e-f5aa-49d6-9d1e-734a2214c871 less more
1 id: 6edfba9e-f5aa-49d6-9d1e-734a2214c871
2 url: http://pages.cs.wisc.edu/~remzi/OSTEP/
+0
-2
data/links/6eec1b62-98d2-4067-b72d-f3c43bec4732 less more
1 id: 6eec1b62-98d2-4067-b72d-f3c43bec4732
2 url: http://www.boston.com/bigpicture/2009/03/scenes_from_the_recession.html
+0
-2
data/links/6f41460b-f932-4d01-b550-0a262e1d02fd less more
1 id: 6f41460b-f932-4d01-b550-0a262e1d02fd
2 url: http://io9.com/396897/pixar-artist-eric-tan-talks-to-io9-about-wall+e-and-retro-design
+0
-2
data/links/6fa756ea-4748-437d-843c-84101e779c53 less more
1 id: 6fa756ea-4748-437d-843c-84101e779c53
2 url: http://www.flickr.com/photos/12786541@N00/sets/72157604084635308/
+0
-2
data/links/6fdc86a0-d038-4928-927a-1c1622470a14 less more
1 id: 6fdc86a0-d038-4928-927a-1c1622470a14
2 url: http://www.notmartha.org/archives/2011/09/07/styled-magazine/
+0
-2
data/links/70069b44-eebc-46e3-865d-f866082e90df less more
1 id: 70069b44-eebc-46e3-865d-f866082e90df
2 url: http://www.jwz.org/gruntle/music2010.html
+0
-2
data/links/700d4edc-2340-4ff7-a227-5143260ee585 less more
1 id: 700d4edc-2340-4ff7-a227-5143260ee585
2 url: http://imbibemagazine.com/Cherry-Bounce-Recipe
+0
-2
data/links/702c5a74-b386-4945-b748-bd043adfa281 less more
1 id: 702c5a74-b386-4945-b748-bd043adfa281
2 url: http://obiwannabe.co.uk/html/sound-design/sound-design-all.html
+0
-2
data/links/7044dd00-b8e7-402b-879f-b9197db2e57a less more
1 id: 7044dd00-b8e7-402b-879f-b9197db2e57a
2 url: http://www.jeffreymorgenthaler.com/2008/how-to-make-your-own-tonic-water/
+0
-2
data/links/704d0dfd-a234-4325-a91b-d431959a1f66 less more
1 id: 704d0dfd-a234-4325-a91b-d431959a1f66
2 url: http://www.raphnet.net/electronique/x2wii/index_en.php
+0
-2
data/links/707e9997-aba5-49a0-8a27-3ed0b8141392 less more
1 id: 707e9997-aba5-49a0-8a27-3ed0b8141392
2 url: http://www.flickr.com/photos/15238359@N00/2296416191/in/pool-make/
+0
-2
data/links/70e86ac2-bdd9-48f2-a742-880a002555f3 less more
1 id: 70e86ac2-bdd9-48f2-a742-880a002555f3
2 url: http://mrxdesigns.blogspot.com/2010/08/demo-book-1-part-1.html
+0
-2
data/links/70f41380-8373-4fe0-83ac-afd3170f61d4 less more
1 id: 70f41380-8373-4fe0-83ac-afd3170f61d4
2 url: http://theory.stanford.edu/~amitp/GameProgramming/
+0
-2
data/links/71123ab4-99a2-4ce8-a050-e29a78044691 less more
1 id: 71123ab4-99a2-4ce8-a050-e29a78044691
2 url: http://mitpress.mit.edu/sicp/full-text/book/book.html
+0
-2
data/links/71bffda5-a324-48a5-ab00-6426fd5f1a76 less more
1 id: 71bffda5-a324-48a5-ab00-6426fd5f1a76
2 url: http://www.delightfulrepast.com/2013/07/chicken-cobbler-chicken-pot-pie-with.html
+0
-2
data/links/71d22b63-ab52-4332-951f-c539c590f791 less more
1 id: 71d22b63-ab52-4332-951f-c539c590f791
2 url: http://www.swingswingsubmarine.com/games/seasons/
+0
-2
data/links/71f94770-1667-4f3c-821d-e9b776d9d01a less more
1 id: 71f94770-1667-4f3c-821d-e9b776d9d01a
2 url: http://www.scents-of-earth.com/makyourownna.html
+0
-2
data/links/72186b80-565e-45fb-aeab-fd444249f914 less more
1 id: 72186b80-565e-45fb-aeab-fd444249f914
2 url: http://www.flickr.com/photos/alphadesigner/3192055736/sizes/o/
+0
-2
data/links/722e71e6-af66-47e1-922c-4dc8e650d1d9 less more
1 id: 722e71e6-af66-47e1-922c-4dc8e650d1d9
2 url: http://michaelhallsmoore.com/blog/Guide_To_Theoretical_Physics
+0
-2
data/links/724fdff9-e0b4-4e5f-956e-a74a6caa9008 less more
1 id: 724fdff9-e0b4-4e5f-956e-a74a6caa9008
2 url: http://www.physics.nyu.edu/faculty/sokal/transgress_v2/transgress_v2_singlefile.html
+0
-2
data/links/729a6208-3c6a-46d3-af8e-ea6ea3db44ee less more
1 id: 729a6208-3c6a-46d3-af8e-ea6ea3db44ee
2 url: http://www.zaecherl.de/?p=222
+0
-2
data/links/72a39913-cd0a-4192-a47b-d7e34d993e50 less more
1 id: 72a39913-cd0a-4192-a47b-d7e34d993e50
2 url: http://dornob.com/wholly-solid-wood-home-totally-hardwood-house-design/
+0
-2
data/links/72aece3f-601c-4091-9c2f-90083ee4f6d0 less more
1 id: 72aece3f-601c-4091-9c2f-90083ee4f6d0
2 url: http://www.instructables.com/id/How_to_Strap_a_Leaf_Blower_Engine_to_a_Bike_and_Go/?ALLSTEPS
+0
-2
data/links/72d1aefe-2545-4b16-8cf9-7f2de9de5f39 less more
1 id: 72d1aefe-2545-4b16-8cf9-7f2de9de5f39
2 url: http://www.101cookbooks.com/archives/001422.html
+0
-2
data/links/72e66da6-12ba-4fe8-8946-6287212670f7 less more
1 id: 72e66da6-12ba-4fe8-8946-6287212670f7
2 url: http://exciting.io/2012/04/12/hello-printer/
+0
-2
data/links/72e9684f-a1a0-45f8-b6c4-94f8a71fb94b less more
1 id: 72e9684f-a1a0-45f8-b6c4-94f8a71fb94b
2 url: http://www.coolslang.com/in/Japan/PeraPera.php
+0
-2
data/links/730fae8c-4e70-4d82-8651-066e419afeef less more
1 id: 730fae8c-4e70-4d82-8651-066e419afeef
2 url: http://www.youtube.com/watch?v=lWWKBY7gx_0&amp;eurl=
+0
-2
data/links/7383d6a0-7261-4cf8-a91e-a0e8e8ba118d less more
1 id: 7383d6a0-7261-4cf8-a91e-a0e8e8ba118d
2 url: http://www.freewebs.com/worlds_away/linkswelike.htm
+0
-2
data/links/73adbf8e-9e56-4b72-b995-cdaf77006238 less more
1 id: 73adbf8e-9e56-4b72-b995-cdaf77006238
2 url: http://lifehacker.com/399277/processquicklink-makes-it-easy-to-find-out-what-a-process-does
+0
-2
data/links/745aee04-8303-4dff-ab81-7b2bb8aeb978 less more
1 id: 745aee04-8303-4dff-ab81-7b2bb8aeb978
2 url: http://citeseerx.ist.psu.edu/viewdoc/download;jsessionid=41E273B44E0BC41D9B3BCC6AEE3267BE?doi=10.1.1.28.9377&rep=rep1&type=pdf
+0
-2
data/links/7460e6f7-4261-4e7f-bd3a-6325c269025d less more
1 id: 7460e6f7-4261-4e7f-bd3a-6325c269025d
2 url: http://www.instructables.com/id/Growing-Plants-With-LED-Lights/
+0
-2
data/links/746f3a72-8236-46e2-8258-3f23d4aba9b8 less more
1 id: 746f3a72-8236-46e2-8258-3f23d4aba9b8
2 url: http://www.instructables.com/id/Color-Changing-Cocktails/?ALLSTEPS
+0
-2
data/links/746ff0b0-9792-4cc8-a364-6885266c46da less more
1 id: 746ff0b0-9792-4cc8-a364-6885266c46da
2 url: https://github.com/PressLabs/gitfs
+0
-2
data/links/7489d536-8476-4b57-b418-91ed5c9a23b0 less more
1 id: 7489d536-8476-4b57-b418-91ed5c9a23b0
2 url: http://www.usenet.com/newsgroups/sci.anthropology.paleo/msg02911.html
+0
-2
data/links/7496be1d-5ab5-4d16-93d7-c900de97b45e less more
1 id: 7496be1d-5ab5-4d16-93d7-c900de97b45e
2 url: http://hyperland.com/TedCompOneLiners
+0
-2
data/links/74a5667a-02a3-43ab-87bf-7943a2658c89 less more
1 id: 74a5667a-02a3-43ab-87bf-7943a2658c89
2 url: http://www.flickr.com/photos/omerk/2106342762/
+0
-2
data/links/74d0ec1d-b24d-4d24-8d3f-2ce469cb5b01 less more
1 id: 74d0ec1d-b24d-4d24-8d3f-2ce469cb5b01
2 url: http://press.princeton.edu/books/maor/
+0
-2
data/links/74d657b9-9cb2-4c13-9dea-d4bfc853c78f less more
1 id: 74d657b9-9cb2-4c13-9dea-d4bfc853c78f
2 url: http://mangerie.blogspot.com/2007/10/knoflookkoekjes.html
+0
-2
data/links/74ef54fe-208a-438f-ac5d-f5041c44f721 less more
1 id: 74ef54fe-208a-438f-ac5d-f5041c44f721
2 url: http://www.lindsaybks.com/dgjp/djgbk/char/index.html
+0
-2
data/links/7521637f-ea76-4fab-b751-38282a38c62e less more
1 id: 7521637f-ea76-4fab-b751-38282a38c62e
2 url: http://blog.fractalspin.com/neat-stuff/free-penguins
+0
-2
data/links/75246900-cd54-44b7-b6fc-86d89e12a96e less more
1 id: 75246900-cd54-44b7-b6fc-86d89e12a96e
2 url: http://issuu.com/golfstromen/docs/ken-isaacs-1974
+0
-2
data/links/75beb4b9-d954-4294-bb73-da41882bfcd3 less more
1 id: 75beb4b9-d954-4294-bb73-da41882bfcd3
2 url: http://www.glprogramming.com/red/
+0
-2
data/links/75c3dbc4-393f-4d03-93e2-5cb633f128de less more
1 id: 75c3dbc4-393f-4d03-93e2-5cb633f128de
2 url: http://thedesignersassistant.com/tag/11-point-dividers/
+0
-2
data/links/75f9d33b-695a-47a6-b16c-5f23aba29e88 less more
1 id: 75f9d33b-695a-47a6-b16c-5f23aba29e88
2 url: http://mythz.servicestack.net/blog/2013/02/27/the-deep-insights-of-alan-kay/
+0
-2
data/links/76080a48-4374-4733-9666-2e5d18244885 less more
1 id: 76080a48-4374-4733-9666-2e5d18244885
2 url: http://www.n-heptane.com/nhlab/repos/lambdabot-xmpp/State/quote
+0
-2
data/links/761453d7-4b27-4256-a984-0c8418552bf4 less more
1 id: 761453d7-4b27-4256-a984-0c8418552bf4
2 url: http://exceptindreams.livejournal.com/283757.html
+0
-2
data/links/763d5cb2-8d17-42a1-a948-b6c1db41e859 less more
1 id: 763d5cb2-8d17-42a1-a948-b6c1db41e859
2 url: http://www.theartofdrink.com/book/index.php
+0
-2
data/links/7643800c-445e-4e74-978d-fed3a0a9b57b less more
1 id: 7643800c-445e-4e74-978d-fed3a0a9b57b
2 url: http://lambda-the-ultimate.org/node/3963
+0
-2
data/links/7644f0a0-5a46-4895-92ab-624f2cfeaeb2 less more
1 id: 7644f0a0-5a46-4895-92ab-624f2cfeaeb2
2 url: http://web.archive.org/web/20110322084931/http://jc.tech-galaxy.com/bricka/earthlike_planet
+0
-2
data/links/7661fdc1-c31a-494d-8b4e-21cd10ae55dd less more
1 id: 7661fdc1-c31a-494d-8b4e-21cd10ae55dd
2 url: https://www.alchemistowl.org/pocorgtfo/pocorgtfo01.pdf
+0
-2
data/links/7678d362-d4af-4a15-8aae-659730aeab8a less more
1 id: 7678d362-d4af-4a15-8aae-659730aeab8a
2 url: http://consc.net/misc/proofs.html
+0
-2
data/links/76a798a0-f9ff-4e7b-8d6c-28949408afdf less more
1 id: 76a798a0-f9ff-4e7b-8d6c-28949408afdf
2 url: http://www.basicinstructions.net/
+0
-2
data/links/76cbc4c0-7a96-4042-88ca-191079925b27 less more
1 id: 76cbc4c0-7a96-4042-88ca-191079925b27
2 url: http://lowpass-dj.blogspot.com/
+0
-2
data/links/77136257-ab20-4ada-858c-93c2cfc7ad10 less more
1 id: 77136257-ab20-4ada-858c-93c2cfc7ad10
2 url: http://notepad-plus.sourceforge.net/uk/site.htm
+0
-2
data/links/77463e3d-c626-4df5-9958-c448de05fd4c less more
1 id: 77463e3d-c626-4df5-9958-c448de05fd4c
2 url: http://www.csse.monash.edu.au/~damian/papers/HTML/Perligata.html
+0
-2
data/links/777b8beb-f920-4603-9785-1d8fd80686c0 less more
1 id: 777b8beb-f920-4603-9785-1d8fd80686c0
2 url: http://www.angryzenmaster.com/2010/09/14/alan-moore-asks-why-havent-you-done-awesome-comics-in-the-past-25-years/?utm_source=feedburner
+0
-2
data/links/7798e372-9edd-401b-a6de-3faf4cdc879d less more
1 id: 7798e372-9edd-401b-a6de-3faf4cdc879d
2 url: http://www.fabulist.org/
+0
-2
data/links/77a9d069-0288-488d-8037-97c3201e2579 less more
1 id: 77a9d069-0288-488d-8037-97c3201e2579
2 url: http://www.seanmichaelragan.com/html/%5B2008-05-05%5D_Improvised_radial_alembic_for_DIY_steam_distillation.shtml
+0
-2
data/links/77f3786e-546f-426e-bbb6-fa8f1da0b315 less more
1 id: 77f3786e-546f-426e-bbb6-fa8f1da0b315
2 url: http://hydraraptor.blogspot.com/2007/06/day-music-died.html
+0
-2
data/links/780dbd53-50f8-4d04-af68-077841af1637 less more
1 id: 780dbd53-50f8-4d04-af68-077841af1637
2 url: http://www.aaronsw.com/weblog/books2010?v=3
+0
-2
data/links/7837af24-489a-4d9d-a7a6-63cd03be749a less more
1 id: 7837af24-489a-4d9d-a7a6-63cd03be749a
2 url: http://research.microsoft.com/en-us/um/cambridge/projects/comega/doc/comega_whatis.htm
+0
-2
data/links/786a2bf2-9a39-4ca4-a43e-bdca5ec1d01c less more
1 id: 786a2bf2-9a39-4ca4-a43e-bdca5ec1d01c
2 url: http://www.dapperstache.com/index.php?contenttype=ptoa
+0
-2
data/links/786e3107-8db6-4278-a5c2-4face0cf9924 less more
1 id: 786e3107-8db6-4278-a5c2-4face0cf9924
2 url: http://www.environmentalgraffiti.com/featured/20-most-incredible-light-phenomena-pics/1412
+0
-2
data/links/7875995c-e15a-4eed-9cec-e861746fc4e0 less more
1 id: 7875995c-e15a-4eed-9cec-e861746fc4e0
2 url: http://www.garycmartin.com/mouth_shapes.html
+0
-2
data/links/78cc9b4e-dec3-4ce3-a737-b1f721b6b4a6 less more
1 id: 78cc9b4e-dec3-4ce3-a737-b1f721b6b4a6
2 url: http://homepages.nildram.co.uk/~milnber/cliehowto.html
+0
-2
data/links/78f28bab-8823-4279-a753-bfb68fb578c8 less more
1 id: 78f28bab-8823-4279-a753-bfb68fb578c8
2 url: http://thenewinquiry.com/essays/against-ted/
+0
-2
data/links/7902fb2d-07df-4600-afb8-515d2298bdb7 less more
1 id: 7902fb2d-07df-4600-afb8-515d2298bdb7
2 url: http://jaspervdj.be/lorem-markdownum/
+0
-2
data/links/79309041-7c73-429f-b454-4d5a8cc9dee2 less more
1 id: 79309041-7c73-429f-b454-4d5a8cc9dee2
2 url: http://www.mattgilbert.net/article/17/gestural-speech-synth
+0
-2
data/links/793ffeb1-13b6-4dc6-bda4-66d3900e711f less more
1 id: 793ffeb1-13b6-4dc6-bda4-66d3900e711f
2 url: http://bottleworld.net/?p=157
+0
-2
data/links/7961973a-6bde-4fa6-8191-e7cbe0bfe371 less more
1 id: 7961973a-6bde-4fa6-8191-e7cbe0bfe371
2 url: http://www.paperwingspodcast.com/
+0
-2
data/links/79af3c95-bdc4-49c6-8472-6d8268fc77f0 less more
1 id: 79af3c95-bdc4-49c6-8472-6d8268fc77f0
2 url: http://blog.makezine.com/archive/2008/04/how_to_make_your_own_illu.html?CMP=OTC-0D6B48984890
+0
-2
data/links/79b0eb79-7390-4660-bd0f-b2f86a8a2223 less more
1 id: 79b0eb79-7390-4660-bd0f-b2f86a8a2223
2 url: http://drinks.seriouseats.com/2014/03/tiki-cocktail-history-basics-of-tiki-drinks-essential-ingredients.html
+0
-2
data/links/79c6c042-70ef-44d6-bc7b-635783843caf less more
1 id: 79c6c042-70ef-44d6-bc7b-635783843caf
2 url: http://youtube.com/watch?v=B4IUdv0U9T0
+0
-2
data/links/7a1ef031-a6fa-432c-8024-a25671ad942c less more
1 id: 7a1ef031-a6fa-432c-8024-a25671ad942c
2 url: http://www.youtube.com/watch?v=u6XAPnuFjJc
+0
-2
data/links/7a28cc0a-37b4-4bfc-a529-6317d3cb6bd8 less more
1 id: 7a28cc0a-37b4-4bfc-a529-6317d3cb6bd8
2 url: http://reprap.org/bin/view/Main/WebHome
+0
-2
data/links/7a3107ea-cbff-4958-a398-77089ae3f1a3 less more
1 id: 7a3107ea-cbff-4958-a398-77089ae3f1a3
2 url: http://www.pieria.co.uk/articles/the_many_straw_men_surrounding_marx
+0
-2
data/links/7a9583bc-b082-4f6d-86e5-7db4cb7ef05f less more
1 id: 7a9583bc-b082-4f6d-86e5-7db4cb7ef05f
2 url: http://www.ifwiki.org/index.php/Craft
+0
-2
data/links/7aab280d-0d2a-49e6-808f-a1cfe4c8cbbd less more
1 id: 7aab280d-0d2a-49e6-808f-a1cfe4c8cbbd
2 url: https://github.com/chrisdone/structured-haskell-mode
+0
-2
data/links/7ab3a35b-2157-4b84-9e05-eebd7a8bef26 less more
1 id: 7ab3a35b-2157-4b84-9e05-eebd7a8bef26
2 url: http://www.othmanismail.com/classes/GPH352/ReadingArticles/Design%20principles%20for%20the%20enhanced%20presentation%20of%20computer%20program%20source%20text.pdf
+0
-2
data/links/7acc392c-09c6-4839-a509-b5c1fc9fb555 less more
1 id: 7acc392c-09c6-4839-a509-b5c1fc9fb555
2 url: http://elektito.blogspot.com/2008/07/free-content-license-they-used-1800.html
+0
-2
data/links/7acf2f4d-2a5a-4b85-8632-e8c5f98d1bd6 less more
1 id: 7acf2f4d-2a5a-4b85-8632-e8c5f98d1bd6
2 url: http://www.kk.org/thetechnium/archives/2008/01/better_than_fre.php
+0
-2
data/links/7af116dc-968c-4544-8571-f0ab513a64f2 less more
1 id: 7af116dc-968c-4544-8571-f0ab513a64f2
2 url: http://www.youtube.com/watch?v=wrEPJh14mcU
+0
-2
data/links/7b08b90e-0fbf-4800-a971-111936652c49 less more
1 id: 7b08b90e-0fbf-4800-a971-111936652c49
2 url: http://www.kk.org/streetuse/archives/2008/05/wooden_bikes.php
+0
-2
data/links/7b106eb0-3220-4f71-87fd-e2a14bb2a551 less more
1 id: 7b106eb0-3220-4f71-87fd-e2a14bb2a551
2 url: http://notsohumblepie.blogspot.com/2010/02/sea-glass-candy.html
+0
-2
data/links/7b1befc8-0004-42c8-90ba-5ded18c0e4e3 less more
1 id: 7b1befc8-0004-42c8-90ba-5ded18c0e4e3
2 url: http://a-dire-fawn.itch.io/spaceoff
+0
-2
data/links/7b1e4d75-f917-4c08-94d6-bb433d60ff1a less more
1 id: 7b1e4d75-f917-4c08-94d6-bb433d60ff1a
2 url: http://www.kitchenriffs.com/2011/09/fettuccine-alfredo.html
+0
-2
data/links/7b205266-0c56-4cc7-adfe-382b4128c9fd less more
1 id: 7b205266-0c56-4cc7-adfe-382b4128c9fd
2 url: http://www.stackoverflow.com/questions/1669/learning-to-write-a-compiler
+0
-2
data/links/7b55b20d-a7d2-4224-81ea-a07e1e76807c less more
1 id: 7b55b20d-a7d2-4224-81ea-a07e1e76807c
2 url: http://infohost.nmt.edu/tcc/help/pubs/tkinter/index.html
+0
-2
data/links/7b8ca1cb-690e-46ab-a343-88f79ea83772 less more
1 id: 7b8ca1cb-690e-46ab-a343-88f79ea83772
2 url: http://www.hnsa.org/doc/foundry/
+0
-2
data/links/7b92997d-efb0-40c3-804e-815a15087104 less more
1 id: 7b92997d-efb0-40c3-804e-815a15087104
2 url: http://nlpwp.org/book/index.xhtml
+0
-2
data/links/7bb65b38-8b68-44d5-8554-024f1e446e92 less more
1 id: 7bb65b38-8b68-44d5-8554-024f1e446e92
2 url: http://diplomes.etapes.com/users/erwan-beauvir#design-des-savoirs-et-fiction-des-images-memoire
+0
-2
data/links/7bccf440-edad-40e2-9459-9cbd74785a77 less more
1 id: 7bccf440-edad-40e2-9459-9cbd74785a77
2 url: http://nedroid.com/bcpage1.html
+0
-2
data/links/7bd7cb56-3516-4f5c-b742-e8145c430210 less more
1 id: 7bd7cb56-3516-4f5c-b742-e8145c430210
2 url: http://librivox.org/
+0
-2
data/links/7c0f7a33-22b4-4154-a031-441d6ca5245a less more
1 id: 7c0f7a33-22b4-4154-a031-441d6ca5245a
2 url: http://theasiangrandmotherscookbook.wordpress.com/
+0
-2
data/links/7c46c217-ab38-4065-b430-6e9d7b45add1 less more
1 id: 7c46c217-ab38-4065-b430-6e9d7b45add1
2 url: http://tastesofhome.blogspot.com/2011/02/steamed-chinese-lotus-buns-recipe.html
+0
-2
data/links/7cb63220-645f-4014-a5d2-07b07a0d8d20 less more
1 id: 7cb63220-645f-4014-a5d2-07b07a0d8d20
2 url: http://www.yarnivore.com/francis/Holy_Tango.htm
+0
-2
data/links/7cd37b3d-44e9-4d22-8203-99ec2049fa4a less more
1 id: 7cd37b3d-44e9-4d22-8203-99ec2049fa4a
2 url: http://brassgoggles.co.uk/brassgoggles/200901/steampunk-guitar
+0
-2
data/links/7cef04eb-49be-413c-b7bb-a3dac5c27807 less more
1 id: 7cef04eb-49be-413c-b7bb-a3dac5c27807
2 url: http://esoteric.codes/
+0
-2
data/links/7d71d8ae-a226-4a49-8ded-59f6de549b5d less more
1 id: 7d71d8ae-a226-4a49-8ded-59f6de549b5d
2 url: http://missturdle.tumblr.com/post/52757340887/gee-i-dont-know-how-to-research-writing
+0
-2
data/links/7dc7051e-c7f8-49d0-b1b7-44858cccfd38 less more
1 id: 7dc7051e-c7f8-49d0-b1b7-44858cccfd38
2 url: http://myjelloamericans.blogspot.com/
+0
-2
data/links/7dfc8a91-cf09-4f79-a8c5-ba2921fd6076 less more
1 id: 7dfc8a91-cf09-4f79-a8c5-ba2921fd6076
2 url: http://www.zainsaraswatijamal.com/site/recipes/zains-signature-vitamin-water-five-flavours/
+0
-2
data/links/7e3d2b62-ff51-42b7-8be8-5d20026d4aea less more
1 id: 7e3d2b62-ff51-42b7-8be8-5d20026d4aea
2 url: http://ohhello.tv/index.php/work/view/microsoft_sustainability/
+0
-2
data/links/7e487db3-c26c-4f26-af7c-abedf460fcf6 less more
1 id: 7e487db3-c26c-4f26-af7c-abedf460fcf6
2 url: http://erkutlu.blogspot.com/2012/12/eeg-and-arduino-do-it-yourself-eeg-ekg.html
+0
-2
data/links/7e9602be-5071-4dbd-a4dd-677a2547d0b4 less more
1 id: 7e9602be-5071-4dbd-a4dd-677a2547d0b4
2 url: http://www.edge.org/q2005/q05_print.html
+0
-2
data/links/7edadda8-6a9c-4211-b8f4-7aacfa1fde2f less more
1 id: 7edadda8-6a9c-4211-b8f4-7aacfa1fde2f
2 url: http://www.nadir.org/nadir/archiv/netzkritik/societyofcontrol.html
+0
-2
data/links/7eed81e6-0a03-4474-aea3-47308f433992 less more
1 id: 7eed81e6-0a03-4474-aea3-47308f433992
2 url: http://userweb.cs.utexas.edu/users/EWD/transcriptions/EWD10xx/EWD1036.html
+0
-2
data/links/7f29431e-8409-433a-9b38-a4c5a21f3bdc less more
1 id: 7f29431e-8409-433a-9b38-a4c5a21f3bdc
2 url: http://lifehacker.com/5299484/uxstyle-allows-custom-windows-themes-without-patching
+0
-2
data/links/7f3a90b0-be7a-44a7-a747-788802168bb1 less more
1 id: 7f3a90b0-be7a-44a7-a747-788802168bb1
2 url: http://minimalistorgy.blogspot.com/
+0
-2
data/links/7f7c623d-fe2e-49d8-9f20-196c37db81c4 less more
1 id: 7f7c623d-fe2e-49d8-9f20-196c37db81c4
2 url: http://tomayko.com/writings/rest-to-my-wife
+0
-2
data/links/7f9c0774-b496-4f20-bfac-e6dcf683b463 less more
1 id: 7f9c0774-b496-4f20-bfac-e6dcf683b463
2 url: http://sconeborough.lmfao.org.uk/sb_31.html
+0
-2
data/links/7fb04462-f0ee-41ab-8a51-cce7fd288ee3 less more
1 id: 7fb04462-f0ee-41ab-8a51-cce7fd288ee3
2 url: http://buttercupfestival.com/col10vol2.htm
+0
-2
data/links/7fca4342-cd11-4b48-acd4-5d66dfe024db less more
1 id: 7fca4342-cd11-4b48-acd4-5d66dfe024db
2 url: http://www.instructables.com/id/Homemade-Plastic/?ALLSTEPS
+0
-2
data/links/7fcdc15c-2a22-47c7-9040-92ddcbf72127 less more
1 id: 7fcdc15c-2a22-47c7-9040-92ddcbf72127
2 url: http://www.youtube.com/watch?v=6hcoT6yxFoU
+0
-2
data/links/80294b90-c71d-4cb4-baa8-9f2167f68a4f less more
1 id: 80294b90-c71d-4cb4-baa8-9f2167f68a4f
2 url: http://www.functionx.com/win32/index.htm
+0
-2
data/links/802d95b0-0bd7-4764-8b6d-4b5bcae0ed6d less more
1 id: 802d95b0-0bd7-4764-8b6d-4b5bcae0ed6d
2 url: http://www.kokogiak.com/logolepsy/ow_a.html
+0
-2
data/links/80d390d0-9c34-4c83-8320-8636ebed74a8 less more
1 id: 80d390d0-9c34-4c83-8320-8636ebed74a8
2 url: http://tools.ietf.org/html/rfc4151
+0
-2
data/links/80e19136-0eec-4a84-98c6-d9d9bbb20ed2 less more
1 id: 80e19136-0eec-4a84-98c6-d9d9bbb20ed2
2 url: http://www.youtube.com/watch?v=egvznCDXvdE
+0
-2
data/links/80e4deb0-6e35-45df-9f13-a1449ab84ca2 less more
1 id: 80e4deb0-6e35-45df-9f13-a1449ab84ca2
2 url: http://imgur.com/KJ8QjPO,JfffpZg
+0
-2
data/links/811b55c9-8525-4c9e-8d88-4bf0463a4a9e less more
1 id: 811b55c9-8525-4c9e-8d88-4bf0463a4a9e
2 url: http://m-aziko.hopto.org/top%201000%20of%20the%20last%2030%20years/?C=M;O=A
+0
-2
data/links/812f217b-0e2e-451e-ad26-c5c139a2f13f less more
1 id: 812f217b-0e2e-451e-ad26-c5c139a2f13f
2 url: http://annies-eats.com/2009/10/09/boston-cream-pie/
+0
-2
data/links/816b7abd-d290-4a8b-9d4b-ec86c3e6b966 less more
1 id: 816b7abd-d290-4a8b-9d4b-ec86c3e6b966
2 url: http://www.youtube.com/watch?v=V5SpA-THE8M
+0
-2
data/links/81789d46-7599-4a29-81ca-fb489e043979 less more
1 id: 81789d46-7599-4a29-81ca-fb489e043979
2 url: http://www.quelsolaar.com/love/
+0
-2
data/links/819c0cd1-4c9a-4498-993a-caffdee1dd09 less more
1 id: 819c0cd1-4c9a-4498-993a-caffdee1dd09
2 url: http://cqs.livejournal.com/40687.html
+0
-2
data/links/81b0b156-d42d-4cc0-9759-8f339cd7a9ae less more
1 id: 81b0b156-d42d-4cc0-9759-8f339cd7a9ae
2 url: http://georgiapellegrini.com/2011/05/10/recipes/dandelion-wine/
+0
-2
data/links/81d0506e-95e4-443f-afb6-3854800cda0c less more
1 id: 81d0506e-95e4-443f-afb6-3854800cda0c
2 url: http://thesartorialist.blogspot.com/
+0
-2
data/links/81f644dd-e1de-4ffa-a798-08d4974373a3 less more
1 id: 81f644dd-e1de-4ffa-a798-08d4974373a3
2 url: http://blog.makezine.com/archive/2008/06/emoticon_mask_will_make_y.html
+0
-2
data/links/8225bcc1-91b0-4275-a652-14f897415fcc less more
1 id: 8225bcc1-91b0-4275-a652-14f897415fcc
2 url: http://www.snaiad.com/
+0
-2
data/links/82845830-8e9b-4af8-b5ae-ff67aca695cb less more
1 id: 82845830-8e9b-4af8-b5ae-ff67aca695cb
2 url: http://www.nongnu.org/regex-markup/
+0
-2
data/links/8299356a-0265-4ba7-94b8-b4d549428a51 less more
1 id: 8299356a-0265-4ba7-94b8-b4d549428a51
2 url: http://adaptivepath.com/aurora/
+0
-2
data/links/829d905c-3d10-49d9-bb8b-05067145b1b5 less more
1 id: 829d905c-3d10-49d9-bb8b-05067145b1b5
2 url: http://www.cs.huji.ac.il/~yweiss/Colorization/
+0
-2
data/links/82b3d967-20e8-473c-88e7-1779dea80a2c less more
1 id: 82b3d967-20e8-473c-88e7-1779dea80a2c
2 url: http://www.kirupa.com/lab/kville/index.htm
+0
-2
data/links/82ba2ba4-fb39-4347-9483-24938f33b4f9 less more
1 id: 82ba2ba4-fb39-4347-9483-24938f33b4f9
2 url: http://web.archive.org/web/20060813165009/http://www.microsoft.com/athome/security/children/leetspeak.mspx
+0
-2
data/links/83353783-db0d-41d0-9dad-b014b8605afa less more
1 id: 83353783-db0d-41d0-9dad-b014b8605afa
2 url: http://www.tnr.com/print/article/books/magazine/96116/the-internet-intellectual
+0
-2
data/links/833b0ef5-e4c7-4705-b6f0-404077ab2451 less more
1 id: 833b0ef5-e4c7-4705-b6f0-404077ab2451
2 url: http://www.ibm.com/developerworks/linux/library/l-memory/
+0
-2
data/links/8344f4e7-5f2b-47e6-b413-223aa79d1f51 less more
1 id: 8344f4e7-5f2b-47e6-b413-223aa79d1f51
2 url: http://www.remnantsofskystone.com/blog/
+0
-2
data/links/83558398-b980-4e82-9f96-a43e6fd6ac9b less more
1 id: 83558398-b980-4e82-9f96-a43e6fd6ac9b
2 url: http://www.instructables.com/id/How-to-make-moonshine/?ALLSTEPS
+0
-2
data/links/837bed80-00dc-488e-9426-52a5ac632361 less more
1 id: 837bed80-00dc-488e-9426-52a5ac632361
2 url: http://howto.wired.com/wiki/Infuse_Vodka
+0
-2
data/links/83a88476-8981-4c24-9576-629884a06e4f less more
1 id: 83a88476-8981-4c24-9576-629884a06e4f
2 url: http://www.artlebedev.com/everything/optimus/
+0
-2
data/links/83ede518-63c7-4ab3-902c-048187a6d3a4 less more
1 id: 83ede518-63c7-4ab3-902c-048187a6d3a4
2 url: http://www.tasteofhome.com/Recipes/Rose-Petal-Sorbet
+0
-2
data/links/83fd9d12-d9be-4070-a3b7-f70af9dac905 less more
1 id: 83fd9d12-d9be-4070-a3b7-f70af9dac905
2 url: http://pics.livejournal.com/54m4n7ha/pic/000c9ese.jpg
+0
-2
data/links/8433b427-55be-4e8a-ac93-6fe6a46206b1 less more
1 id: 8433b427-55be-4e8a-ac93-6fe6a46206b1
2 url: http://digital-photography-school.com/blog/how-to-make-digital-photos-look-like-lomo-photography/
+0
-2
data/links/84435c99-5e2a-4254-88cb-d13bc22942a0 less more
1 id: 84435c99-5e2a-4254-88cb-d13bc22942a0
2 url: http://chronicle.com/article/Faux-Friendship/49308/
+0
-2
data/links/844ffc1a-93b4-4e70-aef5-915ad4872612 less more
1 id: 844ffc1a-93b4-4e70-aef5-915ad4872612
2 url: bibliodyssey.blogspot.com/2012/01/calligraphy-letterform-album.html
+0
-2
data/links/84aad460-c373-4eef-b497-884fc17a0ac3 less more
1 id: 84aad460-c373-4eef-b497-884fc17a0ac3
2 url: http://www.lefthandedtoons.com/126/
+0
-2
data/links/84acef6c-6099-46bd-b728-37b21d13f88f less more
1 id: 84acef6c-6099-46bd-b728-37b21d13f88f
2 url: http://capx.wikia.com/wiki/Demo
+0
-2
data/links/84bf6ac7-a0d8-4d34-bcd7-c1a825c1f9c2 less more
1 id: 84bf6ac7-a0d8-4d34-bcd7-c1a825c1f9c2
2 url: http://fitzgen.github.com/pocco/
+0
-2
data/links/84d03f5d-964c-4deb-8b02-68331aceccd5 less more
1 id: 84d03f5d-964c-4deb-8b02-68331aceccd5
2 url: http://www.ottens.co.uk/gatehouse/index.php
+0
-2
data/links/84f34bfc-0988-4d0f-bbde-80609a49eb30 less more
1 id: 84f34bfc-0988-4d0f-bbde-80609a49eb30
2 url: http://www.borngeek.com/code/
+0
-2
data/links/850ad7e6-5e35-4181-a679-3272b966ae9e less more
1 id: 850ad7e6-5e35-4181-a679-3272b966ae9e
2 url: http://www.afrigadget.com/2008/09/04/innovations-in-a-slum-kibera-case-study/
+0
-2
data/links/854afb45-822c-4cbf-8569-65119d5fe417 less more
1 id: 854afb45-822c-4cbf-8569-65119d5fe417
2 url: http://www.instructables.com/id/Massage-me-Jacket/?ALLSTEPS
+0
-2
data/links/862e4162-dd9c-464c-b644-e54660767122 less more
1 id: 862e4162-dd9c-464c-b644-e54660767122
2 url: http://www.buttercupfestival.com/43vol3.htm
+0
-2
data/links/864b6a4d-46b7-4b80-a491-ab5d994dc46e less more
1 id: 864b6a4d-46b7-4b80-a491-ab5d994dc46e
2 url: http://www.nickyee.com/ponder/love.html
+0
-2
data/links/86a4fd76-7466-4161-b024-8ca1050ff9cd less more
1 id: 86a4fd76-7466-4161-b024-8ca1050ff9cd
2 url: http://thelongthread.com/?p=3750
+0
-2
data/links/86bd43b5-0f8e-436b-8720-cd1059477fa1 less more
1 id: 86bd43b5-0f8e-436b-8720-cd1059477fa1
2 url: http://bendyworks.com/geekville/lab_projects/2012/11/getting-plan-9-running-on-the-raspberry-pi
+0
-2
data/links/86c86366-ac77-4c9b-906e-6f401b3c398c less more
1 id: 86c86366-ac77-4c9b-906e-6f401b3c398c
2 url: http://www.indiegames.com/blog/2008/04/freeware_game_pick_yume_nikki.html
+0
-2
data/links/86d71a5c-bb7b-4693-ba83-ab31bc1e4d14 less more
1 id: 86d71a5c-bb7b-4693-ba83-ab31bc1e4d14
2 url: http://kitchen-parade-veggieventure.blogspot.com/2008/07/almonnaise.html
+0
-2
data/links/86e3ed61-f4e7-4443-8a6d-dacf21eb2e50 less more
1 id: 86e3ed61-f4e7-4443-8a6d-dacf21eb2e50
2 url: http://bldgblog.blogspot.com/2014/11/the-future-is-accessible-by-automobile.html
+0
-2
data/links/884cc76b-0159-48e9-b047-9ab01593f4b0 less more
1 id: 884cc76b-0159-48e9-b047-9ab01593f4b0
2 url: http://www.becausewecan.org/node/583
+0
-2
data/links/8851d70f-88ea-4a1b-a8a0-42054cdc038b less more
1 id: 8851d70f-88ea-4a1b-a8a0-42054cdc038b
2 url: http://dannyreviews.com/mypubs.html
+0
-2
data/links/88676b88-92bf-4199-8c58-a03e9893e6b2 less more
1 id: 88676b88-92bf-4199-8c58-a03e9893e6b2
2 url: https://www.thegamecrafter.com/
+0
-2
data/links/8869ffdd-4188-4287-a96a-9e1b98f68230 less more
1 id: 8869ffdd-4188-4287-a96a-9e1b98f68230
2 url: http://homepages.inf.ed.ac.uk/wadler/topics/monads.html
+0
-2
data/links/887746f9-143f-44f6-af83-a6ce60d941bb less more
1 id: 887746f9-143f-44f6-af83-a6ce60d941bb
2 url: http://www.slicedoranges.net/webomic_parodies.jpg
+0
-2
data/links/88958fa0-090c-4556-adc5-cb20a430c509 less more
1 id: 88958fa0-090c-4556-adc5-cb20a430c509
2 url: http://www.longnow.org/essays/richard-feynman-connection-machine/
+0
-2
data/links/88cc6269-d01a-4af9-8c3c-3050dae7fb27 less more
1 id: 88cc6269-d01a-4af9-8c3c-3050dae7fb27
2 url: http://www.tomaytotomaaahto.com/2010/02/ratatouille-dish-not-animated-pixar.html
+0
-2
data/links/890d2957-2e72-4063-8ab1-f0d7c765fad9 less more
1 id: 890d2957-2e72-4063-8ab1-f0d7c765fad9
2 url: http://fuckyeahladywriters.tumblr.com/
+0
-2
data/links/8942f89a-b95c-47d7-b8b9-de48730eab30 less more
1 id: 8942f89a-b95c-47d7-b8b9-de48730eab30
2 url: http://erictanart.blogspot.com/
+0
-2
data/links/89528e68-4218-4810-ba4a-01f88ebfd3b1 less more
1 id: 89528e68-4218-4810-ba4a-01f88ebfd3b1
2 url: http://pump.io/
+0
-2
data/links/89538d90-ae90-46be-8bf2-525380873898 less more
1 id: 89538d90-ae90-46be-8bf2-525380873898
2 url: http://www.826la.org/store/
+0
-2
data/links/8a24b556-0fdb-46c3-bbc2-2e431f49163d less more
1 id: 8a24b556-0fdb-46c3-bbc2-2e431f49163d
2 url: http://en.wikipedia.org/wiki/BasKet
+0
-2
data/links/8a28a26b-da81-44b0-8100-a6775d215507 less more
1 id: 8a28a26b-da81-44b0-8100-a6775d215507
2 url: http://www.puzzlescript.net/index.html
+0
-2
data/links/8a9119f4-0770-42dd-b7fb-00197de47ac5 less more
1 id: 8a9119f4-0770-42dd-b7fb-00197de47ac5
2 url: http://photo.net/editors-picks/2008/landscape-photography/
+0
-2
data/links/8ae52429-753d-4b41-b4fd-8f2770f6dfca less more
1 id: 8ae52429-753d-4b41-b4fd-8f2770f6dfca
2 url: http://www.keyglove.net/
+0
-2
data/links/8b1ae970-9ac4-44a3-95b2-04de29a7b968 less more
1 id: 8b1ae970-9ac4-44a3-95b2-04de29a7b968
2 url: http://alexds1.deviantart.com/art/Expression-tutorial-77399204
+0
-2
data/links/8b39c195-570c-4bba-ac59-5dbd017c29b0 less more
1 id: 8b39c195-570c-4bba-ac59-5dbd017c29b0
2 url: http://www.ankisrs.net/
+0
-2
data/links/8b5be776-aa78-4fe1-86ae-788302dd7313 less more
1 id: 8b5be776-aa78-4fe1-86ae-788302dd7313
2 url: http://www.terrorisland.net/strips/142.html
+0
-2
data/links/8bdd2624-399f-4c88-8b17-8e9f247543c3 less more
1 id: 8bdd2624-399f-4c88-8b17-8e9f247543c3
2 url: http://www.clockworkquartet.com/
+0
-2
data/links/8be2a529-81d2-4627-8fb7-2f94a0234fa2 less more
1 id: 8be2a529-81d2-4627-8fb7-2f94a0234fa2
2 url: http://lambda-the-ultimate.org/node/2981
+0
-2
data/links/8c1844c6-fe9f-4658-a8ed-ce1223438c87 less more
1 id: 8c1844c6-fe9f-4658-a8ed-ce1223438c87
2 url: http://imgur.com/a/9UGCL
+0
-2
data/links/8c2d09f6-e694-4438-8204-cfce76407849 less more
1 id: 8c2d09f6-e694-4438-8204-cfce76407849
2 url: http://www.seebs.net/faqs/c-iaq.html
+0
-2
data/links/8c4ac4a7-c8c5-4a26-b57f-4c0f2f51ca67 less more
1 id: 8c4ac4a7-c8c5-4a26-b57f-4c0f2f51ca67
2 url: http://homepage1.nifty.com/iberia/score_gallery.htm
+0
-2
data/links/8ce6e13a-e045-4879-a0df-92d8cab33aec less more
1 id: 8ce6e13a-e045-4879-a0df-92d8cab33aec
2 url: http://mcsweeneys.net/2008/1/28liebert.html
+0
-2
data/links/8ced86b0-5c3c-40d8-923d-8fbacce6c5b7 less more
1 id: 8ced86b0-5c3c-40d8-923d-8fbacce6c5b7
2 url: http://www.vanderburg.org/Misc/Quotes/quotes.html
+0
-2
data/links/8d07dbac-f78b-4996-b40d-04fde48fae65 less more
1 id: 8d07dbac-f78b-4996-b40d-04fde48fae65
2 url: http://groups.yahoo.com/group/tokipona/message/54
+0
-2
data/links/8d288177-07cf-46e8-884a-1aa6e4406b69 less more
1 id: 8d288177-07cf-46e8-884a-1aa6e4406b69
2 url: http://www.youtube.com/watch?v=W95z1DqOIUg
+0
-2
data/links/8d462a9b-4255-44fb-97f7-15f6c407285d less more
1 id: 8d462a9b-4255-44fb-97f7-15f6c407285d
2 url: http://www.hongkiat.com/blog/pixel-based-websites/
+0
-2
data/links/8d5ae4bc-f3b8-4776-84b7-e285ae969735 less more
1 id: 8d5ae4bc-f3b8-4776-84b7-e285ae969735
2 url: http://gizmodo.com/347479/wiimote-hack-converts-tv-into-touchless-microsoft-surface
+0
-2
data/links/8d655327-6db8-49bf-bd78-dd9f3104ef3f less more
1 id: 8d655327-6db8-49bf-bd78-dd9f3104ef3f
2 url: http://www.instructables.com/id/Pacircte_de_Fruits/?ALLSTEPS
+0
-2
data/links/8d75c6d1-720d-4c29-8ed4-ba306a152f38 less more
1 id: 8d75c6d1-720d-4c29-8ed4-ba306a152f38
2 url: http://book.realworldhaskell.org/
+0
-2
data/links/8df00d79-eeb2-4d63-a6df-872c8fbfd560 less more
1 id: 8df00d79-eeb2-4d63-a6df-872c8fbfd560
2 url: http://cdl.library.cornell.edu/moa/
+0
-2
data/links/8e0737d8-083a-44dd-8dd2-66df686d72c3 less more
1 id: 8e0737d8-083a-44dd-8dd2-66df686d72c3
2 url: http://fvisser.nl/clay/
+0
-2
data/links/8e264fe1-5014-4c7b-9032-de30cfb36922 less more
1 id: 8e264fe1-5014-4c7b-9032-de30cfb36922
2 url: http://center.uoregon.edu/ISTE/NECC2008/program/search_results_details.php?sessionid=42074064&amp;selection_id=42817035&amp;rownumber=1&amp;max=1&amp;gopage=
+0
-2
data/links/8e4126b5-99d3-49ff-85fa-30355c16e0f2 less more
1 id: 8e4126b5-99d3-49ff-85fa-30355c16e0f2
2 url: http://www.johnuibel.com/
+0
-2
data/links/8e7177c0-1411-46f1-9496-45d8d0d993e5 less more
1 id: 8e7177c0-1411-46f1-9496-45d8d0d993e5
2 url: http://semantic-domain.blogspot.com/2014/10/focusing-is-not-call-by-push-value.html
+0
-2
data/links/8e849782-8c59-49de-9536-8152b5771e60 less more
1 id: 8e849782-8c59-49de-9536-8152b5771e60
2 url: http://starship.python.net/crew/mwh/quotes.html
+0
-2
data/links/8ea5a05c-8373-4887-b8a5-1734f73b75b3 less more
1 id: 8ea5a05c-8373-4887-b8a5-1734f73b75b3
2 url: http://www.terjemar.net/kelen.php
+0
-2
data/links/8eac2ecf-be63-4870-afeb-aff9c12cb2cf less more
1 id: 8eac2ecf-be63-4870-afeb-aff9c12cb2cf
2 url: http://michaelshannon.us/makeabook/index.html
+0
-2
data/links/8f1aed54-905c-469e-bb28-61affa1ea58f less more
1 id: 8f1aed54-905c-469e-bb28-61affa1ea58f
2 url: http://www.fullyramblomatic.com/noexpne.htm
+0
-2
data/links/8f24d51c-caab-42aa-94ab-d476f4d18309 less more
1 id: 8f24d51c-caab-42aa-94ab-d476f4d18309
2 url: http://blog.rafaelferreira.net/2008/04/couple-of-interesting-dsls.html
+0
-2
data/links/8f37c32f-5698-4a1b-8612-92fce6b97c6f less more
1 id: 8f37c32f-5698-4a1b-8612-92fce6b97c6f
2 url: http://www.theanticraft.com/archive/beltane07/lavender.htm
+0
-2
data/links/8f77d29a-b8ba-4f80-9fee-7b615a2ee50c less more
1 id: 8f77d29a-b8ba-4f80-9fee-7b615a2ee50c
2 url: https://github.com/unconed/TermKit
+0
-2
data/links/8f874b11-3292-4c32-8b21-607b65e6b698 less more
1 id: 8f874b11-3292-4c32-8b21-607b65e6b698
2 url: http://www.tastespotting.com/
+0
-2
data/links/8f9aee70-1693-4567-a087-456dbd17025d less more
1 id: 8f9aee70-1693-4567-a087-456dbd17025d
2 url: http://www.tor.com/index.php?option=com_content
+0
-2
data/links/8fa9a73c-54b2-4ca5-8a1c-23ea095320e4 less more
1 id: 8fa9a73c-54b2-4ca5-8a1c-23ea095320e4
2 url: http://www.usingmac.com/2008/7/28/200-mind-blowing-nature-wallpapers
+0
-2
data/links/8fe22938-7188-44a5-a30d-a6b2044095f0 less more
1 id: 8fe22938-7188-44a5-a30d-a6b2044095f0
2 url: http://www.doc.ic.ac.uk/~wlj05/files/Deconstraining.pdf
+0
-2
data/links/8ff4ac6b-ac69-4064-967d-11f49359b5ac less more
1 id: 8ff4ac6b-ac69-4064-967d-11f49359b5ac
2 url: http://trac.mlalonde.net/Ethduino/wiki
+0
-2
data/links/906a4aad-093d-4d21-b89d-4a7b5e433600 less more
1 id: 906a4aad-093d-4d21-b89d-4a7b5e433600
2 url: http://alsday.tumblr.com/post/83838560720/trove
+0
-2
data/links/907e8331-7a29-4c01-8487-9ea51aced9b7 less more
1 id: 907e8331-7a29-4c01-8487-9ea51aced9b7
2 url: http://www.daniels.net.nz/2009/05/31/block-facebook-quizzes-from-your-news-feed/
+0
-2
data/links/9090a80d-69b8-4342-9684-f7964682fea6 less more
1 id: 9090a80d-69b8-4342-9684-f7964682fea6
2 url: http://www.ectomo.com/wp-content/uploads/2008/07/2669186954_612df3b189_o.jpg
+0
-2
data/links/90c4a992-e307-4db5-8d92-c754e4a0586a less more
1 id: 90c4a992-e307-4db5-8d92-c754e4a0586a
2 url: http://www.machall.com/view.php?date=2006-04-24
+0
-2
data/links/9123104a-19f6-4d00-9524-2f7069085ad6 less more
1 id: 9123104a-19f6-4d00-9524-2f7069085ad6
2 url: http://www.dugnorth.com/blog/2008/03/reciprocating-motion-from-rotating-on.html
+0
-2
data/links/913944ef-de19-41e0-82ad-8caee4caa0cb less more
1 id: 913944ef-de19-41e0-82ad-8caee4caa0cb
2 url: http://en.wikipedia.org/wiki/Google_Lively
+0
-2
data/links/914d4fbe-9ba1-44c9-885c-d65e0d0df606 less more
1 id: 914d4fbe-9ba1-44c9-885c-d65e0d0df606
2 url: http://search.cpan.org/dist/MP3-Daemon/bin/mp3
+0
-2
data/links/91666f04-0c87-4189-8296-6085d72814ee less more
1 id: 91666f04-0c87-4189-8296-6085d72814ee
2 url: http://regional-italian-specialties.suite101.com/article.cfm/grattachecca
+0
-2
data/links/91900762-8d90-42f9-b4bd-2d39f4127af3 less more
1 id: 91900762-8d90-42f9-b4bd-2d39f4127af3
2 url: http://www.saveur.com/article/travels/City-Dozen-Chris-Onstad-and-Sarah-Kanabays-Portland-Oregon
+0
-2
data/links/919c3b9c-2ef0-4138-bdb8-dc21c4714aab less more
1 id: 919c3b9c-2ef0-4138-bdb8-dc21c4714aab
2 url: http://strlen.com/lobster
+0
-2
data/links/91dba200-a9da-467f-b601-fc153d39a9f9 less more
1 id: 91dba200-a9da-467f-b601-fc153d39a9f9
2 url: http://swordandbackpack.tumblr.com/post/47031468824/sword-backpack-rpg-is-here-here-it-is-the
+0
-2
data/links/91e5a655-b0d6-4dfd-a1cf-935503133b01 less more
1 id: 91e5a655-b0d6-4dfd-a1cf-935503133b01
2 url: https://hacks.mozilla.org/2013/03/shiva-more-than-a-restful-api-to-your-music-collection/
+0
-2
data/links/91f587c5-2979-4d75-8242-b74a4f02cbf5 less more
1 id: 91f587c5-2979-4d75-8242-b74a4f02cbf5
2 url: http://www.instructables.com/id/SYN0EJOF3C4XMH2/?ALLSTEPS
+0
-2
data/links/929e59e2-d946-41e4-a3ce-d514a915584c less more
1 id: 929e59e2-d946-41e4-a3ce-d514a915584c
2 url: http://www.darkroastedblend.com/2007/10/worlds-strangest-vehicles-part-3.html
+0
-2
data/links/92d24a3f-2ee2-4f95-bcd7-d6f8c3569878 less more
1 id: 92d24a3f-2ee2-4f95-bcd7-d6f8c3569878
2 url: http://www.cix.co.uk/~smallmemory/book.html
+0
-2
data/links/92fe1660-fbea-4a56-9548-9586e5c55d2a less more
1 id: 92fe1660-fbea-4a56-9548-9586e5c55d2a
2 url: http://pagead2.googlesyndication.com/pagead/imgad?id=COWluLX5sreH7QEQ2AUYTzIITb2dAJR_cFU
+0
-2
data/links/930cb7d8-c809-40c1-9588-a89fe2ed3b69 less more
1 id: 930cb7d8-c809-40c1-9588-a89fe2ed3b69
2 url: http://games.slashdot.org/article.pl?sid=08/02/25/1940203&amp;from=rss
+0
-2
data/links/9310f14b-a815-45e4-83e6-6b2a39745516 less more
1 id: 9310f14b-a815-45e4-83e6-6b2a39745516
2 url: http://www.electrondance.com/stop-crying-about-choice/
+0
-2
data/links/9340c45f-73a6-4891-9de5-d156cead379f less more
1 id: 9340c45f-73a6-4891-9de5-d156cead379f
2 url: http://consc.net/misc/moreproofs.html
+0
-2
data/links/93681acd-5344-45f0-bc2f-ec6917128dfc less more
1 id: 93681acd-5344-45f0-bc2f-ec6917128dfc
2 url: http://en.wikipedia.org/wiki/Kaiseki
+0
-2
data/links/93a0366b-2fbc-4ef2-a9af-d9a9bf03d1e2 less more
1 id: 93a0366b-2fbc-4ef2-a9af-d9a9bf03d1e2
2 url: http://webdesignledger.com/resources/10-incredible-sites-to-improve-your-typography-skills
+0
-2
data/links/94082138-a140-48ca-af4b-d5b1911116c5 less more
1 id: 94082138-a140-48ca-af4b-d5b1911116c5
2 url: http://www.nukees.com/d/19970718.html
+0
-2
data/links/94467dae-03bc-4245-b32b-24e590a70dab less more
1 id: 94467dae-03bc-4245-b32b-24e590a70dab
2 url: http://www.flickr.com/photos/foam/sets/72157610724467408/with/3507038448/
+0
-2
data/links/9456363f-177b-4cda-b141-6537049d6da2 less more
1 id: 9456363f-177b-4cda-b141-6537049d6da2
2 url: http://ase.tufts.edu/cogstud/papers/quinqual.htm
+0
-2
data/links/9469d83e-a908-460f-8369-4b4b9919ec1a less more
1 id: 9469d83e-a908-460f-8369-4b4b9919ec1a
2 url: http://www.motorcyclenews.com/MCN/News/newsresults/mcn/2008/april/14-20/apr1408inventorcreatesfirstairpoweredmotorcycle/?R=EPI-99845
+0
-2
data/links/948af8c8-28b4-4a75-8823-96ad340671fa less more
1 id: 948af8c8-28b4-4a75-8823-96ad340671fa
2 url: http://www.jwz.org/blog/2012/06/ghosts-with-shit-jobs-2/
+0
-2
data/links/94c419b3-c355-47e9-a4d3-7d4c6f079193 less more
1 id: 94c419b3-c355-47e9-a4d3-7d4c6f079193
2 url: http://www.engadget.com/2008/08/16/video-tech-uses-photos-to-enhance-alter-shots-its-the-photosh/
+0
-2
data/links/94d2a465-eb74-450e-8150-04c995c943ca less more
1 id: 94d2a465-eb74-450e-8150-04c995c943ca
2 url: http://www.hlcomic.com/index.php?date=2006-07-17
+0
-2
data/links/950d5065-eb1b-4ca2-b039-a8afbcefa6f9 less more
1 id: 950d5065-eb1b-4ca2-b039-a8afbcefa6f9
2 url: http://forums.bit-tech.net/showthread.php?t=142491
+0
-2
data/links/950fda7f-0dfb-4f57-be76-8a6817579e5c less more
1 id: 950fda7f-0dfb-4f57-be76-8a6817579e5c
2 url: http://users.aber.ac.uk/auj/kitchen/tea.shtml
+0
-2
data/links/9552c30e-2f89-490f-b163-87ec76092fcf less more
1 id: 9552c30e-2f89-490f-b163-87ec76092fcf
2 url: https://github.com/fsquillace/juju
+0
-2
data/links/95604e54-16a7-45d8-94ac-a96c8a4b1daf less more
1 id: 95604e54-16a7-45d8-94ac-a96c8a4b1daf
2 url: http://individual.utoronto.ca/iizuka/research/cellophane.htm
+0
-2
data/links/957f6599-cfd4-495b-9d57-a3020d93f859 less more
1 id: 957f6599-cfd4-495b-9d57-a3020d93f859
2 url: http://en.wikipedia.org/wiki/List_of_landforms
+0
-2
data/links/95b4ef0a-f5d4-4ae2-a4a6-8cd3ba0e75b2 less more
1 id: 95b4ef0a-f5d4-4ae2-a4a6-8cd3ba0e75b2
2 url: http://www.chinesepython.org/cgi_bin/cgb.cgi/home.html
+0
-2
data/links/95b994dc-74c3-4ce6-b237-3cac0afd6e87 less more
1 id: 95b994dc-74c3-4ce6-b237-3cac0afd6e87
2 url: http://maketecheasier.com/turn-your-ubuntu-hardy-to-mac-osx-leopard/2008/07/23/
+0
-2
data/links/96263caa-ce79-42f2-878a-73f2c48711fe less more
1 id: 96263caa-ce79-42f2-878a-73f2c48711fe
2 url: http://www.layers-of-learning.com/medieval-book-making-craft/
+0
-2
data/links/96bbec0f-9c3b-4cf3-a470-3f3361721511 less more
1 id: 96bbec0f-9c3b-4cf3-a470-3f3361721511
2 url: http://mangerie.blogspot.com/2007/10/knoflookkoekjes.html
+0
-2
data/links/96bc3acb-e924-4ec4-89af-c5809f0babe7 less more
1 id: 96bc3acb-e924-4ec4-89af-c5809f0babe7
2 url: http://www.instructables.com/id/How-to-make-huge-posters./?ALLSTEPS
+0
-2
data/links/96e81dfb-202a-42ab-b734-8bd4cae97bf9 less more
1 id: 96e81dfb-202a-42ab-b734-8bd4cae97bf9
2 url: http://www.joindiaspora.com/2010/09/15/developer-release.html
+0
-2
data/links/9729b184-2123-412d-9e9c-48d45c8d09c6 less more
1 id: 9729b184-2123-412d-9e9c-48d45c8d09c6
2 url: http://www.insultme.net/
+0
-2
data/links/9749ce81-d6c2-4df5-998a-ee22c0ebdd24 less more
1 id: 9749ce81-d6c2-4df5-998a-ee22c0ebdd24
2 url: http://en.wikipedia.org/wiki/Edward_Plunkett,_18th_Baron_Dunsany
+0
-2
data/links/976429ae-ae5b-4e6a-afee-4c3771c380d6 less more
1 id: 976429ae-ae5b-4e6a-afee-4c3771c380d6
2 url: http://music-suite.github.io/docs/ref/
+0
-2
data/links/97ac0846-039b-4afd-bde3-5aa074fbdef9 less more
1 id: 97ac0846-039b-4afd-bde3-5aa074fbdef9
2 url: http://www.inhabitat.com/2008/06/16/no-mans-land-innovative-architecture-in-the-dead-sea/
+0
-2
data/links/9836251e-b003-4870-88da-87f54ad6c285 less more
1 id: 9836251e-b003-4870-88da-87f54ad6c285
2 url: http://northflame.com/Concepts_sketches.htm
+0
-2
data/links/9841d836-2038-4db0-9935-38ee2aba8944 less more
1 id: 9841d836-2038-4db0-9935-38ee2aba8944
2 url: http://www.cse.dmu.ac.uk/~mward/gkc/books/queertrades/cqtchap1.html
+0
-2
data/links/986f29d7-f1d9-4df8-bff4-fd966a1a1a32 less more
1 id: 986f29d7-f1d9-4df8-bff4-fd966a1a1a32
2 url: http://www.atrianglemorning.com/DEARBLOG/2008/05/14/fat-dinosaurs/
+0
-2
data/links/988e4a55-2ff0-47be-8a7a-1cbdc73c5b78 less more
1 id: 988e4a55-2ff0-47be-8a7a-1cbdc73c5b78
2 url: http://www.pointlesswasteoftime.com/games/wargames.html
+0
-2
data/links/989b1567-4c15-4102-9342-ff59e85b294a less more
1 id: 989b1567-4c15-4102-9342-ff59e85b294a
2 url: http://vulpinoid.blogspot.com.au/2014/03/a-new-game-format-pocketscroll.html
+0
-2
data/links/98aca857-3df1-412b-a918-5829de7fff49 less more
1 id: 98aca857-3df1-412b-a918-5829de7fff49
2 url: http://www.instructables.com/id/Easy_Southern_Style_Biscuits_and_Gravy/?ALLSTEPS
+0
-2
data/links/9933bc60-76b7-470b-917b-09369dcc037c less more
1 id: 9933bc60-76b7-470b-917b-09369dcc037c
2 url: http://en.wikipedia.org/wiki/Expeditus
+0
-2
data/links/99342669-a113-4f34-8a09-0a53cc9dc3fd less more
1 id: 99342669-a113-4f34-8a09-0a53cc9dc3fd
2 url: https://chocolatey.org/
+0
-2
data/links/9960daa9-418f-49b4-a95d-e27b345a9daf less more
1 id: 9960daa9-418f-49b4-a95d-e27b345a9daf
2 url: http://lispm.de/symbolics-lisp-machine-ergonomics
+0
-2
data/links/99ae0c9c-bcbe-4bac-bd86-23a57bf1424a less more
1 id: 99ae0c9c-bcbe-4bac-bd86-23a57bf1424a
2 url: http://jeffhuang.com/best_paper_awards.html#
+0
-2
data/links/99cb3141-efac-4b70-8813-2bde8ac1a469 less more
1 id: 99cb3141-efac-4b70-8813-2bde8ac1a469
2 url: http://weblog.jamisbuck.org/2011/2/7/maze-generation-algorithm-recap
+0
-2
data/links/99e20ed5-2eb1-42be-8c89-8dd4184df3a1 less more
1 id: 99e20ed5-2eb1-42be-8c89-8dd4184df3a1
2 url: http://www.textfiles.com/food/beer.txt
+0
-2
data/links/99e5b5a2-2985-4596-8702-76954c454d95 less more
1 id: 99e5b5a2-2985-4596-8702-76954c454d95
2 url: http://www.cs.brown.edu/~sk/Publications/Papers/Published/sk-teach-pl-post-linnaean/
+0
-2
data/links/9a3120c7-20ac-4e79-a91d-4b3744c8d808 less more
1 id: 9a3120c7-20ac-4e79-a91d-4b3744c8d808
2 url: http://notsohumblepie.blogspot.com/2010/02/omnomruffles.html
+0
-2
data/links/9a3b0583-d262-459e-a44c-ad9df2ccd373 less more
1 id: 9a3b0583-d262-459e-a44c-ad9df2ccd373
2 url: http://www.technovelgy.com/ct/ctnlistalpha.asp
+0
-2
data/links/9aac4c0d-9619-41ac-af36-72f348d55055 less more
1 id: 9aac4c0d-9619-41ac-af36-72f348d55055
2 url: http://evincarofautumn.blogspot.com/2012/02/why-concatenative-programming-matters.html
+0
-2
data/links/9ad98d31-0fdb-4bd9-aa32-72d7c473f22e less more
1 id: 9ad98d31-0fdb-4bd9-aa32-72d7c473f22e
2 url: http://www.lunarbistro.com/art/8-bit_tarot/
+0
-2
data/links/9b0888ba-6ffe-4844-8431-c66caccde7b1 less more
1 id: 9b0888ba-6ffe-4844-8431-c66caccde7b1
2 url: http://www.cca.org/mpsh/
+0
-2
data/links/9b1568d9-79d1-4857-8cd4-39b5bd858cd3 less more
1 id: 9b1568d9-79d1-4857-8cd4-39b5bd858cd3
2 url: http://glench.com/misc/buttercup_festival.html
+0
-2
data/links/9b550c6e-45d3-4d8c-85fd-aeb02fd4296c less more
1 id: 9b550c6e-45d3-4d8c-85fd-aeb02fd4296c
2 url: http://tincanforest.blogspot.ca/
+0
-2
data/links/9b6b7f89-6435-473c-8d56-e540d6c11b4c less more
1 id: 9b6b7f89-6435-473c-8d56-e540d6c11b4c
2 url: http://reaktorplayer.wordpress.com/
+0
-2
data/links/9b95dd91-b7cd-4002-a016-38c3b74d7ac0 less more
1 id: 9b95dd91-b7cd-4002-a016-38c3b74d7ac0
2 url: http://www.dharmatrading.com/
+0
-2
data/links/9bee4ac8-03ed-4ef7-8bbb-7ff60afdfe40 less more
1 id: 9bee4ac8-03ed-4ef7-8bbb-7ff60afdfe40
2 url: http://kottke.org/10/09/how-to-be-alone
+0
-2
data/links/9c17d113-408d-4be1-ae7e-9ffe76811b07 less more
1 id: 9c17d113-408d-4be1-ae7e-9ffe76811b07
2 url: http://www.reesley.com/guitar.html
+0
-2
data/links/9c497329-422a-4035-b41c-a7aa2e2e887c less more
1 id: 9c497329-422a-4035-b41c-a7aa2e2e887c
2 url: http://io9.com/5918839/must-read-neil-gaimans-tribute-to-ray-bradbury
+0
-2
data/links/9c8bc85b-fa90-486f-a595-1d53b8fb32b2 less more
1 id: 9c8bc85b-fa90-486f-a595-1d53b8fb32b2
2 url: http://compilers.iecc.com/crenshaw/
+0
-2
data/links/9cb55397-fe3c-41cd-a02a-4ca3acfb0130 less more
1 id: 9cb55397-fe3c-41cd-a02a-4ca3acfb0130
2 url: http://aidosaur.tumblr.com/post/3050303689/recommend-these-dudes
+0
-2
data/links/9cc436a2-6a75-4a6c-b771-4334fcef41ac less more
1 id: 9cc436a2-6a75-4a6c-b771-4334fcef41ac
2 url: http://www.spxpo.com/ignatz.shtml
+0
-2
data/links/9ccd493b-fe1c-4b8e-8f45-2fa18a513e08 less more
1 id: 9ccd493b-fe1c-4b8e-8f45-2fa18a513e08
2 url: http://www.bigquestionsonline.com/columns/michael-shermer/einstein%E2%80%99s-god
+0
-2
data/links/9cdcae3e-c946-4274-86e6-716407244175 less more
1 id: 9cdcae3e-c946-4274-86e6-716407244175
2 url: http://www.youtube.com/watch?v=-NKXNThJ610
+0
-2
data/links/9ce696f2-dbb4-48b7-a02c-bfa348906653 less more
1 id: 9ce696f2-dbb4-48b7-a02c-bfa348906653
2 url: http://www.shortpacked.com/index.html
+0
-2
data/links/9cef4c98-7535-4129-a676-7a17f8c3d76e less more
1 id: 9cef4c98-7535-4129-a676-7a17f8c3d76e
2 url: http://www.youtube.com/watch?v=4VWuqpTSFGA
+0
-2
data/links/9d0a7ac6-2dcb-4476-a191-5eabd228de0b less more
1 id: 9d0a7ac6-2dcb-4476-a191-5eabd228de0b
2 url: http://fuckyeahgaiman.tumblr.com/post/3241458372/starflavoredspaghettisauce-very-few-people
+0
-2
data/links/9d0d1850-5669-4f84-9c84-64ccab7b889c less more
1 id: 9d0d1850-5669-4f84-9c84-64ccab7b889c
2 url: http://www.gearlog.com/2007/12/incredible_wiimote_hack_create.php
+0
-2
data/links/9d1c6a44-30f9-4633-90c5-5617f4897d64 less more
1 id: 9d1c6a44-30f9-4633-90c5-5617f4897d64
2 url: http://www.instructables.com/id/EJIXKOEF3ER7VN5/?ALLSTEPS
+0
-2
data/links/9ecc180d-6868-4c78-b6c1-94dd639ca0a7 less more
1 id: 9ecc180d-6868-4c78-b6c1-94dd639ca0a7
2 url: https://github.com/The-Compiler/qutebrowser/
+0
-2
data/links/9f2785d3-3518-4601-bfed-becdaf2242e3 less more
1 id: 9f2785d3-3518-4601-bfed-becdaf2242e3
2 url: http://librarianofalexandria.com/links/
+0
-2
data/links/9f5019aa-925c-4e6f-949c-f8d078c6af46 less more
1 id: 9f5019aa-925c-4e6f-949c-f8d078c6af46
2 url: http://fontaineillustration.com/gallery02.htm
+0
-2
data/links/9f61712b-b077-4a63-a956-5ac532a477f3 less more
1 id: 9f61712b-b077-4a63-a956-5ac532a477f3
2 url: http://mcsweeneys.net/2008/6/16joseph.html
+0
-2
data/links/9f7b9e94-de51-41cd-a515-2960582ee9ba less more
1 id: 9f7b9e94-de51-41cd-a515-2960582ee9ba
2 url: https://code.google.com/p/ouspg/wiki/Radamsa
+0
-2
data/links/9faa468b-5e4d-4185-bf7f-f51877f0a951 less more
1 id: 9faa468b-5e4d-4185-bf7f-f51877f0a951
2 url: http://lifehacker.com/5287322/the-lifehacker-cookbook
+0
-2
data/links/9fbfe214-abd3-4d33-a62f-a33f85903046 less more
1 id: 9fbfe214-abd3-4d33-a62f-a33f85903046
2 url: http://www.scvngr.com/
+0
-2
data/links/a047fa1d-b6ac-42c5-9bc0-5f072a45a6e4 less more
1 id: a047fa1d-b6ac-42c5-9bc0-5f072a45a6e4
2 url: http://www.cyberciti.biz/tips/spice-up-your-unix-linux-shell-scripts.html
+0
-2
data/links/a0cecc0c-d7f3-4766-a60b-1582308f454a less more
1 id: a0cecc0c-d7f3-4766-a60b-1582308f454a
2 url: http://www.songsterr.com/
+0
-2
data/links/a0eb4305-983a-43bc-80ed-c21f83565cea less more
1 id: a0eb4305-983a-43bc-80ed-c21f83565cea
2 url: http://halflife.qeradiant.com/halflife/mthl1.htm
+0
-2
data/links/a0ef527d-2aeb-415d-bf90-71901ff4cc63 less more
1 id: a0ef527d-2aeb-415d-bf90-71901ff4cc63
2 url: http://www.cuminga.com/gallery/
+0
-2
data/links/a0fbb1d8-4d1a-4a59-9ab9-ff628336c842 less more
1 id: a0fbb1d8-4d1a-4a59-9ab9-ff628336c842
2 url: http://24.media.tumblr.com/tumblr_lgkh771qzJ1qgle0jo1_500.jpg
+0
-2
data/links/a143054e-6238-4b4b-87c4-309cc7d9b4a6 less more
1 id: a143054e-6238-4b4b-87c4-309cc7d9b4a6
2 url: http://www.mrxstitch.com/
+0
-2
data/links/a149df6c-913a-4800-b50e-32b6fe36b0c8 less more
1 id: a149df6c-913a-4800-b50e-32b6fe36b0c8
2 url: http://thesocietypages.org/socimages/2010/08/30/guest-post-why-do-the-japanese-draw-themselves-as-white/
+0
-2
data/links/a1707ef0-c232-418e-93ca-acbf6ab471cd less more
1 id: a1707ef0-c232-418e-93ca-acbf6ab471cd
2 url: http://lambda-the-ultimate.org/node/1752
+0
-2
data/links/a19fed5d-24dd-4163-9f15-f0edbff0b34f less more
1 id: a19fed5d-24dd-4163-9f15-f0edbff0b34f
2 url: http://www.fakefoodfree.com/2011/02/complete-kitchen-garden-asparagus-soup.html
+0
-2
data/links/a1ecc625-5b6a-44a4-8127-71622fc3efa2 less more
1 id: a1ecc625-5b6a-44a4-8127-71622fc3efa2
2 url: http://www.tsengbooks.com/
+0
-2
data/links/a23ca9c8-5f66-4d42-894c-e36d29e95d27 less more
1 id: a23ca9c8-5f66-4d42-894c-e36d29e95d27
2 url: http://homepages.inf.ed.ac.uk/wadler/papers/free-rectypes/free-rectypes.txt
+0
-2
data/links/a24940b6-48e5-4a8f-8918-224cc7eb4758 less more
1 id: a24940b6-48e5-4a8f-8918-224cc7eb4758
2 url: http://www.konjak.org/
+0
-2
data/links/a25e43af-a92b-4391-a643-f5aa1bff9a03 less more
1 id: a25e43af-a92b-4391-a643-f5aa1bff9a03
2 url: http://www.youtube.com/watch?v=AWiq-0rf_bA
+0
-2
data/links/a26fe1cc-5feb-4480-ab27-d4371ae62945 less more
1 id: a26fe1cc-5feb-4480-ab27-d4371ae62945
2 url: http://cvil.ly/2012/01/05/useful-qr-codes/
+0
-2
data/links/a285c118-63c8-4951-a7ab-2f9d9ffe1360 less more
1 id: a285c118-63c8-4951-a7ab-2f9d9ffe1360
2 url: http://www.keepitsimplefoods.com/vegetarian/honey-and-applesauce-cupcakes-with-cinnamon-cream-cheese-frosting/
+0
-2
data/links/a294a873-50a6-4f11-bcc5-33b930d525ed less more
1 id: a294a873-50a6-4f11-bcc5-33b930d525ed
2 url: http://www.instructables.com/id/Nomad-Furniture:-design,-case-studies,-and-philoso/?ALLSTEPS
+0
-2
data/links/a2b2092a-392e-41a5-9a20-3a3e0292db79 less more
1 id: a2b2092a-392e-41a5-9a20-3a3e0292db79
2 url: http://www.cs.cmu.edu/~crary/819-f09/
+0
-2
data/links/a2be5b1d-a02a-4c9c-91a5-3a8094533947 less more
1 id: a2be5b1d-a02a-4c9c-91a5-3a8094533947
2 url: http://en.wikipedia.org/wiki/Tale_of_Tales
+0
-2
data/links/a2c50bd3-af3d-44d5-b564-81b1e3769294 less more
1 id: a2c50bd3-af3d-44d5-b564-81b1e3769294
2 url: http://books.google.com/books?id=QnUmAAAAMAAJ&amp;pgis=1
+0
-2
data/links/a2d9cffc-aaba-4ac6-9148-f0a5575727e7 less more
1 id: a2d9cffc-aaba-4ac6-9148-f0a5575727e7
2 url: http://www.lunabase.org/~faber/Vault/software/grap/
+0
-2
data/links/a2ee72b8-efcd-49bf-b1a4-80c4c89fb2bb less more
1 id: a2ee72b8-efcd-49bf-b1a4-80c4c89fb2bb
2 url: https://rovaughn.github.io/2015-2-9.html
+0
-2
data/links/a2f4ce94-f0f4-44a9-9d24-ecc6a59db6ab less more
1 id: a2f4ce94-f0f4-44a9-9d24-ecc6a59db6ab
2 url: http://dffd.wimbli.com/file.php?id=7767
+0
-2
data/links/a31b1aca-77bf-45cf-b3d2-9fdf82ce6229 less more
1 id: a31b1aca-77bf-45cf-b3d2-9fdf82ce6229
2 url: http://www.fullcodemedia.com/releases/FCM012.html
+0
-2
data/links/a348a6c0-b38a-4e5f-9647-e13a441c413c less more
1 id: a348a6c0-b38a-4e5f-9647-e13a441c413c
2 url: http://varnelis.net/blog/kazys/project_cybersyn
+0
-2
data/links/a39b19dc-d3a1-4826-8d52-2ec83cc39997 less more
1 id: a39b19dc-d3a1-4826-8d52-2ec83cc39997
2 url: http://zacbrown.org/2015/01/18/openbsd-as-a-desktop.html
+0
-2
data/links/a3af4871-b72c-4dce-8eb0-095eda5ebea1 less more
1 id: a3af4871-b72c-4dce-8eb0-095eda5ebea1
2 url: http://en.flossmanuals.net/PureData/SimpleSynth
+0
-2
data/links/a3c0a775-bb51-4311-a1d4-01baeaddfc06 less more
1 id: a3c0a775-bb51-4311-a1d4-01baeaddfc06
2 url: http://www.csicop.org/si/show/why_is_religion_natural/
+0
-2
data/links/a3d6f42c-161d-4bcf-83cd-615957a7c8cf less more
1 id: a3d6f42c-161d-4bcf-83cd-615957a7c8cf
2 url: http://forums.koalawallop.com/viewtopic.php?t=1719
+0
-2
data/links/a3e4d7ab-f7d3-437d-bb99-cbc71b0b33f8 less more
1 id: a3e4d7ab-f7d3-437d-bb99-cbc71b0b33f8
2 url: http://trinixy.ru/michael_kenna.html
+0
-2
data/links/a3eb4cf2-f62f-4816-a97c-c7296f504ccd less more
1 id: a3eb4cf2-f62f-4816-a97c-c7296f504ccd
2 url: http://hmschronabelle.deviantart.com/
+0
-2
data/links/a40027a0-775a-4b03-bad4-4eefa122c29b less more
1 id: a40027a0-775a-4b03-bad4-4eefa122c29b
2 url: http://www.ectomo.com/wp-content/uploads/2007/10/apocalypse.jpg
+0
-2
data/links/a4574182-a36c-4ff6-a493-aa6a0154ddc9 less more
1 id: a4574182-a36c-4ff6-a493-aa6a0154ddc9
2 url: http://www.fistfulayen.com/blog/?p=147
+0
-2
data/links/a49c558b-fbb0-4385-8b0c-285b33c8baba less more
1 id: a49c558b-fbb0-4385-8b0c-285b33c8baba
2 url: http://lifehacker.com/software/media-player/hack-attack-roll-your-own-killer-audio-player-with-foobar2000-245359.php
+0
-2
data/links/a4b2f2a2-3328-49fc-be78-178f7554b6aa less more
1 id: a4b2f2a2-3328-49fc-be78-178f7554b6aa
2 url: http://ulicam.blogspot.com/2012/04/easter-tutorial-how-to-color-eggs-with.html
+0
-2
data/links/a4b89888-c23f-4ffb-92c1-691c4a050f8d less more
1 id: a4b89888-c23f-4ffb-92c1-691c4a050f8d
2 url: http://www.archdaily.com/8075/monte-silo-gigaplex-architects/
+0
-2
data/links/a4cd1aa0-4b22-4309-88f2-137222e668e4 less more
1 id: a4cd1aa0-4b22-4309-88f2-137222e668e4
2 url: http://arbaro.sourceforge.net/
+0
-2
data/links/a4f05a67-c9ee-4008-9f07-719c474c6be2 less more
1 id: a4f05a67-c9ee-4008-9f07-719c474c6be2
2 url: http://www.youtube.com/watch?v=Xgk9ouBuj-4
+0
-2
data/links/a5b8041d-ca20-4300-8ed8-f877e1ee13ae less more
1 id: a5b8041d-ca20-4300-8ed8-f877e1ee13ae
2 url: http://gallium.inria.fr/~protzenk/mezzo-lang/
+0
-2
data/links/a5b96800-8579-454c-99bd-ff017393da60 less more
1 id: a5b96800-8579-454c-99bd-ff017393da60
2 url: http://nerdmeritbadges.com/
+0
-2
data/links/a60542e6-b194-463a-9f8b-63b18af1eee4 less more
1 id: a60542e6-b194-463a-9f8b-63b18af1eee4
2 url: http://kasparov.skife.org/blog/src/ttmp-1.html
+0
-2
data/links/a632b0a7-eb51-4a15-963a-25c27a7fab76 less more
1 id: a632b0a7-eb51-4a15-963a-25c27a7fab76
2 url: http://www.sbs.com.au/dateline/story/about/id/601007/n/China-s-Ghost-Citie
+0
-2
data/links/a65df3e7-1dad-444c-a33a-653078670b32 less more
1 id: a65df3e7-1dad-444c-a33a-653078670b32
2 url: http://lifehacker.com/software/utilities/download-of-the-day-ccleaner-134407-windows-210959.php
+0
-2
data/links/a6a75581-9dd3-4800-a2c6-fc112f813480 less more
1 id: a6a75581-9dd3-4800-a2c6-fc112f813480
2 url: http://www.webdesignerwall.com/tutorials/photoshop-hand-drawn-design/
+0
-2
data/links/a70242b0-0eab-4a3f-a29e-094f5081ed47 less more
1 id: a70242b0-0eab-4a3f-a29e-094f5081ed47
2 url: http://www.pvponline.com/article/3099/wed-jan-24
+0
-2
data/links/a71b30ac-91be-4534-8e4a-947039dd99ed less more
1 id: a71b30ac-91be-4534-8e4a-947039dd99ed
2 url: http://jenwang.net/comics/touchfood
+0
-2
data/links/a7389970-16c9-43ef-8b78-ac8d10eb6b8b less more
1 id: a7389970-16c9-43ef-8b78-ac8d10eb6b8b
2 url: http://blog.reybango.com/2010/12/15/what-to-read-to-get-up-to-speed-in-javascript/
+0
-2
data/links/a8439552-3eaa-4dbe-a1e7-89a30055744d less more
1 id: a8439552-3eaa-4dbe-a1e7-89a30055744d
2 url: http://www.codng.com/2011/03/pratt-parsers.html
+0
-2
data/links/a86286b1-ce9e-4b32-97b1-5d5088c52678 less more
1 id: a86286b1-ce9e-4b32-97b1-5d5088c52678
2 url: http://indianfood.about.com/od/drinkrecipes/r/nimboopani.htm
+0
-2
data/links/a864eed9-9cc6-4cda-b0b0-2a0a2055a8e0 less more
1 id: a864eed9-9cc6-4cda-b0b0-2a0a2055a8e0
2 url: http://shill.seas.harvard.edu/shill-osdi-2014.pdf
+0
-2
data/links/a881120d-a0e6-44dc-b66c-2ea44b512ef4 less more
1 id: a881120d-a0e6-44dc-b66c-2ea44b512ef4
2 url: http://auntiepixelante.com/?p=2162
+0
-2
data/links/a8bf40f4-a6aa-4c6e-969f-9e26575dc776 less more
1 id: a8bf40f4-a6aa-4c6e-969f-9e26575dc776
2 url: http://www.kellys-korner-xp.com/xp_tweaks.htm
+0
-2
data/links/a8e4f19d-539c-4a28-882f-61a198792f71 less more
1 id: a8e4f19d-539c-4a28-882f-61a198792f71
2 url: http://www.instructables.com/id/How-to-Make-Carbonated-Fruit/?ALLSTEPS
+0
-2
data/links/a91993a1-24c0-4623-aa01-2aae6e393f69 less more
1 id: a91993a1-24c0-4623-aa01-2aae6e393f69
2 url: http://norvig.com/python-iaq.html
+0
-2
data/links/a9454348-cca5-49e7-b0bf-9e528e434c1a less more
1 id: a9454348-cca5-49e7-b0bf-9e528e434c1a
2 url: http://www.wordsinspace.net/wordpress/2014/01/10/interface-critique/
+0
-2
data/links/a9956458-5dba-40c9-976e-eba99683e96d less more
1 id: a9956458-5dba-40c9-976e-eba99683e96d
2 url: http://www.xorph.com/clockers/
+0
-2
data/links/a9beadcd-9e11-4ed8-9ead-37f8f76b839b less more
1 id: a9beadcd-9e11-4ed8-9ead-37f8f76b839b
2 url: http://www.instructables.com/id/How-to-make-huge-posters./?ALLSTEPS#
+0
-2
data/links/a9c9ca1e-ce12-4687-9043-bf1f6dfa47f9 less more
1 id: a9c9ca1e-ce12-4687-9043-bf1f6dfa47f9
2 url: http://www.serialno3817131.com/
+0
-2
data/links/a9de157b-6866-4635-b51f-6ecacfcba193 less more
1 id: a9de157b-6866-4635-b51f-6ecacfcba193
2 url: http://www.youthedesigner.com/2009/01/16/30-must-have-logo-books/
+0
-2
data/links/a9e52444-a97d-42fb-811e-7940e921433b less more
1 id: a9e52444-a97d-42fb-811e-7940e921433b
2 url: http://www.headinjurytheater.com/article73.htm
+0
-2
data/links/aa224c5d-2619-4c63-9f5a-61c6f4833d0a less more
1 id: aa224c5d-2619-4c63-9f5a-61c6f4833d0a
2 url: http://redex.racket-lang.org/
+0
-2
data/links/aa572b1d-34af-4314-b01a-838c5d6f0258 less more
1 id: aa572b1d-34af-4314-b01a-838c5d6f0258
2 url: http://www.ibiblio.org/chinesehistory/contents/08fea/c02.html
+0
-2
data/links/ab1552b8-49be-47c2-8904-387550bfa07a less more
1 id: ab1552b8-49be-47c2-8904-387550bfa07a
2 url: http://www.airlinecreditcards.com/travelhacker/how-to-turn-your-ipod-into-anything-75-tutorials/
+0
-2
data/links/ab6562e2-2462-425a-b9c4-79b1173eca24 less more
1 id: ab6562e2-2462-425a-b9c4-79b1173eca24
2 url: http://keepyourdietreal.com/food/pastagrain/barley-risotto-with-asparagus/
+0
-2
data/links/ab6ce95f-2ee9-40f5-89ff-553a4a189091 less more
1 id: ab6ce95f-2ee9-40f5-89ff-553a4a189091
2 url: http://blog.makezine.com/archive/2008/05/backyard_beekeeping_-_splitting_a_hive.html
+0
-2
data/links/abea9106-2471-4048-b998-68326a96550a less more
1 id: abea9106-2471-4048-b998-68326a96550a
2 url: http://www.pioneerthinking.com/naturaldyes.html
+0
-2
data/links/abed1004-074a-4068-b6ca-4e245d495ca5 less more
1 id: abed1004-074a-4068-b6ca-4e245d495ca5
2 url: http://community.livejournal.com/anachrotech/
+0
-2
data/links/ac2d0051-5149-41c8-99ef-8dad32585874 less more
1 id: ac2d0051-5149-41c8-99ef-8dad32585874
2 url: http://www.feartheboot.com/comic/default.aspx?c=74
+0
-2
data/links/ac7db4b8-7f79-4e1e-8899-5c860390444e less more
1 id: ac7db4b8-7f79-4e1e-8899-5c860390444e
2 url: http://www.ectomo.com/wp-content/uploads/2008/04/elephant.jpg
+0
-2
data/links/aca217be-6c55-41df-8481-9830032cbb16 less more
1 id: aca217be-6c55-41df-8481-9830032cbb16
2 url: http://www.whitetreeaz.com/gibber/faeries_aire_and_death_waltz.jpg
+0
-2
data/links/accf3dca-bb50-4908-83f2-e6ead4e53478 less more
1 id: accf3dca-bb50-4908-83f2-e6ead4e53478
2 url: http://io9.com/5050642/the-roots-of-todays-science-fiction-go-back-centuries
+0
-2
data/links/acd478b8-b752-42a5-9342-b58b426259cb less more
1 id: acd478b8-b752-42a5-9342-b58b426259cb
2 url: http://concatenative.org/wiki/view/Exotic%20Data%20Structures
+0
-2
data/links/ad3928d8-3efc-407a-93d2-2f5199a4e937 less more
1 id: ad3928d8-3efc-407a-93d2-2f5199a4e937
2 url: http://c2.com/cgi/wiki?AlanKaysReadingList
+0
-2
data/links/ad59ab3a-4767-4923-add4-be16eec0fa2e less more
1 id: ad59ab3a-4767-4923-add4-be16eec0fa2e
2 url: http://lifehacker.com/5117895/top-10-ways-to-repurpose-your-old-ipod
+0
-2
data/links/ad63ea68-c451-449b-b30c-d7fc3ced8c28 less more
1 id: ad63ea68-c451-449b-b30c-d7fc3ced8c28
2 url: http://www.twocranespress.com/botany/
+0
-2
data/links/ad7e06c6-23b9-4d8d-977c-edb7c4f5c6a4 less more
1 id: ad7e06c6-23b9-4d8d-977c-edb7c4f5c6a4
2 url: http://insideinsides.blogspot.com/
+0
-2
data/links/ae5ed2c9-7995-4ce0-8e69-9204738861ac less more
1 id: ae5ed2c9-7995-4ce0-8e69-9204738861ac
2 url: http://www.fudco.com/chip/deconstr.html
+0
-2
data/links/ae9394b3-97c3-404e-85d0-4454c4dfd74e less more
1 id: ae9394b3-97c3-404e-85d0-4454c4dfd74e
2 url: http://diveintomark.org/archives/2009/07/06/this-is-the-house
+0
-2
data/links/aea7ecde-8b0a-49b9-b0b6-089c4694b003 less more
1 id: aea7ecde-8b0a-49b9-b0b6-089c4694b003
2 url: http://www.freecommander.com/
+0
-2
data/links/aeb92cb0-dd1e-470b-9b4a-a7b962f2bc03 less more
1 id: aeb92cb0-dd1e-470b-9b4a-a7b962f2bc03
2 url: http://www.linuxjournal.com/article/9103
+0
-2
data/links/aed71495-920d-4ede-9259-ce13c49e7f0b less more
1 id: aed71495-920d-4ede-9259-ce13c49e7f0b
2 url: http://www.astrolog.org/labyrnth/algrithm.htm
+0
-2
data/links/af0cdf92-913e-45a5-95eb-3df54d95d48c less more
1 id: af0cdf92-913e-45a5-95eb-3df54d95d48c
2 url: http://www.holycow.com/dreaming/stories/snow.html
+0
-2
data/links/af13f8f4-80be-4e08-ab15-5c5270fd550d less more
1 id: af13f8f4-80be-4e08-ab15-5c5270fd550d
2 url: http://www.americanscientist.org/bookshelf/pub/100-or-so-books-that-shaped-a-century-of-science
+0
-2
data/links/af236f7a-c899-4b82-8a42-5bfe6c76a379 less more
1 id: af236f7a-c899-4b82-8a42-5bfe6c76a379
2 url: http://www.ectomo.com/
+0
-2
data/links/af5d4dab-0c46-4ff1-9c26-b60504799344 less more
1 id: af5d4dab-0c46-4ff1-9c26-b60504799344
2 url: https://mosh.mit.edu/
+0
-2
data/links/af8b9268-7702-4636-87f2-8a4e14855195 less more
1 id: af8b9268-7702-4636-87f2-8a4e14855195
2 url: http://adarkroom.doublespeakgames.com/
+0
-2
data/links/af8baa96-ce8d-4be7-87e3-417cdf43c6f5 less more
1 id: af8baa96-ce8d-4be7-87e3-417cdf43c6f5
2 url: http://www.sacred-texts.com/bud/zen/mumonkan.htm
+0
-2
data/links/af998864-de28-4298-a50d-9075da5977de less more
1 id: af998864-de28-4298-a50d-9075da5977de
2 url: http://www.needlenthread.com/2006/10/video-library-of-hand-embroidery.html
+0
-2
data/links/afa39ff2-e068-48ef-9e1c-2f483408ed1c less more
1 id: afa39ff2-e068-48ef-9e1c-2f483408ed1c
2 url: http://tevisthompson.com/on-videogame-reviews/
+0
-2
data/links/afbe7209-9710-46ad-8e32-4c52b20df47f less more
1 id: afbe7209-9710-46ad-8e32-4c52b20df47f
2 url: http://www.llbbl.com/data/RPG-motivational/target56.html
+0
-2
data/links/afbfde41-9abc-4a4c-a2ba-dd9901660051 less more
1 id: afbfde41-9abc-4a4c-a2ba-dd9901660051
2 url: http://en.wikipedia.org/wiki/American_Astronaut
+0
-2
data/links/b0001844-e21d-4b46-894e-927d68e0b0e6 less more
1 id: b0001844-e21d-4b46-894e-927d68e0b0e6
2 url: http://juanjoalvarez.net/es/detail/2014/sep/19/vim-emacsevil-chaotic-migration-guide/
+0
-2
data/links/b01e8dc4-64f5-496d-982d-99b2d5892b8d less more
1 id: b01e8dc4-64f5-496d-982d-99b2d5892b8d
2 url: http://en.wikipedia.org/wiki/Gravitation_%28manga%29
+0
-2
data/links/b03c4220-3b44-45b4-99fd-e230681c0bf1 less more
1 id: b03c4220-3b44-45b4-99fd-e230681c0bf1
2 url: http://stardestroyer.net/Empire/Essays/Marxism.html
+0
-2
data/links/b0628181-9edc-49c8-9e3a-f5c4f44afb4b less more
1 id: b0628181-9edc-49c8-9e3a-f5c4f44afb4b
2 url: http://www.whirled.com/#whirleds-t_1411
+0
-2
data/links/b11af5a3-369d-41bc-95e3-af3bb824522c less more
1 id: b11af5a3-369d-41bc-95e3-af3bb824522c
2 url: http://en.wikipedia.org/wiki/Ted_Chiang
+0
-2
data/links/b1503986-e69d-4992-8170-209b605a4775 less more
1 id: b1503986-e69d-4992-8170-209b605a4775
2 url: http://www.tigoe.net/pcomp/blog/archives/notes/000169.shtml
+0
-2
data/links/b1b67c88-699a-4acf-b4ab-c458fa0d4d85 less more
1 id: b1b67c88-699a-4acf-b4ab-c458fa0d4d85
2 url: http://www.theonlinepaperairplanemuseum.com/
+0
-2
data/links/b1c6470f-dc73-4438-8083-99edfafcab81 less more
1 id: b1c6470f-dc73-4438-8083-99edfafcab81
2 url: http://pqcrypto.org/
+0
-2
data/links/b215169d-5418-4722-ae0e-65a9052b0324 less more
1 id: b215169d-5418-4722-ae0e-65a9052b0324
2 url: http://lambda-the-ultimate.org/node/4088
+0
-2
data/links/b25779f0-3fbd-4d72-b19a-c13bd7bc0b60 less more
1 id: b25779f0-3fbd-4d72-b19a-c13bd7bc0b60
2 url: http://www.duneinfo.com/unseen/moebius.asp
+0
-2
data/links/b2649951-229a-4934-85d1-d1f84fb5ca90 less more
1 id: b2649951-229a-4934-85d1-d1f84fb5ca90
2 url: http://www.reddit.com/r/SOPA/comments/nf5p1/sopa_emergency_list/
+0
-2
data/links/b284022c-c096-4c05-815a-4bd3d33daa35 less more
1 id: b284022c-c096-4c05-815a-4bd3d33daa35
2 url: http://ninjapants.org/files/those-are-my-shoes.jpg
+0
-2
data/links/b286f8c0-0209-46fa-a2a8-4031205c7921 less more
1 id: b286f8c0-0209-46fa-a2a8-4031205c7921
2 url: http://video.google.com/videoplay?docid=6204903272262158881&amp;q=frustration&amp;total=5439&amp;start=0&amp;num=10&amp;so=0&amp;type=search&amp;plindex=0
+0
-2
data/links/b29fb1b6-66f8-4792-88e4-fdb0b952c428 less more
1 id: b29fb1b6-66f8-4792-88e4-fdb0b952c428
2 url: http://www.allfacebook.com/2009/02/facebook-privacy/
+0
-2
data/links/b2a168cb-3233-458b-a44f-80b9eec02467 less more
1 id: b2a168cb-3233-458b-a44f-80b9eec02467
2 url: http://www.serasidis.gr/circuits/InReCoMe/InReCoMe.htm
+0
-2
data/links/b2de4651-e3a2-4937-b203-d0a6c259eac5 less more
1 id: b2de4651-e3a2-4937-b203-d0a6c259eac5
2 url: http://esotika.blogspot.com/
+0
-2
data/links/b2f894ff-fbe6-4ad1-943a-b256bccc0f9d less more
1 id: b2f894ff-fbe6-4ad1-943a-b256bccc0f9d
2 url: http://bookshelfporn.com/
+0
-2
data/links/b2f97a7b-5538-4b98-8c83-29e3e1d8448c less more
1 id: b2f97a7b-5538-4b98-8c83-29e3e1d8448c
2 url: http://ilovetypography.com/OpenType/opentype-features.html
+0
-2
data/links/b381b1c4-63ab-4707-99cd-050e2be7b982 less more
1 id: b381b1c4-63ab-4707-99cd-050e2be7b982
2 url: http://www.library.upenn.edu/collections/rbm/mumford/index2.html
+0
-2
data/links/b387174c-10d5-4455-a7a5-01a6b1a19fc8 less more
1 id: b387174c-10d5-4455-a7a5-01a6b1a19fc8
2 url: http://generatorblog.blogspot.com/
+0
-2
data/links/b40631d4-7a48-4cd5-9b09-79c64441f080 less more
1 id: b40631d4-7a48-4cd5-9b09-79c64441f080
2 url: http://irevolution.net/2009/02/21/project-cybersyn-chile-20-in-1973/
+0
-2
data/links/b40cc095-38ef-4c3b-a115-651cc13cbe7a less more
1 id: b40cc095-38ef-4c3b-a115-651cc13cbe7a
2 url: http://www.ozonehouse.com/mark/blog/code/PeriodicTable.pdf
+0
-2
data/links/b40df6a8-2377-4c58-b1e0-e5f7c6962c64 less more
1 id: b40df6a8-2377-4c58-b1e0-e5f7c6962c64
2 url: http://www.opticsforkids.org/futurescientists/advanced/shimmeringlenses.html
+0
-2
data/links/b42255dd-10a8-4ecc-af8a-e8bac4d64b2a less more
1 id: b42255dd-10a8-4ecc-af8a-e8bac4d64b2a
2 url: http://youtube.com/profile_favorites?user=roboticsquid
+0
-2
data/links/b4dbe2cb-90cb-4319-8858-02e3f251bde5 less more
1 id: b4dbe2cb-90cb-4319-8858-02e3f251bde5
2 url: http://www.liqurious.com/
+0
-2
data/links/b51f4c40-efa4-4269-b38c-a49be1be82ae less more
1 id: b51f4c40-efa4-4269-b38c-a49be1be82ae
2 url: http://palachinka.blogspot.com/2008/03/chicken-soup-with-and-rinflaj.html
+0
-2
data/links/b588e905-b45c-4720-bf0f-ce0fb52d1638 less more
1 id: b588e905-b45c-4720-bf0f-ce0fb52d1638
2 url: http://imgur.com/a/sWznt?gallery
+0
-2
data/links/b5997591-eccf-4078-85bd-ba405574be35 less more
1 id: b5997591-eccf-4078-85bd-ba405574be35
2 url: http://articles.moneycentral.msn.com/SavingandDebt/SaveMoney/5FoodsItsCheaperToGrow.aspx
+0
-2
data/links/b5d0e668-f47a-4d3e-be2d-f497d4f12e73 less more
1 id: b5d0e668-f47a-4d3e-be2d-f497d4f12e73
2 url: http://yudkowsky.net/rational/virtues
+0
-2
data/links/b5e7dba3-60b1-4e72-ab39-b81b84649b4f less more
1 id: b5e7dba3-60b1-4e72-ab39-b81b84649b4f
2 url: http://weistudio.com/mac_com.htm
+0
-2
data/links/b607eb03-8648-4c0f-818a-02de720de756 less more
1 id: b607eb03-8648-4c0f-818a-02de720de756
2 url: http://www.youtube.com/watch?v=n5pm-UopPR4
+0
-2
data/links/b61a926d-56fb-4ea8-bfeb-cc147abf54e0 less more
1 id: b61a926d-56fb-4ea8-bfeb-cc147abf54e0
2 url: http://www.animationarchive.org/2008/08/illustration-gustaf-tenggrens-grimms.html
+0
-2
data/links/b6396647-36c6-4778-a297-2af557666fa0 less more
1 id: b6396647-36c6-4778-a297-2af557666fa0
2 url: http://www.jeffreymorgenthaler.com/2012/i-make-the-best-amaretto-sour-in-the-world/
+0
-2
data/links/b65901e7-e318-418a-9125-219ede163768 less more
1 id: b65901e7-e318-418a-9125-219ede163768
2 url: https://snapguide.com/guides/make-browned-butter-spiked-eggnog/
+0
-2
data/links/b678383c-f91e-40e6-b622-b3bcca47d848 less more
1 id: b678383c-f91e-40e6-b622-b3bcca47d848
2 url: http://indianfood.about.com/od/drinkrecipes/r/thandai.htm
+0
-2
data/links/b6c5c3ae-ce3b-4338-a1ba-a58f4ec13fa7 less more
1 id: b6c5c3ae-ce3b-4338-a1ba-a58f4ec13fa7
2 url: https://github.com/guardianproject/libsqlfs
+0
-2
data/links/b6e0721c-31ef-4d9a-b772-42e0b6f1df69 less more
1 id: b6e0721c-31ef-4d9a-b772-42e0b6f1df69
2 url: http://en.wikipedia.org/wiki/Hope_Mirrlees
+0
-2
data/links/b711680e-2177-49ae-b896-5d24cb55b5a8 less more
1 id: b711680e-2177-49ae-b896-5d24cb55b5a8
2 url: http://blog.jgc.org/2010/01/more-fun-with-toys-ikea-lillabo-train.html
+0
-2
data/links/b759b082-eeee-4618-a90a-790a6473260d less more
1 id: b759b082-eeee-4618-a90a-790a6473260d
2 url: http://www.reddit.com/r/writing/comments/160n20/how_to_make_meaningfulgood_conversation/c7rla7a
+0
-2
data/links/b78a25c8-b843-4481-9436-6e7577739642 less more
1 id: b78a25c8-b843-4481-9436-6e7577739642
2 url: http://www.jwz.org/doc/threading.html
+0
-2
data/links/b7a91bf0-cb63-4f84-9791-5f0b1f8e6a9c less more
1 id: b7a91bf0-cb63-4f84-9791-5f0b1f8e6a9c
2 url: http://husmw1.tumblr.com/crispinbest
+0
-2
data/links/b7c2cd33-cb87-4164-afda-7ff5896230df less more
1 id: b7c2cd33-cb87-4164-afda-7ff5896230df
2 url: http://culturegraph.com/
+0
-2
data/links/b7e1fb96-cffb-452b-9f3c-fa078658c63e less more
1 id: b7e1fb96-cffb-452b-9f3c-fa078658c63e
2 url: http://politedissent.com/house_pd.html
+0
-2
data/links/b808a9fb-5331-4bc1-bcc3-442fcae4ec34 less more
1 id: b808a9fb-5331-4bc1-bcc3-442fcae4ec34
2 url: http://www.fubiz.net/2009/09/20/clown-portraits/
+0
-2
data/links/b8329fd7-dda1-4e5e-8cdf-1bec94eb19c6 less more
1 id: b8329fd7-dda1-4e5e-8cdf-1bec94eb19c6
2 url: http://ogdl.org/
+0
-2
data/links/b8452bc6-2756-4e6b-8855-1a6372257b0f less more
1 id: b8452bc6-2756-4e6b-8855-1a6372257b0f
2 url: http://909sickle.com/s/programming-languages/
+0
-2
data/links/b84d41f1-8774-4d13-8e70-216d985c09ff less more
1 id: b84d41f1-8774-4d13-8e70-216d985c09ff
2 url: http://www.theatlantic.com/doc/198203/broken-windows
+0
-2
data/links/b851f4ea-2289-4aae-ad5b-9d18428483f2 less more
1 id: b851f4ea-2289-4aae-ad5b-9d18428483f2
2 url: http://www.niell.org/office_amp.html
+0
-2
data/links/b8590da5-81cd-4d6f-9d47-a4f2ceae44a0 less more
1 id: b8590da5-81cd-4d6f-9d47-a4f2ceae44a0
2 url: http://effbot.org/zone/simple-top-down-parsing.htm
+0
-2
data/links/b8639dc5-f4cf-4d76-b15c-5beb6f28bbde less more
1 id: b8639dc5-f4cf-4d76-b15c-5beb6f28bbde
2 url: http://www.instructables.com/id/DIY-Smoker/?ALLSTEPS
+0
-2
data/links/b86f356a-fa3c-471d-be1e-0d3a31681c7d less more
1 id: b86f356a-fa3c-471d-be1e-0d3a31681c7d
2 url: http://typesetinthefuture.com/postfiles/alien/semiotic_02_full.jpg
+0
-2
data/links/b8e67866-2bb3-4330-b856-549661f41d11 less more
1 id: b8e67866-2bb3-4330-b856-549661f41d11
2 url: http://ministryoftype.co.uk/words/article/glagolitic/
+0
-2
data/links/b902d2f1-80e5-4476-98f0-9ad6322309cd less more
1 id: b902d2f1-80e5-4476-98f0-9ad6322309cd
2 url: http://www.instructables.com/id/IKEA-Hack/?ALLSTEPS
+0
-2
data/links/b92b9a86-ecd6-4789-b061-2a1b25c9eb17 less more
1 id: b92b9a86-ecd6-4789-b061-2a1b25c9eb17
2 url: http://www.warmplace.ru/soft/sunvox/
+0
-2
data/links/b92efff2-8a57-408e-89e1-567adc9c244f less more
1 id: b92efff2-8a57-408e-89e1-567adc9c244f
2 url: http://cookinginsens.wordpress.com/2011/05/12/gingerbread-mini-loaves-with-strawberry-butter/
+0
-2
data/links/b94b1deb-4ba2-46f2-a218-759e9e9013f6 less more
1 id: b94b1deb-4ba2-46f2-a218-759e9e9013f6
2 url: http://chishio.jp/
+0
-2
data/links/b9dfce5e-1b64-41d0-9aef-51a8b8ab96c6 less more
1 id: b9dfce5e-1b64-41d0-9aef-51a8b8ab96c6
2 url: http://thaliaschild.blogspot.com/2008/02/mead-directions-for-lilacspecs.html
+0
-2
data/links/b9e51e11-ac00-44c2-a6fb-158d52ac0141 less more
1 id: b9e51e11-ac00-44c2-a6fb-158d52ac0141
2 url: http://www.guntheranderson.com/liqueurs/rosecord.htm
+0
-2
data/links/ba4c9d65-740a-4af2-8b5d-68e92a327654 less more
1 id: ba4c9d65-740a-4af2-8b5d-68e92a327654
2 url: http://www.wildgardenseed.com/mike/olpc.html
+0
-2
data/links/ba549b55-6fed-4efe-87e1-c9bf7857fc05 less more
1 id: ba549b55-6fed-4efe-87e1-c9bf7857fc05
2 url: http://www.codinghorror.com/blog/archives/000020.html
+0
-2
data/links/ba5c7fcb-2d48-4025-9295-c35bf86a8ed6 less more
1 id: ba5c7fcb-2d48-4025-9295-c35bf86a8ed6
2 url: http://www.andlinux.org/
+0
-2
data/links/ba7275e1-f1d3-4f23-8534-f77c323cb615 less more
1 id: ba7275e1-f1d3-4f23-8534-f77c323cb615
2 url: http://ubuntuforums.org/showthread.php?t=836231
+0
-2
data/links/bad3b5fa-b1e3-456d-8fba-49be777e10bb less more
1 id: bad3b5fa-b1e3-456d-8fba-49be777e10bb
2 url: http://www.veoh.com/static/flash/players/videodetails.swf?permalinkId=v419767t62jkACa
+0
-2
data/links/baf24877-b83c-4fc6-8992-7e9e6eeef1f8 less more
1 id: baf24877-b83c-4fc6-8992-7e9e6eeef1f8
2 url: http://www.instructables.com/id/Making_Simple_PVC_Flutes/?ALLSTEPS
+0
-2
data/links/bb136389-c1ae-4bce-be3c-c109b8ea1280 less more
1 id: bb136389-c1ae-4bce-be3c-c109b8ea1280
2 url: http://www.fubiz.net/2010/07/23/crossroads-project/
+0
-2
data/links/bb3047fb-f496-46ab-9d95-2a17303642e9 less more
1 id: bb3047fb-f496-46ab-9d95-2a17303642e9
2 url: http://www.bayfronttechnologies.com/mc_tutorial.html
+0
-2
data/links/bb31c5be-d013-464b-9e63-3dd1fb8701d4 less more
1 id: bb31c5be-d013-464b-9e63-3dd1fb8701d4
2 url: http://www.webook.com/
+0
-2
data/links/bb726a79-8b87-46df-bc81-858a850f177e less more
1 id: bb726a79-8b87-46df-bc81-858a850f177e
2 url: http://vectorpoem.com/news/?p=133
+0
-2
data/links/bb7b06ea-8541-4b31-8d8d-d4485769978d less more
1 id: bb7b06ea-8541-4b31-8d8d-d4485769978d
2 url: http://www.manisharora.ws/
+0
-2
data/links/bbb13dc4-6215-425a-8574-ddd2e666d472 less more
1 id: bbb13dc4-6215-425a-8574-ddd2e666d472
2 url: http://zork.net/fortunes/dmarti
+0
-2
data/links/bbb22bdc-5927-43f9-bcbc-d652f9b0dee9 less more
1 id: bbb22bdc-5927-43f9-bcbc-d652f9b0dee9
2 url: http://orbsteeb.tumblr.com/post/42255439094/please-destroy-nerds-its-not-difficult-be
+0
-2
data/links/bbf95d0d-896f-4822-abd3-a299152f85e2 less more
1 id: bbf95d0d-896f-4822-abd3-a299152f85e2
2 url: http://www.iba-world.com/english/cocktails/
+0
-2
data/links/bc35eba5-3846-462b-aca3-0da36e48e238 less more
1 id: bc35eba5-3846-462b-aca3-0da36e48e238
2 url: http://dancenotation.org/DNB/lnbasics/frame0.html
+0
-2
data/links/bc3bb355-9fa4-454a-b2ff-3691a3035a67 less more
1 id: bc3bb355-9fa4-454a-b2ff-3691a3035a67
2 url: http://www.csdl.tamu.edu/~shipman/SpatialHypertext/SH1/shipman.pdf
+0
-2
data/links/bc54dc50-4c4a-4d89-b663-8df50fcf75e4 less more
1 id: bc54dc50-4c4a-4d89-b663-8df50fcf75e4
2 url: http://www.compulab.co.il/x270em/html/x270-em-datasheet.htm
+0
-2
data/links/bc6677c2-a4e5-4a63-9c83-c38c9757d3f8 less more
1 id: bc6677c2-a4e5-4a63-9c83-c38c9757d3f8
2 url: http://www.instructables.com/id/Build-Your-Own-Butler-Robot/?ALLSTEPS
+0
-2
data/links/bc7f0452-f5db-452e-895d-db62970f1b94 less more
1 id: bc7f0452-f5db-452e-895d-db62970f1b94
2 url: http://www.valvesoftware.com/publications/2008/GDC2008_PortalPostMortem.pdf
+0
-2
data/links/bc8fe5c5-978f-45af-9e86-f5ed39d97e54 less more
1 id: bc8fe5c5-978f-45af-9e86-f5ed39d97e54
2 url: http://www.fractalspin.com/x/product.php?productid=124
+0
-2
data/links/bcb0c0d8-2898-4838-a26f-11c08333c6d6 less more
1 id: bcb0c0d8-2898-4838-a26f-11c08333c6d6
2 url: http://tilings.math.uni-bielefeld.de/tilings/substitution_rules/
+0
-2
data/links/bd58ff09-8093-41c8-9e17-1205b1aa19b6 less more
1 id: bd58ff09-8093-41c8-9e17-1205b1aa19b6
2 url: http://www.archiplanet.org/
+0
-2
data/links/bd5c73c3-8fad-47f1-91d7-fd6b8d62d17c less more
1 id: bd5c73c3-8fad-47f1-91d7-fd6b8d62d17c
2 url: http://www.circuitcity.com/ccd/Search.do?c=1&amp;searchType=user&amp;keyword=everex&amp;searchSection=All
+0
-2
data/links/bda1b91c-e498-4a3b-80d0-e680e44fe232 less more
1 id: bda1b91c-e498-4a3b-80d0-e680e44fe232
2 url: http://debunkingmras.wordpress.com/2014/03/12/debunking-the-mens-rights-movement-x/
+0
-2
data/links/bdc801dd-a93a-43f7-9054-e2c7d9952e97 less more
1 id: bdc801dd-a93a-43f7-9054-e2c7d9952e97
2 url: http://www.arch.mcgill.ca/prof/schoenauer/arch529/lecture04/htl4.htm
+0
-2
data/links/be2488b1-5754-4c3d-a580-18a79c9dccc1 less more
1 id: be2488b1-5754-4c3d-a580-18a79c9dccc1
2 url: http://www.codemaestro.com/reviews/9
+0
-2
data/links/be2bd2fc-3841-4507-b751-6484faeecbc7 less more
1 id: be2bd2fc-3841-4507-b751-6484faeecbc7
2 url: http://thelastpsychiatrist.com/2010/08/this_is_why_the_american_dream.html
+0
-2
data/links/be426275-e69a-4222-b604-c075debe6349 less more
1 id: be426275-e69a-4222-b604-c075debe6349
2 url: http://cre.ations.net/creation/t-shirt-designs-created-with-stencils-and-bleach
+0
-2
data/links/be8a41c2-7c25-4c11-ab08-51e9d3ce4c42 less more
1 id: be8a41c2-7c25-4c11-ab08-51e9d3ce4c42
2 url: http://www-pu.informatik.uni-tuebingen.de/users/klaeren/epigrams.html
+0
-2
data/links/bebf9c9c-abdb-4f97-a84f-346374011c86 less more
1 id: bebf9c9c-abdb-4f97-a84f-346374011c86
2 url: http://www.vexflow.com/
+0
-2
data/links/bedf2fb0-8a40-4f1a-8cde-05373e8dbd51 less more
1 id: bedf2fb0-8a40-4f1a-8cde-05373e8dbd51
2 url: http://xmlstar.sourceforge.net/overview.php
+0
-2
data/links/bef98925-df59-46c9-a1ae-077b12a85573 less more
1 id: bef98925-df59-46c9-a1ae-077b12a85573
2 url: https://code.google.com/p/owl-lisp/
+0
-2
data/links/bf14d179-9b5b-4469-a024-6959b32fba79 less more
1 id: bf14d179-9b5b-4469-a024-6959b32fba79
2 url: http://www.decorumcomics.com/comic.php?id=18
+0
-2
data/links/bf59ed0b-c4fe-4ecd-a8bb-afb3a51b220d less more
1 id: bf59ed0b-c4fe-4ecd-a8bb-afb3a51b220d
2 url: http://www.vintagecomputing.com/index.php/archives/243
+0
-2
data/links/bfca2d43-f8cb-440f-b5c3-a7071b354bc8 less more
1 id: bfca2d43-f8cb-440f-b5c3-a7071b354bc8
2 url: http://www.askvg.com/download-new-official-embedded-theme-for-windows-xp-and-2003-no-file-patching-required/
+0
-2
data/links/c026163d-2b06-4fc5-becc-e54c538296fd less more
1 id: c026163d-2b06-4fc5-becc-e54c538296fd
2 url: http://hackaday.com/2008/10/14/how-to-make-an-e-paper-clock-and-hack-esquire-magazine/
+0
-2
data/links/c0ee18fb-d088-40d9-adf9-aa6e71e627ab less more
1 id: c0ee18fb-d088-40d9-adf9-aa6e71e627ab
2 url: http://www.evilmadscientist.com/article.php/nightlight
+0
-2
data/links/c16cb81b-bec8-47da-99e8-e5a8773d5716 less more
1 id: c16cb81b-bec8-47da-99e8-e5a8773d5716
2 url: http://www.equityapartments.com/market/brochure.aspx?page=overview&amp;PropID=3089
+0
-2
data/links/c1cae2c3-fc6c-4773-8401-afff557f6e41 less more
1 id: c1cae2c3-fc6c-4773-8401-afff557f6e41
2 url: http://img45.imageshack.us/img45/4259/buildingssheet7dv.png
+0
-2
data/links/c1cf045b-8a93-4224-8f83-827c84af14ed less more
1 id: c1cf045b-8a93-4224-8f83-827c84af14ed
2 url: http://www.youtube.com/watch?v=vgYhLIThTvk&amp;eurl=
+0
-2
data/links/c1d1388a-73e7-480b-84aa-fa8bf2ee25df less more
1 id: c1d1388a-73e7-480b-84aa-fa8bf2ee25df
2 url: http://www.paulgraham.com/hp.html
+0
-2
data/links/c1ee7f62-df17-4576-8778-7106e1eb62cc less more
1 id: c1ee7f62-df17-4576-8778-7106e1eb62cc
2 url: http://phrack.com/issues.html?issue=67
+0
-2
data/links/c21ef818-688a-45d5-b268-afcbf04d154e less more
1 id: c21ef818-688a-45d5-b268-afcbf04d154e
2 url: http://www.useit.com/papers/anti-mac.html
+0
-2
data/links/c2246522-f3a9-4fd6-9d9a-ab1424c0c0ab less more
1 id: c2246522-f3a9-4fd6-9d9a-ab1424c0c0ab
2 url: http://www.firelightisle.com/
+0
-2
data/links/c269658c-6e39-46c0-9037-cc4bc17749ea less more
1 id: c269658c-6e39-46c0-9037-cc4bc17749ea
2 url: http://www.programmableweb.com/
+0
-2
data/links/c28b7596-0c0a-4c29-958f-a01e1b7e258e less more
1 id: c28b7596-0c0a-4c29-958f-a01e1b7e258e
2 url: http://lackofbanjos.com/games/small-worlds/
+0
-2
data/links/c29d4dbf-cb99-4850-a8d9-aeaddfaa2f52 less more
1 id: c29d4dbf-cb99-4850-a8d9-aeaddfaa2f52
2 url: http://www.makezine.com/blog/archive/2007/11/diy_cardboard_toy_kitchen.html?CMP=OTC-0D6B48984890
+0
-2
data/links/c29fc4ff-cecb-49d3-88bc-038ea575033c less more
1 id: c29fc4ff-cecb-49d3-88bc-038ea575033c
2 url: http://www.mentalfloss.com/blogs/archives/17972
+0
-2
data/links/c34661da-117a-48c7-99fb-68ba4633c70b less more
1 id: c34661da-117a-48c7-99fb-68ba4633c70b
2 url: http://whiteninjacomics.com/comics/nosebleed.shtml
+0
-2
data/links/c38da31b-1852-4eb7-b88c-76961e801654 less more
1 id: c38da31b-1852-4eb7-b88c-76961e801654
2 url: http://en.wikipedia.org/wiki/North_Slavic_languages#Constructed_North_Slavic_languages
+0
-2
data/links/c3c8e4d7-c475-4133-b3fb-0638237ce892 less more
1 id: c3c8e4d7-c475-4133-b3fb-0638237ce892
2 url: http://www.youtube.com/watch?v=t-3qncy5Qfk
+0
-2
data/links/c3cde1f5-a1a7-46db-8666-660454c2dcf1 less more
1 id: c3cde1f5-a1a7-46db-8666-660454c2dcf1
2 url: http://davidneat.wordpress.com/materials/shaping/styrofoam/
+0
-2
data/links/c3ecebdc-6970-432e-88b7-a1e7799f606f less more
1 id: c3ecebdc-6970-432e-88b7-a1e7799f606f
2 url: http://www.youtube.com/watch?v=AVZczLuoJoU
+0
-2
data/links/c3f20c23-21a9-4a33-a858-0f070e44333e less more
1 id: c3f20c23-21a9-4a33-a858-0f070e44333e
2 url: http://www.makerbeam.eu/
+0
-2
data/links/c3f74090-7bca-4300-aa68-c37f0bdefc59 less more
1 id: c3f74090-7bca-4300-aa68-c37f0bdefc59
2 url: http://www.scifi.com/scifiction/classics/classics_archive/disch/disch1.html
+0
-2
data/links/c3f8d713-66ff-49d1-be97-9c2e47f47806 less more
1 id: c3f8d713-66ff-49d1-be97-9c2e47f47806
2 url: http://www.greencarsite.co.uk/electric-bikes.htm?gclid=CM-Or7PnyY4CFRcGEgodFyKzxA
+0
-2
data/links/c40f84f4-e2c9-4618-b49d-3c54ff706756 less more
1 id: c40f84f4-e2c9-4618-b49d-3c54ff706756
2 url: http://www.artst.org/art-noveau/alphonse_mucha/
+0
-2
data/links/c46dc0e3-371f-479b-b672-690222dd5b43 less more
1 id: c46dc0e3-371f-479b-b672-690222dd5b43
2 url: http://flickr.com/groups/lolsheviks/pool/
+0
-2
data/links/c4834d41-1261-4fbf-b754-0d3b198e29e0 less more
1 id: c4834d41-1261-4fbf-b754-0d3b198e29e0
2 url: http://bash.org/?791482
+0
-2
data/links/c4867c01-47c2-4c60-b08c-aae4d1dcb450 less more
1 id: c4867c01-47c2-4c60-b08c-aae4d1dcb450
2 url: http://www.hxa.name/articles/content/tractatus-digito-philosophicus_hxa7241_2010.html
+0
-2
data/links/c4cdea8a-f3d4-43d4-b99e-345ef3e2039c less more
1 id: c4cdea8a-f3d4-43d4-b99e-345ef3e2039c
2 url: http://huttese.fw.hu/
+0
-2
data/links/c4d4ba2f-adc7-416a-9976-11c80b2a7f0a less more
1 id: c4d4ba2f-adc7-416a-9976-11c80b2a7f0a
2 url: http://specgram.com/
+0
-2
data/links/c50f521c-0ec2-4bb2-a5ff-a40d99a13a6c less more
1 id: c50f521c-0ec2-4bb2-a5ff-a40d99a13a6c
2 url: http://uncrustify.sourceforge.net/
+0
-2
data/links/c51d33f9-043f-4ed2-af7d-8f2c3bd6695c less more
1 id: c51d33f9-043f-4ed2-af7d-8f2c3bd6695c
2 url: http://translab.burundi.sk/code/vzx/index.htm
+0
-2
data/links/c5279d1c-8168-4fa9-84d3-8976f3094cc7 less more
1 id: c5279d1c-8168-4fa9-84d3-8976f3094cc7
2 url: http://cs.nyu.edu/~jhan/ftirsense/index.html
+0
-2
data/links/c53d79bf-d939-4a06-b448-1b6941a3b367 less more
1 id: c53d79bf-d939-4a06-b448-1b6941a3b367
2 url: http://www.wired.com/epicenter/2010/09/six-reasons-why-wired-uks-editor-isnt-on-facebook/
+0
-2
data/links/c5456d57-e40e-4ddf-987e-396b35228e01 less more
1 id: c5456d57-e40e-4ddf-987e-396b35228e01
2 url: http://www.defringe.com/2011/zerbamine/
+0
-2
data/links/c5499778-a82a-4bec-b5c8-c915d1914348 less more
1 id: c5499778-a82a-4bec-b5c8-c915d1914348
2 url: http://www.felixcloutier.com/x86/
+0
-2
data/links/c5786706-4ef1-4202-9c2c-9c008ca1ef49 less more
1 id: c5786706-4ef1-4202-9c2c-9c008ca1ef49
2 url: http://www.instructables.com/id/How-to-build-a-72Volt-electric-motorcycle/?ALLSTEPS
+0
-2
data/links/c58b0dd7-9ca0-47ec-a9bf-ec49221bb03e less more
1 id: c58b0dd7-9ca0-47ec-a9bf-ec49221bb03e
2 url: http://www.instructables.com/id/French_silk_pie_1/?ALLSTEPS
+0
-2
data/links/c5960354-bdf6-4b70-9f47-ff2db48bd7bf less more
1 id: c5960354-bdf6-4b70-9f47-ff2db48bd7bf
2 url: http://www.koffice.org/competition/gui1results.php
+0
-2
data/links/c5e68edb-7074-4d48-9787-7b549e7633dd less more
1 id: c5e68edb-7074-4d48-9787-7b549e7633dd
2 url: http://www.alvit.de/blog/article/20-best-license-free-official-fonts
+0
-2
data/links/c5fd0086-66bd-4071-9272-7cb91e427f27 less more
1 id: c5fd0086-66bd-4071-9272-7cb91e427f27
2 url: http://slant.co/topics/what-is-the-best-programming-font
+0
-2
data/links/c661227c-3f24-4b91-919c-8fe190bc298b less more
1 id: c661227c-3f24-4b91-919c-8fe190bc298b
2 url: http://www.believermag.com/issues/200911/?read=article_elliott
+0
-2
data/links/c6979d09-c107-42d5-b4d0-c6979cfe2097 less more
1 id: c6979d09-c107-42d5-b4d0-c6979cfe2097
2 url: http://www.hd-fortress.com/
+0
-2
data/links/c6ddc1a7-d534-45c4-b913-1bbed08b13ea less more
1 id: c6ddc1a7-d534-45c4-b913-1bbed08b13ea
2 url: http://ww3.telerama.com/~joseph/cooper/cooper.html
+0
-2
data/links/c6fe1b2d-6ac5-46be-b236-ca69f9fdee90 less more
1 id: c6fe1b2d-6ac5-46be-b236-ca69f9fdee90
2 url: http://www.stanford.edu/class/cs242/readings/
+0
-2
data/links/c70dd399-fef6-4499-812e-e88d11d8f4ae less more
1 id: c70dd399-fef6-4499-812e-e88d11d8f4ae
2 url: http://www.perfectstars.com/comic.php?date=2005-08-08
+0
-2
data/links/c7eb485f-3db6-4f5c-bd24-9cca632950b1 less more
1 id: c7eb485f-3db6-4f5c-bd24-9cca632950b1
2 url: http://en.wikipedia.org/wiki/Rabelais
+0
-2
data/links/c840f7c8-4045-4b08-aac8-495c4f6e21bd less more
1 id: c840f7c8-4045-4b08-aac8-495c4f6e21bd
2 url: http://matt.might.net/articles/writing-an-interpreter-substitution-denotational-big-step-small-step/
+0
-2
data/links/c90b6327-83c4-47bb-8c03-694adb2174f2 less more
1 id: c90b6327-83c4-47bb-8c03-694adb2174f2
2 url: http://www.fchords.com/20080729.shtml
+0
-2
data/links/c9240ec0-bd24-43bf-9e8f-1399e80f60b7 less more
1 id: c9240ec0-bd24-43bf-9e8f-1399e80f60b7
2 url: http://blog.makezine.com/archive/2008/02/simulated_woodgrain_for_m.html?CMP=OTC-0D6B48984890
+0
-2
data/links/c92e2dbd-105c-49e8-a992-a774bb52b573 less more
1 id: c92e2dbd-105c-49e8-a992-a774bb52b573
2 url: http://cmkosemen.com/
+0
-2
data/links/c93b6a6f-d8a3-4841-9ebe-d7225a1be3c5 less more
1 id: c93b6a6f-d8a3-4841-9ebe-d7225a1be3c5
2 url: http://lifehacker.com/5103825/turn-a-craft-store-antique-box-into-a-posh-charing-station
+0
-2
data/links/c93f9d1d-3fac-45cb-9b70-9f1541dba44c less more
1 id: c93f9d1d-3fac-45cb-9b70-9f1541dba44c
2 url: http://www.flickr.com/photos/balakov/sets/72157602602191858/
+0
-2
data/links/c9418c04-17bb-4d74-b658-ddebde30a335 less more
1 id: c9418c04-17bb-4d74-b658-ddebde30a335
2 url: http://icculus.org/fatelf/
+0
-2
data/links/c950d624-1cec-42b7-b2e6-74f897857b0c less more
1 id: c950d624-1cec-42b7-b2e6-74f897857b0c
2 url: http://www2.cmp.uea.ac.uk/~jrk/conlang.dir/Speedwords.overview
+0
-2
data/links/c9745a5f-583f-4168-9171-ed138597c05a less more
1 id: c9745a5f-583f-4168-9171-ed138597c05a
2 url: http://xkcd.com/c90.html
+0
-2
data/links/c97626af-495d-4f5a-a385-03f7b8b61af6 less more
1 id: c97626af-495d-4f5a-a385-03f7b8b61af6
2 url: http://romanticallyapocalyptic.com/1
+0
-2
data/links/c9b1c99e-38ad-4dd9-aea3-65af9de1694b less more
1 id: c9b1c99e-38ad-4dd9-aea3-65af9de1694b
2 url: http://www.oldtemecula.com/theremin/graveyard.htm
+0
-2
data/links/c9c51b37-ec57-45e1-8916-b9e06400316b less more
1 id: c9c51b37-ec57-45e1-8916-b9e06400316b
2 url: http://desmume.org/download/
+0
-2
data/links/c9d79655-1b23-4ca6-86c1-f087cf3c321a less more
1 id: c9d79655-1b23-4ca6-86c1-f087cf3c321a
2 url: http://dispersionarray.blogspot.com/
+0
-2
data/links/ca1f0b7e-b8d6-4983-8dae-cce8dfcb907a less more
1 id: ca1f0b7e-b8d6-4983-8dae-cce8dfcb907a
2 url: http://www.dueysdrawings.com/drawing_tutorials.html
+0
-2
data/links/ca21d6f3-dd33-4063-8a16-c0769df9179c less more
1 id: ca21d6f3-dd33-4063-8a16-c0769df9179c
2 url: https://github.com/samsquire/ideas
+0
-2
data/links/ca31ecf7-ecc1-4886-9618-3fe3875d8bd7 less more
1 id: ca31ecf7-ecc1-4886-9618-3fe3875d8bd7
2 url: http://www.notebookcheck.net/Case-Study-Replacing-the-Video-Card-of-a-Dell-Inspiron-E1705-9400.4187.0.html
+0
-2
data/links/ca4ad8e1-72d5-4103-90e4-d9d8a8ca09bc less more
1 id: ca4ad8e1-72d5-4103-90e4-d9d8a8ca09bc
2 url: http://jenwang.net/
+0
-2
data/links/ca6b6a7c-c529-4ef0-91d3-0390bf21600c less more
1 id: ca6b6a7c-c529-4ef0-91d3-0390bf21600c
2 url: http://blog.initprogram.com/2010/10/14/a-quick-basic-primer-on-the-irc-protocol/
+0
-2
data/links/ca951a75-be12-4567-a5d2-182afa3ae1b7 less more
1 id: ca951a75-be12-4567-a5d2-182afa3ae1b7
2 url: http://www-personal.umich.edu/~aleskiw/maps/home.htm
+0
-2
data/links/cada67db-589f-46ce-aa73-72e8975b310c less more
1 id: cada67db-589f-46ce-aa73-72e8975b310c
2 url: http://lists.w3.org/Archives/Public/public-html/2010Mar/0137.html
+0
-2
data/links/cae8485d-7208-4b22-a713-b2fc38d34f3a less more
1 id: cae8485d-7208-4b22-a713-b2fc38d34f3a
2 url: http://www.thibault.org/fonts/isabella/
+0
-2
data/links/cb08d27d-43f8-4c26-bfa2-e8627f286980 less more
1 id: cb08d27d-43f8-4c26-bfa2-e8627f286980
2 url: http://k-framework.org/index.php/Main_Page
+0
-2
data/links/cb4402d0-7835-4336-b26d-ea6d49e4b437 less more
1 id: cb4402d0-7835-4336-b26d-ea6d49e4b437
2 url: http://chrisdone.com/posts/2010-11-25-lisk-lisp-haskell.html
+0
-2
data/links/cb46b397-d306-4998-8892-b1232a2a7006 less more
1 id: cb46b397-d306-4998-8892-b1232a2a7006
2 url: http://www.project-reason.org/newsfeed/item/moral_confusion_in_the_name_of_science3/
+0
-2
data/links/cb4b517b-eb2a-4d88-b483-10a2f7e38189 less more
1 id: cb4b517b-eb2a-4d88-b483-10a2f7e38189
2 url: http://www.talk2myshirt.com/blog/archives/276
+0
-2
data/links/cb61a04c-25de-4f3b-9c06-7a001655d26d less more
1 id: cb61a04c-25de-4f3b-9c06-7a001655d26d
2 url: http://www.cd3wd.com/cd3wd_40/cd3wd/index.htm
+0
-2
data/links/cb84da23-39c9-4034-8618-16a0db1bdd03 less more
1 id: cb84da23-39c9-4034-8618-16a0db1bdd03
2 url: http://idiolect.org.uk/notes/?p=509
+0
-2
data/links/cba05ad8-3db1-4d15-9aeb-a2de3fda82a1 less more
1 id: cba05ad8-3db1-4d15-9aeb-a2de3fda82a1
2 url: http://talent.adweek.com/gallery/KNAPP-The-Post-war-collection-AW-1213/6180169
+0
-2
data/links/cbc2ea9e-9970-4b2f-98c9-2249a24441cd less more
1 id: cbc2ea9e-9970-4b2f-98c9-2249a24441cd
2 url: http://www.dreamsongs.com/MobSoftware.html
+0
-2
data/links/cbc5c7ee-132b-4e7c-abda-e8e7054bf287 less more
1 id: cbc5c7ee-132b-4e7c-abda-e8e7054bf287
2 url: http://www.spiderwords.com/feature1.htm
+0
-2
data/links/cc029fe6-99db-4ea7-b294-0d09c8231c72 less more
1 id: cc029fe6-99db-4ea7-b294-0d09c8231c72
2 url: http://vcg.informatik.uni-rostock.de/~hs162/treeposter/poster.html
+0
-2
data/links/cc24e799-75ac-4ead-a8e9-b0e78aec8507 less more
1 id: cc24e799-75ac-4ead-a8e9-b0e78aec8507
2 url: http://www.keithschofield.com/djformat-video/
+0
-2
data/links/cc5117ab-2312-4388-a71b-c389e9f1d460 less more
1 id: cc5117ab-2312-4388-a71b-c389e9f1d460
2 url: http://user.uni-frankfurt.de/~griesbec/LABANE.HTML
+0
-2
data/links/cc93b0ee-753b-4eb7-b458-f7021caa952b less more
1 id: cc93b0ee-753b-4eb7-b458-f7021caa952b
2 url: http://www.guardian.co.uk/music/2005/mar/20/popandrock1
+0
-2
data/links/cc9b2110-50da-4b0b-acc1-35df1b62ee94 less more
1 id: cc9b2110-50da-4b0b-acc1-35df1b62ee94
2 url: http://www.zfgc.com/users/kingmob/index.html
+0
-2
data/links/ccde8113-c2da-4c1c-98f6-ef52e08203c4 less more
1 id: ccde8113-c2da-4c1c-98f6-ef52e08203c4
2 url: http://www.call-with-current-continuation.org/
+0
-2
data/links/cce4e5f3-baf9-4cf3-ae21-63d648126671 less more
1 id: cce4e5f3-baf9-4cf3-ae21-63d648126671
2 url: http://magcius.github.io/xplain/article/index.html
+0
-2
data/links/cceeed28-3bc8-48e4-9dd7-102b65b4b45c less more
1 id: cceeed28-3bc8-48e4-9dd7-102b65b4b45c
2 url: http://en.wikipedia.org/wiki/A_Gamut_of_Games
+0
-2
data/links/cd006cf5-eae4-45b6-b6bb-441e2082d679 less more
1 id: cd006cf5-eae4-45b6-b6bb-441e2082d679
2 url: http://zulko.github.io/blog/2014/04/27/viennese-mazes-what-they-are/
+0
-2
data/links/cd09db9a-903a-4060-ae93-32b7c057bd22 less more
1 id: cd09db9a-903a-4060-ae93-32b7c057bd22
2 url: http://www.jessevandijk.net/g_08_76.html
+0
-2
data/links/cd4f491d-e2d4-495a-8582-ab01ddd9e959 less more
1 id: cd4f491d-e2d4-495a-8582-ab01ddd9e959
2 url: http://www.pixelbeat.org/cmdline.html
+0
-2
data/links/cd50190d-12d6-4091-9778-940caff27b0e less more
1 id: cd50190d-12d6-4091-9778-940caff27b0e
2 url: http://www.ted.com/index.php/talks/joshua_klein_on_the_intelligence_of_crows.html
+0
-2
data/links/cd603537-1af6-4c3a-816d-3d8428876261 less more
1 id: cd603537-1af6-4c3a-816d-3d8428876261
2 url: http://techtronik.net/
+0
-2
data/links/cd74fa09-f0cc-4d33-91ac-7b5b3129acc3 less more
1 id: cd74fa09-f0cc-4d33-91ac-7b5b3129acc3
2 url: http://blog.makezine.com/archive/2008/11/the_ocarina_of_time_iphon.html?CMP=OTC-0D6B48984890
+0
-2
data/links/cdcde201-df0d-4ab5-88c3-9494853c7bb0 less more
1 id: cdcde201-df0d-4ab5-88c3-9494853c7bb0
2 url: http://briarpress.org/
+0
-2
data/links/ceea00b5-5d4a-4f14-a31b-b5f1d54de474 less more
1 id: ceea00b5-5d4a-4f14-a31b-b5f1d54de474
2 url: http://tubetime.us/?p=28
+0
-2
data/links/cf8a55d4-583b-4874-bef3-25aba76521d3 less more
1 id: cf8a55d4-583b-4874-bef3-25aba76521d3
2 url: http://www.platinumgrit.com/
+0
-2
data/links/cf92e270-1d50-4b3b-81fb-20dc0a240295 less more
1 id: cf92e270-1d50-4b3b-81fb-20dc0a240295
2 url: http://www.progressiveboink.com/archive/peanuts-by-charles-bukowski/
+0
-2
data/links/cfa0af28-ce2f-4ec9-9f54-be0e3b6fc3ac less more
1 id: cfa0af28-ce2f-4ec9-9f54-be0e3b6fc3ac
2 url: http://en.wikipedia.org/wiki/Baudrillard
+0
-2
data/links/cfab6b2c-8007-43f8-9322-31f8b58eef9b less more
1 id: cfab6b2c-8007-43f8-9322-31f8b58eef9b
2 url: http://e-obento.com/
+0
-2
data/links/cfb354b7-881b-4d41-b8aa-9bf8bb8ef555 less more
1 id: cfb354b7-881b-4d41-b8aa-9bf8bb8ef555
2 url: http://www.boston.com/bigpicture/2008/08/london_from_above_at_night.html
+0
-2
data/links/cfbe9d47-5b08-4b1c-9a89-953c56a856c2 less more
1 id: cfbe9d47-5b08-4b1c-9a89-953c56a856c2
2 url: http://flash-gordon.me.uk/ansi.c.txt
+0
-2
data/links/cfbf6cdd-de01-44f4-966c-009bc44e7cac less more
1 id: cfbf6cdd-de01-44f4-966c-009bc44e7cac
2 url: http://blog.makezine.com/archive/2008/02/gummi_bear_goes_ballistic.html?CMP=OTC-0D6B48984890
+0
-2
data/links/cfc8e807-a8fc-4651-88c6-84c7ad30d58e less more
1 id: cfc8e807-a8fc-4651-88c6-84c7ad30d58e
2 url: http://www.pygtk.org/
+0
-2
data/links/cfcbb7ef-1adb-43ab-bee3-2f75676980d5 less more
1 id: cfcbb7ef-1adb-43ab-bee3-2f75676980d5
2 url: http://www.jeffreymorgenthaler.com/2010/sangria/
+0
-2
data/links/cfd96f71-9203-4e48-9237-659c028003da less more
1 id: cfd96f71-9203-4e48-9237-659c028003da
2 url: http://frederatorblogs.com/channel_frederator/2009/05/12/mads-tom-richmond-talks-about-caricature-tutorials/
+0
-2
data/links/d01184aa-c02b-4627-808b-0b2f3bcdab67 less more
1 id: d01184aa-c02b-4627-808b-0b2f3bcdab67
2 url: http://www.katemicucci.com/music.html
+0
-2
data/links/d01690db-cb64-4bd0-8918-fbf1816f5192 less more
1 id: d01690db-cb64-4bd0-8918-fbf1816f5192
2 url: http://www.c-faq.com/decl/spiral.anderson.html
+0
-2
data/links/d0a5a81b-12c0-4504-841a-c54b1c0f9f1c less more
1 id: d0a5a81b-12c0-4504-841a-c54b1c0f9f1c
2 url: http://www.nytimes.com/2009/01/07/dining/07mini.html?pagewanted=1&amp;_r=1
+0
-2
data/links/d0af5953-729a-4726-b4a3-5dbae7173eb8 less more
1 id: d0af5953-729a-4726-b4a3-5dbae7173eb8
2 url: http://fc64.deviantart.com/fs22/f/2008/002/0/1/World_War_Two__Simple_Version_by_AngusMcLeod.jpg
+0
-2
data/links/d0cee632-4668-4596-a288-82a305a9c2ca less more
1 id: d0cee632-4668-4596-a288-82a305a9c2ca
2 url: http://www.igvita.com/2010/09/03/zeromq-modern-fast-networking-stack/
+0
-2
data/links/d0db0ae7-bf62-40c9-986f-66bd9de54c86 less more
1 id: d0db0ae7-bf62-40c9-986f-66bd9de54c86
2 url: http://en.wikipedia.org/wiki/Kelmscott_Press
+0
-2
data/links/d12ac6cc-d9bf-4949-b6f3-5c5b6096920c less more
1 id: d12ac6cc-d9bf-4949-b6f3-5c5b6096920c
2 url: http://chronicle.com/article/The-End-of-Solitude/3708/
+0
-2
data/links/d12fe6ea-aae6-4620-9469-bdbae696e2fa less more
1 id: d12fe6ea-aae6-4620-9469-bdbae696e2fa
2 url: http://www.denkimono.com/timer/
+0
-2
data/links/d134e2ba-6a35-4318-9a42-fb35e6fc1b01 less more
1 id: d134e2ba-6a35-4318-9a42-fb35e6fc1b01
2 url: http://books.google.com/books?id=fvA7zLEFWZgC
+0
-2
data/links/d16b9ba1-0d6a-460f-84e7-1b28bd674353 less more
1 id: d16b9ba1-0d6a-460f-84e7-1b28bd674353
2 url: http://futureboy.homeip.net/frinkdocs/
+0
-2
data/links/d1a27c6e-e59b-47e9-b592-d4ce677dcdea less more
1 id: d1a27c6e-e59b-47e9-b592-d4ce677dcdea
2 url: http://www.pigpigscorner.com/2011/05/lotus-root-and-chicken-stir-fry.html
+0
-2
data/links/d1b38557-67fa-4b67-a633-0a4df9577622 less more
1 id: d1b38557-67fa-4b67-a633-0a4df9577622
2 url: http://www.factitious.net/index.php?title=Goat_Plague
+0
-2
data/links/d1b6fe29-15f6-49bc-949b-915ad55e9126 less more
1 id: d1b6fe29-15f6-49bc-949b-915ad55e9126
2 url: http://chaosinthekitchen.com/2010/01/chicken-vindaloo-and-garlic-naan/
+0
-2
data/links/d1bcedf1-dc90-4150-953a-cb611d4bbc02 less more
1 id: d1bcedf1-dc90-4150-953a-cb611d4bbc02
2 url: http://elzr.com/posts/infodesign-challenge#submission-1
+0
-2
data/links/d1df8dde-d4cd-4eaf-9155-230f382301d2 less more
1 id: d1df8dde-d4cd-4eaf-9155-230f382301d2
2 url: http://www.twopeasandtheirpod.com/homemade-soft-pretzel-bites/
+0
-2
data/links/d1e5a42f-53af-46ce-a285-89b9c29e8875 less more
1 id: d1e5a42f-53af-46ce-a285-89b9c29e8875
2 url: http://atomo-lang.org/
+0
-2
data/links/d1f18d7f-4efc-41f6-8398-7cc91beff190 less more
1 id: d1f18d7f-4efc-41f6-8398-7cc91beff190
2 url: http://www.cwo.com/~ph_kosel/designs.html
+0
-2
data/links/d2183fe9-4a6d-4854-8f73-448937b37e4e less more
1 id: d2183fe9-4a6d-4854-8f73-448937b37e4e
2 url: http://www.thesitewizard.com/php/create-image.shtml
+0
-2
data/links/d234c568-53bd-4740-ba30-f6ab63ac7f08 less more
1 id: d234c568-53bd-4740-ba30-f6ab63ac7f08
2 url: http://www.darkroastedblend.com/2008/05/extravagant-designs-by-luigi-colani.html
+0
-2
data/links/d263a561-f35b-44af-9acb-ae6e8e310266 less more
1 id: d263a561-f35b-44af-9acb-ae6e8e310266
2 url: http://www.youtube.com/watch?v=eIi1SvbFQYc
+0
-2
data/links/d26a31f0-1c63-4804-a4fa-c93cc3a081f0 less more
1 id: d26a31f0-1c63-4804-a4fa-c93cc3a081f0
2 url: http://www.cabinetmagazine.org/issues/18/crystal.php
+0
-2
data/links/d2759916-b570-4882-a2c4-f636672f8cd1 less more
1 id: d2759916-b570-4882-a2c4-f636672f8cd1
2 url: http://proxclone.com/reader_cloner.html
+0
-2
data/links/d2d7dacd-ed32-4b8f-80ba-535b2a1c7a38 less more
1 id: d2d7dacd-ed32-4b8f-80ba-535b2a1c7a38
2 url: http://lifehacker.com/384545/superior-alternatives-to-crappy-windows-software
+0
-2
data/links/d2e48b20-d97e-4dfb-a5a3-61b8ab6f0c22 less more
1 id: d2e48b20-d97e-4dfb-a5a3-61b8ab6f0c22
2 url: http://misterunagi.tumblr.com/post/5164849804/what-artists-inspired-your-style
+0
-2
data/links/d33ac774-1386-4e41-8057-efa401f9c7bd less more
1 id: d33ac774-1386-4e41-8057-efa401f9c7bd
2 url: http://lifehacker.com/software/texter/lifehacker-code-texter-windows-238306.php
+0
-2
data/links/d37610a5-d053-4f9a-871a-e4818200ebd9 less more
1 id: d37610a5-d053-4f9a-871a-e4818200ebd9
2 url: http://www.youtube.com/watch?v=SKdGwfMD8u8
+0
-2
data/links/d3a154fb-80a3-42b1-a0e7-e4aa22a858a2 less more
1 id: d3a154fb-80a3-42b1-a0e7-e4aa22a858a2
2 url: http://www.cthulhulives.org/toybox/PROPDOCS/FreeFonts.html
+0
-2
data/links/d3c83564-aaf4-41f7-8c7d-fb2714fd6a77 less more
1 id: d3c83564-aaf4-41f7-8c7d-fb2714fd6a77
2 url: http://github.com/olabini/ioke/blob/master/examples/multilang/hindi/account.ik
+0
-2
data/links/d3ccb1c3-e080-4278-b417-e848e3826032 less more
1 id: d3ccb1c3-e080-4278-b417-e848e3826032
2 url: http://citation.allacademic.com/meta/p_mla_apa_research_citation/1/8/0/2/9/pages180296/p180296-1.php
+0
-2
data/links/d3cdf071-6248-4da8-86d0-63e98cde2c0a less more
1 id: d3cdf071-6248-4da8-86d0-63e98cde2c0a
2 url: http://www.succubi.org/db/index.php
+0
-2
data/links/d3ce61a7-15b2-4798-a5fe-5e1f5bef35c3 less more
1 id: d3ce61a7-15b2-4798-a5fe-5e1f5bef35c3
2 url: http://pcb-dev.com/showsite.php?open=401f0f97abea3a243dd1e57eae599377
+0
-2
data/links/d3f93803-aa5b-4b6e-bdf3-bcf18448dc13 less more
1 id: d3f93803-aa5b-4b6e-bdf3-bcf18448dc13
2 url: http://www.unsigned-game.com/
+0
-2
data/links/d418c7f1-9bea-4bcd-97c4-1bf484479969 less more
1 id: d418c7f1-9bea-4bcd-97c4-1bf484479969
2 url: http://www.oneminutelanguages.com/
+0
-2
data/links/d441829f-81a0-45dc-aaf4-207fba6e6bcc less more
1 id: d441829f-81a0-45dc-aaf4-207fba6e6bcc
2 url: http://ruhlman.com/2010/09/so-you-wanna-be-a-chef%E2%80%94-by-bourdain-2.html
+0
-2
data/links/d490e59e-04ac-4c88-9fd2-f183aed53677 less more
1 id: d490e59e-04ac-4c88-9fd2-f183aed53677
2 url: https://github.com/shaih/HElib
+0
-2
data/links/d495dd4b-a892-4e08-b4a8-073a627100da less more
1 id: d495dd4b-a892-4e08-b4a8-073a627100da
2 url: http://wiki.puredata.info/en/Category:vanilla
+0
-2
data/links/d49b0312-36a2-4c1d-b6aa-38532965fdfc less more
1 id: d49b0312-36a2-4c1d-b6aa-38532965fdfc
2 url: http://nakedpunch.com/articles/34
+0
-2
data/links/d4e82dbc-b660-4424-b701-e43301e75680 less more
1 id: d4e82dbc-b660-4424-b701-e43301e75680
2 url: http://www.shortpacked.com/d/20061103.html
+0
-2
data/links/d517e63d-5753-4d3b-8cb2-25c618e93a6f less more
1 id: d517e63d-5753-4d3b-8cb2-25c618e93a6f
2 url: http://processingjs.org/
+0
-2
data/links/d520fbaf-6440-49f0-a0ba-7cfd02fd0439 less more
1 id: d520fbaf-6440-49f0-a0ba-7cfd02fd0439
2 url: http://www.aaronsw.com/weblog/books2010?v=3
+0
-2
data/links/d52de961-a474-4ed4-923d-aab1de16f8a0 less more
1 id: d52de961-a474-4ed4-923d-aab1de16f8a0
2 url: http://gameprogrammingpatterns.com/
+0
-2
data/links/d534fb40-c48b-4a09-ae33-3c90cbd683d9 less more
1 id: d534fb40-c48b-4a09-ae33-3c90cbd683d9
2 url: http://www.treasuretables.org/2007/06/four-key-elements-of-a-good-rpg-puzzle
+0
-2
data/links/d543df50-7a65-4f3c-ba0f-a7bb68047d07 less more
1 id: d543df50-7a65-4f3c-ba0f-a7bb68047d07
2 url: http://www.steeldolphin-forums.com/htmltuts/painting_steps.html
+0
-2
data/links/d588e31c-e106-473b-b79e-be061b5f8e22 less more
1 id: d588e31c-e106-473b-b79e-be061b5f8e22
2 url: http://inventwithpython.com/pygamecheatsheet.png
+0
-2
data/links/d5abbe8e-3b4a-4870-b630-1b205f4b9924 less more
1 id: d5abbe8e-3b4a-4870-b630-1b205f4b9924
2 url: http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=45124
+0
-2
data/links/d5b53a09-ef91-4cce-aa0d-f8afb4a99d05 less more
1 id: d5b53a09-ef91-4cce-aa0d-f8afb4a99d05
2 url: http://www.youtube.com/watch?v=fdcDvEg4mSw&amp;eurl=http://ectomo.com/
+0
-2
data/links/d5b5c9df-62a2-4938-a5df-f08ddfe28a91 less more
1 id: d5b5c9df-62a2-4938-a5df-f08ddfe28a91
2 url: http://anime.thehylia.com/downloads/series/monster
+0
-2
data/links/d5d5dcd2-f161-4f0d-a974-4eb3964a7d8b less more
1 id: d5d5dcd2-f161-4f0d-a974-4eb3964a7d8b
2 url: http://www.youtube.com/watch?v=mrAAo6vw_jI
+0
-2
data/links/d5dbbfac-54e0-486d-9ca1-f4c4257ba99b less more
1 id: d5dbbfac-54e0-486d-9ca1-f4c4257ba99b
2 url: http://thesocietypages.org/cyborgology/2011/10/17/the-rise-of-the-internet-anti-intellectual/
+0
-2
data/links/d5eb8321-cbb2-41dc-9aa7-b1f3e219e57e less more
1 id: d5eb8321-cbb2-41dc-9aa7-b1f3e219e57e
2 url: http://checkmyworking.com/cm-web-fonts/
+0
-2
data/links/d5f32a27-287c-49ae-a8e7-2dcc64d9af39 less more
1 id: d5f32a27-287c-49ae-a8e7-2dcc64d9af39
2 url: http://www.slate.com/id/2216611/pagenum/all/#p2
+0
-2
data/links/d63a1ca1-b8d1-4fb8-83df-0b153bfc34e1 less more
1 id: d63a1ca1-b8d1-4fb8-83df-0b153bfc34e1
2 url: http://hackety.org/2008/05/16/blimlimb.html
+0
-2
data/links/d65fd125-8dc4-4bc3-a3e4-4767b3594b13 less more
1 id: d65fd125-8dc4-4bc3-a3e4-4767b3594b13
2 url: http://blog.priceonomics.com/post/32944888191/living-in-a-van
+0
-2
data/links/d666d56c-5639-489d-9ef9-7f28c36b0bb1 less more
1 id: d666d56c-5639-489d-9ef9-7f28c36b0bb1
2 url: http://www.stephendiehl.com/posts/vim_haskell.html
+0
-2
data/links/d672c662-2395-4a34-b84e-498c17b4ae08 less more
1 id: d672c662-2395-4a34-b84e-498c17b4ae08
2 url: http://www.instructables.com/id/Dual-Fuel-Metal-Melting-Furnace/?ALLSTEPS
+0
-2
data/links/d6854a0b-246b-4fe9-8950-217da7fffb93 less more
1 id: d6854a0b-246b-4fe9-8950-217da7fffb93
2 url: http://imgur.com/a/dbELn?gallery
+0
-2
data/links/d686028a-2b13-4804-a244-ab7a36ad97b2 less more
1 id: d686028a-2b13-4804-a244-ab7a36ad97b2
2 url: http://blog.makezine.com/archive/2008/08/urban_sustainability_qa_w.html?CMP=OTC-0D6B48984890
+0
-2
data/links/d6b5f272-0ca6-4418-a1ec-af7903e576cc less more
1 id: d6b5f272-0ca6-4418-a1ec-af7903e576cc
2 url: http://www.godpatterns.com/adventure-games/adventure-game-design-patterns/
+0
-2
data/links/d6bb39e5-a798-4408-9093-2dbb814e8508 less more
1 id: d6bb39e5-a798-4408-9093-2dbb814e8508
2 url: http://www.greenverdugo.com/ocarina-making-tutorial/ocarina-making.html
+0
-2
data/links/d6fe8604-d88d-48b6-8093-c5ecd660444d less more
1 id: d6fe8604-d88d-48b6-8093-c5ecd660444d
2 url: http://thesweethome.com/
+0
-2
data/links/d701b901-a50f-406a-8539-0c0c0bb5d4e7 less more
1 id: d701b901-a50f-406a-8539-0c0c0bb5d4e7
2 url: http://www.itstherub.com/?p=1859
+0
-2
data/links/d741ece4-d306-49cc-9d7b-84e9be0b4401 less more
1 id: d741ece4-d306-49cc-9d7b-84e9be0b4401
2 url: http://www.lifehack.org/articles/productivity/the-ultimate-student-resource-list.html
+0
-2
data/links/d7487b63-c695-4410-b287-9b404839e6a2 less more
1 id: d7487b63-c695-4410-b287-9b404839e6a2
2 url: http://eater.com/archives/2014/07/11/meat-fruit-dinner-by-heston-blumenthal-london.php
+0
-2
data/links/d74c0d96-9bca-483b-99a8-9931b4a590e7 less more
1 id: d74c0d96-9bca-483b-99a8-9931b4a590e7
2 url: http://www.flickr.com/photos/planetwrite/2429490913/in/photostream/
+0
-2
data/links/d7922c60-e98a-43c3-b482-54b0fb98f640 less more
1 id: d7922c60-e98a-43c3-b482-54b0fb98f640
2 url: http://getaether.net/
+0
-2
data/links/d7ae72bc-011e-4762-9036-b2f56847a4be less more
1 id: d7ae72bc-011e-4762-9036-b2f56847a4be
2 url: http://www.gutenberg.org/cache/epub/5402/pg5402.html
+0
-2
data/links/d7afe838-a1e7-4ae4-94ae-f20b46f2288d less more
1 id: d7afe838-a1e7-4ae4-94ae-f20b46f2288d
2 url: http://boingboing.net/2014/07/21/mawwiage.html
+0
-2
data/links/d7c18f12-4ee5-4bab-81c0-0127e7829da1 less more
1 id: d7c18f12-4ee5-4bab-81c0-0127e7829da1
2 url: http://blog.gopheracademy.com/cron-filesystem/
+0
-2
data/links/d7d0bc8d-e7e8-4c49-822a-5150e97ead12 less more
1 id: d7d0bc8d-e7e8-4c49-822a-5150e97ead12
2 url: http://www.apartmenttherapy.com/la/look/look-70s-rock-musicians-and-their-parents-homes-070419
+0
-2
data/links/d7d11265-2a03-4989-9749-e174c1fef833 less more
1 id: d7d11265-2a03-4989-9749-e174c1fef833
2 url: http://news.usethesource.com/news
+0
-2
data/links/d7ecfd2d-58c7-44b1-8c7e-043bb50d70d4 less more
1 id: d7ecfd2d-58c7-44b1-8c7e-043bb50d70d4
2 url: http://skulladay.blogspot.com/2007/09/free-skull-font.html
+0
-2
data/links/d7feac91-9de9-489d-bbf7-79401394db41 less more
1 id: d7feac91-9de9-489d-bbf7-79401394db41
2 url: http://thewirecutter.com/
+0
-2
data/links/d8149b1d-4fa1-417d-82d8-b253a515fe96 less more
1 id: d8149b1d-4fa1-417d-82d8-b253a515fe96
2 url: http://www.kattitudes.com/rose20.htm
+0
-2
data/links/d83774f3-a989-47de-a3fd-20d02862a4ad less more
1 id: d83774f3-a989-47de-a3fd-20d02862a4ad
2 url: http://k-framework.org/index.php/Main_Page
+0
-2
data/links/d8aa6e40-e1d0-41b2-9b2a-479737ff23d2 less more
1 id: d8aa6e40-e1d0-41b2-9b2a-479737ff23d2
2 url: http://academic.udayton.edu/tobyrush/theorypages/
+0
-2
data/links/d8bc6678-a289-4899-af67-c7094dd0e873 less more
1 id: d8bc6678-a289-4899-af67-c7094dd0e873
2 url: http://blog.makezine.com/archive/2008/08/open_source_multitouch_ha.html?CMP=OTC-0D6B48984890
+0
-2
data/links/d8fca0ba-c9f4-45cf-b823-1aa6deeed513 less more
1 id: d8fca0ba-c9f4-45cf-b823-1aa6deeed513
2 url: http://north.cgsociety.org/gallery/617945/
+0
-2
data/links/d90b93a4-246e-49cc-ac2a-a7dc61d8a182 less more
1 id: d90b93a4-246e-49cc-ac2a-a7dc61d8a182
2 url: http://en.wikipedia.org/wiki/Il_talismano_della_felicit%C3%A0
+0
-2
data/links/d93bfd59-80b4-4d79-8725-b0cb42483aee less more
1 id: d93bfd59-80b4-4d79-8725-b0cb42483aee
2 url: http://fly.cc.fer.hr/~unreal/theredbook/
+0
-2
data/links/d9646a68-623c-4fa0-b3f8-55abf40e4e71 less more
1 id: d9646a68-623c-4fa0-b3f8-55abf40e4e71
2 url: http://coolmaterial.com/roundup/the-webs-best-grilled-cheese-sandwiches/
+0
-2
data/links/d9675420-523f-46fa-ace4-68a6000d1765 less more
1 id: d9675420-523f-46fa-ace4-68a6000d1765
2 url: http://www.earlham.edu/~peters/writing/psa/
+0
-2
data/links/d9760b05-34c6-4534-9b86-9774a02760b6 less more
1 id: d9760b05-34c6-4534-9b86-9774a02760b6
2 url: http://www.plausiblydeniable.com/opinion/gsf.html
+0
-2
data/links/d9c1b34d-9cfb-4aab-8fdd-43f4061d21eb less more
1 id: d9c1b34d-9cfb-4aab-8fdd-43f4061d21eb
2 url: http://news.ycombinator.com/item?id=2847377
+0
-2
data/links/da789e84-818a-4cb1-a7d0-378a337faba2 less more
1 id: da789e84-818a-4cb1-a7d0-378a337faba2
2 url: http://www.troubleshooters.com/linux/init/manjaro_experiments.htm
+0
-2
data/links/da86ed41-5764-4721-ad20-9bb784c28057 less more
1 id: da86ed41-5764-4721-ad20-9bb784c28057
2 url: http://blog.wired.com/photos/uncategorized/2007/06/15/061018_belka.jpg
+0
-2
data/links/da8d0b08-08ff-4cb4-aec2-5d8da1547d5d less more
1 id: da8d0b08-08ff-4cb4-aec2-5d8da1547d5d
2 url: http://adamcadre.ac/if.html
+0
-2
data/links/dacd2e61-8cc0-4f4a-b905-4c9ee6383237 less more
1 id: dacd2e61-8cc0-4f4a-b905-4c9ee6383237
2 url: www.fantasticmaps.com
+0
-2
data/links/db0af206-0f87-4761-a179-91060ffba77d less more
1 id: db0af206-0f87-4761-a179-91060ffba77d
2 url: http://www.cameronius.com/games/yavalath/
+0
-2
data/links/db2411f6-94ce-4459-a57f-069d648ee41f less more
1 id: db2411f6-94ce-4459-a57f-069d648ee41f
2 url: http://community.livejournal.com/pantsketch/99256.html
+0
-2
data/links/db4a32e2-373d-4744-b392-71ccd9829d0b less more
1 id: db4a32e2-373d-4744-b392-71ccd9829d0b
2 url: http://blogs.babble.com/family-kitchen/2011/02/24/homemade-nutella-oh-yes/
+0
-2
data/links/db649480-c64b-4d67-854b-84b5738ebffa less more
1 id: db649480-c64b-4d67-854b-84b5738ebffa
2 url: http://www.shirky.com/writings/group_enemy.html
+0
-2
data/links/db7ddcf5-a3d1-4651-9976-6c6cf2c1c94b less more
1 id: db7ddcf5-a3d1-4651-9976-6c6cf2c1c94b
2 url: http://74.125.93.132/search?q=cache%3AqbTctqPn3pQJ%3Awww.ecosalon.com%2Fforaging-for-food%2F+ecosalon+foraging+for+food&amp;cd=1&amp;hl=en&amp;ct=clnk&amp;gl=us%2F
+0
-2
data/links/dba0aae2-0a25-4f36-ae98-deced92f1a66 less more
1 id: dba0aae2-0a25-4f36-ae98-deced92f1a66
2 url: http://www.umop.com/rps25.htm
+0
-2
data/links/dbcbf771-67b8-4585-9e0a-430da295134b less more
1 id: dbcbf771-67b8-4585-9e0a-430da295134b
2 url: http://www.fuelyourcreativity.com/inspiration-from-across-the-design-spectrum-100509/
+0
-2
data/links/dbf08fc2-6f35-4196-8231-21659df3b200 less more
1 id: dbf08fc2-6f35-4196-8231-21659df3b200
2 url: http://www.essentialmath.com/tutorial.htm
+0
-2
data/links/dbfaf839-01c6-48e7-b288-31f33b10ac4f less more
1 id: dbfaf839-01c6-48e7-b288-31f33b10ac4f
2 url: http://www.telescopecards.com/
+0
-2
data/links/dc107106-9169-443b-ac2d-4b0ec0f095ba less more
1 id: dc107106-9169-443b-ac2d-4b0ec0f095ba
2 url: http://www.ultimaratioregum.co.uk/game/info/
+0
-2
data/links/dc485268-c3f3-4651-a1cd-64487c1b0226 less more
1 id: dc485268-c3f3-4651-a1cd-64487c1b0226
2 url: http://www.theonion.com/content/node/28619
+0
-2
data/links/dc58a96f-78c7-446d-a7e5-3c506279336f less more
1 id: dc58a96f-78c7-446d-a7e5-3c506279336f
2 url: http://www4.ncsu.edu/~tenshi/Killer_000.htm
+0
-2
data/links/dc6f01c4-d4bc-41e7-af55-f92843c4a812 less more
1 id: dc6f01c4-d4bc-41e7-af55-f92843c4a812
2 url: http://lifehacker.com/317479/make-the-most-of-your-dual-monitors
+0
-2
data/links/dcb2919a-8c57-421a-acb6-8f13108ccc3d less more
1 id: dcb2919a-8c57-421a-acb6-8f13108ccc3d
2 url: http://okmij.org/ftp/Computation/differentiating-parsers.html
+0
-2
data/links/dcd7ee0f-927d-4bdf-8064-cae440c80af0 less more
1 id: dcd7ee0f-927d-4bdf-8064-cae440c80af0
2 url: http://thedailyblahblah.wordpress.com/2008/04/20/docx-in-openoffice-revisited/
+0
-2
data/links/dd0d6c01-5190-4634-aa06-990bbf16a6b4 less more
1 id: dd0d6c01-5190-4634-aa06-990bbf16a6b4
2 url: http://www.josepino.com/circuits/index.php?howto-speaker.jpc
+0
-2
data/links/dd5933a6-e0e5-4050-ab14-adf69e9dc728 less more
1 id: dd5933a6-e0e5-4050-ab14-adf69e9dc728
2 url: http://www.instructables.com/id/Creating-cutting-and-printing-your-own-woodblock/?ALLSTEPS
+0
-2
data/links/ddf1ed5d-88b9-4edf-a852-f73f91dbadaf less more
1 id: ddf1ed5d-88b9-4edf-a852-f73f91dbadaf
2 url: http://www.youtube.com/watch?v=CB8ldeIamTs
+0
-2
data/links/ddf78668-fff6-4058-b576-5d291aa14a56 less more
1 id: ddf78668-fff6-4058-b576-5d291aa14a56
2 url: http://oxij.org/note/BrutalDepTypes/
+0
-2
data/links/de38e896-f359-4327-b829-34193dd5c70a less more
1 id: de38e896-f359-4327-b829-34193dd5c70a
2 url: http://ben.jellybaby.net/
+0
-2
data/links/de458e93-5613-4eaa-9f54-3b7a24419077 less more
1 id: de458e93-5613-4eaa-9f54-3b7a24419077
2 url: http://phonons.wordpress.com/2010/06/01/cells-a-massively-multi-agent-python-programming-game/
+0
-2
data/links/de47e59b-4116-4768-ba1b-ee7ffd88ee2c less more
1 id: de47e59b-4116-4768-ba1b-ee7ffd88ee2c
2 url: https://github.com/TheBerkin/Rant
+0
-2
data/links/de9ad31f-5bfd-496e-909a-3ca83684bf21 less more
1 id: de9ad31f-5bfd-496e-909a-3ca83684bf21
2 url: http://www.webcomicsnation.com/justinpie/wonderella/series.php?view=archive&amp;chapter=16997
+0
-2
data/links/dea7be04-c338-4e05-bd09-5ad5a43a6dcb less more
1 id: dea7be04-c338-4e05-bd09-5ad5a43a6dcb
2 url: http://www.techradar.com/news/world-of-tech/future-tech/light-emitting-wallpaper-set-to-wow-317188
+0
-2
data/links/dec60a65-9a4a-4a3d-8080-20290cf57bcf less more
1 id: dec60a65-9a4a-4a3d-8080-20290cf57bcf
2 url: http://www.brunching.com/geekhierarchy.html
+0
-2
data/links/defd6b3b-375b-422a-8c80-02f27c1db4c6 less more
1 id: defd6b3b-375b-422a-8c80-02f27c1db4c6
2 url: http://www.shelfari.com/books/93930/The-Laws-of-Simplicity-(Simplicity-Design-Technology-Business-Li
+0
-2
data/links/df0a2406-d30b-430c-a2e0-47eaf825236c less more
1 id: df0a2406-d30b-430c-a2e0-47eaf825236c
2 url: http://ecomodder.com/blog/2008/01/30/a-672-electric-car/
+0
-2
data/links/df1e1658-bbee-4e98-9739-1e3cff42746e less more
1 id: df1e1658-bbee-4e98-9739-1e3cff42746e
2 url: http://www.jamlegend.com/
+0
-2
data/links/df44ca8e-db35-45c7-af49-57336ee20a7e less more
1 id: df44ca8e-db35-45c7-af49-57336ee20a7e
2 url: http://blog.makezine.com/archive/2008/04/garbage_architecture.html?CMP=OTC-0D6B48984890
+0
-2
data/links/df472fbe-8db7-4135-8c6f-d82c846d24c6 less more
1 id: df472fbe-8db7-4135-8c6f-d82c846d24c6
2 url: http://www.red-lang.org/
+0
-2
data/links/df53748b-8478-4b28-88ed-0af6a3b15b9f less more
1 id: df53748b-8478-4b28-88ed-0af6a3b15b9f
2 url: http://www.csdl.tamu.edu/~shipman/viki/papers/ht91/ht91.html
+0
-2
data/links/df71b701-5653-4453-876e-644217c5bf87 less more
1 id: df71b701-5653-4453-876e-644217c5bf87
2 url: http://8tracks.com/teamteamwork/the-ocarina-of-rhyme
+0
-2
data/links/dfad1a5c-2e13-4920-abc7-5c83b84b5bbd less more
1 id: dfad1a5c-2e13-4920-abc7-5c83b84b5bbd
2 url: http://theimaginarium.tumblr.com/post/422628041
+0
-2
data/links/dfdadf82-5938-4c63-9662-a992ed8779de less more
1 id: dfdadf82-5938-4c63-9662-a992ed8779de
2 url: http://algorithmicbotany.org/papers/colonization.egwnp2007.large.pdf
+0
-2
data/links/dfea4d5f-dffa-4a2d-865f-7ab564540143 less more
1 id: dfea4d5f-dffa-4a2d-865f-7ab564540143
2 url: http://www.ubu.com/outsiders/365/index.shtml
+0
-2
data/links/e0848c83-d212-4953-8f59-fa615b53eedc less more
1 id: e0848c83-d212-4953-8f59-fa615b53eedc
2 url: http://www.foodtimeline.org/
+0
-2
data/links/e0baa784-fe37-438a-9bc9-b5a732721bdc less more
1 id: e0baa784-fe37-438a-9bc9-b5a732721bdc
2 url: http://hanson.gmu.edu/econofsf.html
+0
-2
data/links/e0efd00b-4907-48fa-b0d0-27cf7189e3ba less more
1 id: e0efd00b-4907-48fa-b0d0-27cf7189e3ba
2 url: http://docs.google.com/Doc?id=dfxjxt6x_16g2n3d7hm&amp;pli=1
+0
-2
data/links/e13d20bb-42cc-49b2-a3f9-05c61b567d2b less more
1 id: e13d20bb-42cc-49b2-a3f9-05c61b567d2b
2 url: http://en.wikipedia.org/wiki/The_Biography_of_Manuel
+0
-2
data/links/e15c5e29-cf00-4296-be9c-eb11dbd806e6 less more
1 id: e15c5e29-cf00-4296-be9c-eb11dbd806e6
2 url: http://www.funforever.net/archives/monowheel/
+0
-2
data/links/e18babbc-92da-4cec-b896-163616a75bb4 less more
1 id: e18babbc-92da-4cec-b896-163616a75bb4
2 url: http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books
+0
-2
data/links/e1f314cf-108f-41a3-8e0e-4e4c4033f2cf less more
1 id: e1f314cf-108f-41a3-8e0e-4e4c4033f2cf
2 url: http://boli.blog.pl/
+0
-2
data/links/e2333bc3-989c-4bee-9254-4f38e1bef331 less more
1 id: e2333bc3-989c-4bee-9254-4f38e1bef331
2 url: http://randombuddha.com/
+0
-2
data/links/e296931a-cb21-4372-81ef-b1ee2514391f less more
1 id: e296931a-cb21-4372-81ef-b1ee2514391f
2 url: http://www.instructables.com/id/Create-embroidered-patches-from-digital-images/?ALLSTEPS
+0
-2
data/links/e29c89c8-bbdb-4bb6-ac07-0d575494cd18 less more
1 id: e29c89c8-bbdb-4bb6-ac07-0d575494cd18
2 url: http://www.eblong.com/zarf/moopsball/index.html
+0
-2
data/links/e2b1ea0b-4659-4403-a4f9-d6338136afff less more
1 id: e2b1ea0b-4659-4403-a4f9-d6338136afff
2 url: http://www.boston.com/bostonglobe/ideas/naps/
+0
-2
data/links/e2ce52de-614b-4ea8-be32-5852e439b97e less more
1 id: e2ce52de-614b-4ea8-be32-5852e439b97e
2 url: http://imgur.com/a/Vr4UD
+0
-2
data/links/e3483576-03f9-4641-b81a-34f9f867222b less more
1 id: e3483576-03f9-4641-b81a-34f9f867222b
2 url: http://www.zazzle.com/custom/posters
+0
-2
data/links/e379a6ef-a1c0-4e05-9e5f-f50714ffee95 less more
1 id: e379a6ef-a1c0-4e05-9e5f-f50714ffee95
2 url: http://www.slate.com/id/2250784/
+0
-2
data/links/e39b9f8a-6217-4352-b959-949e27cb5fcf less more
1 id: e39b9f8a-6217-4352-b959-949e27cb5fcf
2 url: http://www.pixartouchbook.com/blog/2011/5/15/pixar-story-rules-one-version.html
+0
-2
data/links/e3d4387f-2bc0-4c8d-939e-a34a6f3a83a5 less more
1 id: e3d4387f-2bc0-4c8d-939e-a34a6f3a83a5
2 url: http://annathered.wordpress.com/
+0
-2
data/links/e3dfd94a-6e3a-4fe8-a8f4-f702c81f44d6 less more
1 id: e3dfd94a-6e3a-4fe8-a8f4-f702c81f44d6
2 url: http://abstrakraft.org/cwiid/browser/trunk/wminput/action_enum.txt
+0
-2
data/links/e3e6f9fc-9592-4937-a455-05f460917966 less more
1 id: e3e6f9fc-9592-4937-a455-05f460917966
2 url: http://www.instructables.com/id/DIY-High-Speed-Book-Scanner-from-Trash-and-Cheap-C/?ALLSTEPS
+0
-2
data/links/e40af3b5-b9df-41f8-8b03-b198a4556e70 less more
1 id: e40af3b5-b9df-41f8-8b03-b198a4556e70
2 url: http://freedroid.sourceforge.net/info.php
+0
-2
data/links/e4298e3c-ddf1-4e0a-b072-f18159b3bf8c less more
1 id: e4298e3c-ddf1-4e0a-b072-f18159b3bf8c
2 url: http://canonical.org/~kragen/raph-io.html
+0
-2
data/links/e47af6d3-3ddc-4c59-9e2e-b84a38af1bae less more
1 id: e47af6d3-3ddc-4c59-9e2e-b84a38af1bae
2 url: http://www.smashingmagazine.com/2009/05/23/gorgeous-examples-of-floral-typography/
+0
-2
data/links/e47c3f48-7950-4e6f-b4fc-702088c74e0f less more
1 id: e47c3f48-7950-4e6f-b4fc-702088c74e0f
2 url: http://www.canonical.org/~kragen/tao-of-programming.html
+0
-2
data/links/e4a38021-625f-4937-8549-e6f5d42b0f78 less more
1 id: e4a38021-625f-4937-8549-e6f5d42b0f78
2 url: http://www.lets-evo.net/2007/08/17/diy-skateboard-project/
+0
-2
data/links/e4c0b13a-506f-4a03-9443-5862b7c52d3c less more
1 id: e4c0b13a-506f-4a03-9443-5862b7c52d3c
2 url: http://www.freshmanforlife.com/search/label/Blotchmen
+0
-2
data/links/e4f3e402-ea3b-407e-bb25-647019b9359e less more
1 id: e4f3e402-ea3b-407e-bb25-647019b9359e
2 url: http://www.ladyada.net/library/picvsavr.html
+0
-2
data/links/e501a0b1-b118-4815-b8eb-e727fd10e8ce less more
1 id: e501a0b1-b118-4815-b8eb-e727fd10e8ce
2 url: http://www.somethingawful.com/d/news/ap-reading-exam.php
+0
-2
data/links/e55d60f4-2e80-4a9c-9a3c-3d22f3066d3a less more
1 id: e55d60f4-2e80-4a9c-9a3c-3d22f3066d3a
2 url: http://www.instructables.com/id/3-string-slide-guitar/?ALLSTEPS
+0
-2
data/links/e5e27ccf-ac97-4a3f-935e-ef76d5b0d7be less more
1 id: e5e27ccf-ac97-4a3f-935e-ef76d5b0d7be
2 url: http://www.getmemo.org/index.html
+0
-2
data/links/e5eb33e8-056d-4562-93c7-3b6670b2360a less more
1 id: e5eb33e8-056d-4562-93c7-3b6670b2360a
2 url: http://nyny.essortment.com/naturaldyeplan_rxll.htm
+0
-2
data/links/e63294ee-b0db-4f63-ad02-ff86d5796695 less more
1 id: e63294ee-b0db-4f63-ad02-ff86d5796695
2 url: http://youtube.com/watch?v=F52dx9Z0L5k
+0
-2
data/links/e6507a2b-f6c3-49b6-b3b7-72a5828cb332 less more
1 id: e6507a2b-f6c3-49b6-b3b7-72a5828cb332
2 url: http://www.kamuicosplay.com/
+0
-2
data/links/e6a62738-06ed-4404-91e5-eb38206280b6 less more
1 id: e6a62738-06ed-4404-91e5-eb38206280b6
2 url: http://www.huffingtonpost.com/gary-arndt/20-thing-ive-learned-from_b_673264.html
+0
-2
data/links/e6de3029-9b9b-4ba0-be25-8551df360a01 less more
1 id: e6de3029-9b9b-4ba0-be25-8551df360a01
2 url: http://www.dougengelbart.org/pubs/augment-3906.html
+0
-2
data/links/e6eb9a53-f1db-46f8-bbd2-2ac51c4f0003 less more
1 id: e6eb9a53-f1db-46f8-bbd2-2ac51c4f0003
2 url: http://www.jerf.org/iri/post/2908
+0
-2
data/links/e720e176-0596-4a94-b8fe-1bcd9fa2c492 less more
1 id: e720e176-0596-4a94-b8fe-1bcd9fa2c492
2 url: http://www.youtube.com/watch?v=MUensqImzXM
+0
-2
data/links/e74c6ea6-0d71-49af-a33a-388a003dcc61 less more
1 id: e74c6ea6-0d71-49af-a33a-388a003dcc61
2 url: http://www.kindredcocktails.com/cocktail/bitter-elder
+0
-2
data/links/e7571528-e178-4691-955f-500cbe1bc5b0 less more
1 id: e7571528-e178-4691-955f-500cbe1bc5b0
2 url: http://www.donhopkins.com/home/images/Sims/
+0
-2
data/links/e767ca8c-05dd-49ba-8f93-ec8ebfa26640 less more
1 id: e767ca8c-05dd-49ba-8f93-ec8ebfa26640
2 url: http://indie-rpgs.com/archive/index.php?topic=18125.0
+0
-2
data/links/e773a547-a4f0-4ca7-81e8-ff306da9d5c7 less more
1 id: e773a547-a4f0-4ca7-81e8-ff306da9d5c7
2 url: http://www.tartare.org/
+0
-2
data/links/e78dbddb-9b36-4f5d-acda-a7e3861b3f77 less more
1 id: e78dbddb-9b36-4f5d-acda-a7e3861b3f77
2 url: http://web.archive.org/web/20051107103030/http://mpt.phrasewise.com/2003/05/02
+0
-2
data/links/e7d3d75c-8688-4d24-b812-6be35bd13599 less more
1 id: e7d3d75c-8688-4d24-b812-6be35bd13599
2 url: http://shebang.ws/the-limits-of-mathematics.html
+0
-2
data/links/e7d451ba-fa84-4e99-beee-856b67aaabb2 less more
1 id: e7d451ba-fa84-4e99-beee-856b67aaabb2
2 url: http://lifehacker.com/399067/top-10-printable-paper-productivity-tools
+0
-2
data/links/e7f0d648-701c-4834-8ce7-56a0add44c4f less more
1 id: e7f0d648-701c-4834-8ce7-56a0add44c4f
2 url: http://imgur.com/a/aHTtJ?gallery
+0
-2
data/links/e7f47655-ddbc-4b24-a141-55b31f0aa32f less more
1 id: e7f47655-ddbc-4b24-a141-55b31f0aa32f
2 url: http://www.scarygoround.com/?date=20040415
+0
-2
data/links/e810f647-b0e6-4b9a-a402-c187bdbbd603 less more
1 id: e810f647-b0e6-4b9a-a402-c187bdbbd603
2 url: http://www.dilbert.com/comics/dilbert/news_and_history/html/how_to_become.html
+0
-2
data/links/e8209eba-be64-4747-877e-2d42c490cfd9 less more
1 id: e8209eba-be64-4747-877e-2d42c490cfd9
2 url: http://www.8bitpeoples.com/
+0
-2
data/links/e824174f-6b3d-4ea1-b8f3-6ca818557a3d less more
1 id: e824174f-6b3d-4ea1-b8f3-6ca818557a3d
2 url: http://www.evilmadscientist.com/article.php/papercircuitry
+0
-2
data/links/e83f47e5-c600-47cb-aee2-9cb84b65cc60 less more
1 id: e83f47e5-c600-47cb-aee2-9cb84b65cc60
2 url: http://www.bakeforachange.com/
+0
-2
data/links/e8441e72-d23b-40ff-b9db-9f61dc2df56e less more
1 id: e8441e72-d23b-40ff-b9db-9f61dc2df56e
2 url: https://sites.google.com/site/prologforprogrammers/
+0
-2
data/links/e8a94560-8a2d-4d3a-bc60-579797455101 less more
1 id: e8a94560-8a2d-4d3a-bc60-579797455101
2 url: http://www.martin-brinkmann.de/
+0
-2
data/links/e8eee6fd-89cc-4616-b3da-731184beff47 less more
1 id: e8eee6fd-89cc-4616-b3da-731184beff47
2 url: http://www.asiteaboutnothing.net/cr_most-useful-knots.html
+0
-2
data/links/e90c4abf-e3b4-4675-86b6-72f6147fd493 less more
1 id: e90c4abf-e3b4-4675-86b6-72f6147fd493
2 url: http://www.pcmag.com/article2/0,2817,1835131,00.asp
+0
-2
data/links/e9187544-8bb2-4c53-ae65-645299f4f353 less more
1 id: e9187544-8bb2-4c53-ae65-645299f4f353
2 url: http://www.frostwire.com/
+0
-2
data/links/e929578e-b93f-42d5-a1c8-b3287979a7cd less more
1 id: e929578e-b93f-42d5-a1c8-b3287979a7cd
2 url: http://www.noteloop.com/kit/fui/
+0
-2
data/links/e92e78dc-b819-4760-840f-cbc964071d7a less more
1 id: e92e78dc-b819-4760-840f-cbc964071d7a
2 url: http://en.wikibooks.org/wiki/Cookbook:Lobster_Thermidor
+0
-2
data/links/e94ada57-025a-4370-ac03-54f69310827c less more
1 id: e94ada57-025a-4370-ac03-54f69310827c
2 url: http://www.llbbl.com/data/RPG-motivational/target66.html
+0
-2
data/links/e951160b-fb79-457a-a502-996fee62b378 less more
1 id: e951160b-fb79-457a-a502-996fee62b378
2 url: http://patricklogan.blogspot.com/2008/06/toward-better-ui-programming-models.html
+0
-2
data/links/e95501e6-ec8e-4926-bb22-2db9b06665d8 less more
1 id: e95501e6-ec8e-4926-bb22-2db9b06665d8
2 url: http://baldwing.com/music/
+0
-2
data/links/e95d78d1-ecff-4314-9d2d-40b8b2c592d7 less more
1 id: e95d78d1-ecff-4314-9d2d-40b8b2c592d7
2 url: http://linguistics.berkeley.edu/~stilsen/ling115/ling115.html
+0
-2
data/links/e9a14a6f-e71e-4bf6-a77a-28cf25152474 less more
1 id: e9a14a6f-e71e-4bf6-a77a-28cf25152474
2 url: http://evanfarrer.blogspot.ca/2012/06/unit-testing-isnt-enough-you-need.html
+0
-2
data/links/e9cf154f-5c55-4c69-b178-739660e56dd7 less more
1 id: e9cf154f-5c55-4c69-b178-739660e56dd7
2 url: http://hilobrow.com/2010/09/07/de-condimentis-1/
+0
-2
data/links/ea19fbbb-3389-4d36-8cb5-77a1f6e3508a less more
1 id: ea19fbbb-3389-4d36-8cb5-77a1f6e3508a
2 url: http://www.ferretbrain.com/articles/article-313
+0
-2
data/links/ea5df805-352f-42e6-a568-528c14355ba2 less more
1 id: ea5df805-352f-42e6-a568-528c14355ba2
2 url: http://www.octopuspie.com/
+0
-2
data/links/ea5fc93c-7b1e-44e0-be33-2d6f6a0b5f10 less more
1 id: ea5fc93c-7b1e-44e0-be33-2d6f6a0b5f10
2 url: http://www.tor.com/
+0
-2
data/links/ea9c6e34-b0c3-43d8-8bec-9e5c61c52025 less more
1 id: ea9c6e34-b0c3-43d8-8bec-9e5c61c52025
2 url: lackadaisycats.tumblr.com/post/67909264429/notes-on-character-designtgma
+0
-2
data/links/eacf0c81-cafd-49f0-8981-4cd4a553947b less more
1 id: eacf0c81-cafd-49f0-8981-4cd4a553947b
2 url: http://www.recipezaar.com/14886
+0
-2
data/links/eb0530c5-386a-42d5-bbd7-918b33a3111e less more
1 id: eb0530c5-386a-42d5-bbd7-918b33a3111e
2 url: https://kattyskitchen.wordpress.com/2011/10/09/makers-markmallow-treats-a-k-a-rice-whisky-treats/
+0
-2
data/links/eb1c7b1c-2da8-4c19-8181-ae7cbc5d1310 less more
1 id: eb1c7b1c-2da8-4c19-8181-ae7cbc5d1310
2 url: http://www.freewaremission.com/2008/08/51-essential-programs-for-a-freeware-only-PC/
+0
-2
data/links/eb1e721e-17ff-45c7-b55a-afff73834515 less more
1 id: eb1e721e-17ff-45c7-b55a-afff73834515
2 url: http://www.ectomo.com/wp-content/uploads/2008/06/s1kkgm.jpg
+0
-2
data/links/eb7dae0c-d225-4c7a-8ef0-34b99c5d2202 less more
1 id: eb7dae0c-d225-4c7a-8ef0-34b99c5d2202
2 url: http://www.theatlantic.com/past/docs/issues/96sep/kunstler/kunstler.htm
+0
-2
data/links/ebc996fa-37b0-4811-9582-d402b88e4c38 less more
1 id: ebc996fa-37b0-4811-9582-d402b88e4c38
2 url: http://exciting.io/2012/04/12/hello-printer/
+0
-2
data/links/ec063bd9-8999-4498-836e-fc487083f9b7 less more
1 id: ec063bd9-8999-4498-836e-fc487083f9b7
2 url: http://scottlocklin.wordpress.com/2010/08/24/nano-nonsense-25-years-of-charlatanry/
+0
-2
data/links/ec326adb-6e2c-4353-aaf6-db26816d90c4 less more
1 id: ec326adb-6e2c-4353-aaf6-db26816d90c4
2 url: http://www.realsimple.com/realsimple/package/0,21861,1626111-1636067-1,00.html
+0
-2
data/links/ec67b02b-7377-454d-8f21-323ffc306519 less more
1 id: ec67b02b-7377-454d-8f21-323ffc306519
2 url: http://www.newyorker.com/online/2008/05/19/080519on_onlineonly_remnick?currentPage=all
+0
-2
data/links/ec68c7e4-8e8d-4681-afa8-d1166de5eaf6 less more
1 id: ec68c7e4-8e8d-4681-afa8-d1166de5eaf6
2 url: http://www.care2.com/greenliving/rose-water-how-to-make-your-own.html
+0
-2
data/links/ec773a4f-b977-45d4-b159-0633a972ce14 less more
1 id: ec773a4f-b977-45d4-b159-0633a972ce14
2 url: http://www.instructables.com/id/ULTRA-VIOLET-NIGHTLIGHT/?ALLSTEPS
+0
-2
data/links/ecfcab3b-c4cf-4f27-811d-457f64d692ef less more
1 id: ecfcab3b-c4cf-4f27-811d-457f64d692ef
2 url: http://youtube.com/watch?v=gRHfd9Yto0A
+0
-2
data/links/ed1e7806-7500-4440-ae5a-152dd0f303fe less more
1 id: ed1e7806-7500-4440-ae5a-152dd0f303fe
2 url: http://altonbrown.com/2012/11/alton-browns-thanksgiving-recipe-primer/
+0
-2
data/links/ed2e8411-ea3c-40a5-9c07-c25f18d52c02 less more
1 id: ed2e8411-ea3c-40a5-9c07-c25f18d52c02
2 url: http://lgames.sourceforge.net/about.php
+0
-2
data/links/ed30e010-16e2-4d34-8d44-eb5771cbe5bf less more
1 id: ed30e010-16e2-4d34-8d44-eb5771cbe5bf
2 url: http://yuni.deviantart.com/art/Coloring-technique-61468467
+0
-2
data/links/ed648a89-ad64-40e8-9600-1de53d4eee64 less more
1 id: ed648a89-ad64-40e8-9600-1de53d4eee64
2 url: http://home.austin.rr.com/lperson/slip.html
+0
-2
data/links/ed9ad76b-902a-4fb1-adb5-1cde45d1863a less more
1 id: ed9ad76b-902a-4fb1-adb5-1cde45d1863a
2 url: http://www.jwz.org/gruntle/music2010.html
+0
-2
data/links/ed9b123c-3fe0-4dec-8d0b-ef5170028ce6 less more
1 id: ed9b123c-3fe0-4dec-8d0b-ef5170028ce6
2 url: http://www.cs.brown.edu/people/acb/codebubbles_site.htm
+0
-2
data/links/edfddbe4-c2ab-4288-b1cd-c444a1fa1589 less more
1 id: edfddbe4-c2ab-4288-b1cd-c444a1fa1589
2 url: http://www.dicebox.net/chap1/preramble_1.htm
+0
-2
data/links/ee0beb83-b4e9-4caf-8ed3-9b0d6a130dd7 less more
1 id: ee0beb83-b4e9-4caf-8ed3-9b0d6a130dd7
2 url: http://www.sile-typesetter.org/what-is/index.html
+0
-2
data/links/ee92f6d0-ea73-4000-97e2-82e506b37de7 less more
1 id: ee92f6d0-ea73-4000-97e2-82e506b37de7
2 url: http://teachpress.environmentalinformatics-marburg.de/2013/07/creating-publication-quality-graphs-in-r-7/
+0
-2
data/links/eecb302e-d6e5-4c83-a5e9-4777b229154b less more
1 id: eecb302e-d6e5-4c83-a5e9-4777b229154b
2 url: http://www.staff.science.uu.nl/~hooft101/theorist.html
+0
-2
data/links/eeec73e6-a77a-47b9-9ab9-ab7e94aee8b3 less more
1 id: eeec73e6-a77a-47b9-9ab9-ab7e94aee8b3
2 url: http://www.gutenberg.org/ebooks/15667
+0
-2
data/links/ef19446c-5566-45e4-8b06-0830030d6a4a less more
1 id: ef19446c-5566-45e4-8b06-0830030d6a4a
2 url: http://daniel-diaz.github.io/projects/haskintex/
+0
-2
data/links/ef3a6b89-9274-4d77-bee5-6a66483a3d8d less more
1 id: ef3a6b89-9274-4d77-bee5-6a66483a3d8d
2 url: http://code.google.com/p/subdownloader/
+0
-2
data/links/ef3ae668-c063-4c9d-a8fd-b2f10f54361f less more
1 id: ef3ae668-c063-4c9d-a8fd-b2f10f54361f
2 url: http://gittup.org/tup/
+0
-2
data/links/ef3cb988-5755-4f08-a2b1-2c30b5b292d9 less more
1 id: ef3cb988-5755-4f08-a2b1-2c30b5b292d9
2 url: http://www.martinmajoor.com/6_my_philosophy.html
+0
-2
data/links/ef578e51-1afc-4479-9d20-e4de846d2ae8 less more
1 id: ef578e51-1afc-4479-9d20-e4de846d2ae8
2 url: http://www.machall.com/view.php?date=2004-03-26
+0
-2
data/links/ef69461d-9bff-4865-aef7-5ac1bfc5dee4 less more
1 id: ef69461d-9bff-4865-aef7-5ac1bfc5dee4
2 url: http://www.themystica.com/mystica/pages/magic.htm
+0
-2
data/links/ef92ef35-b90c-4f5e-80b6-0cf710b30f8c less more
1 id: ef92ef35-b90c-4f5e-80b6-0cf710b30f8c
2 url: http://wodor.org/anaglyph/
+0
-2
data/links/ef9de2e3-3884-4492-b6bc-49373404b389 less more
1 id: ef9de2e3-3884-4492-b6bc-49373404b389
2 url: http://www.logarithmic.net/ghost.xhtml
+0
-2
data/links/efa0d1e6-ea0f-41ce-8193-92555946c569 less more
1 id: efa0d1e6-ea0f-41ce-8193-92555946c569
2 url: http://www.kuro5hin.org/story/2008/8/22/4383/32666
+0
-2
data/links/efc39e99-28ab-4850-84b9-11ec3c29d35e less more
1 id: efc39e99-28ab-4850-84b9-11ec3c29d35e
2 url: http://mathteacherorstudent.blogspot.com/2010/09/habits-of-mind.html
+0
-2
data/links/efc9690a-1260-43c7-995e-b928c96c0587 less more
1 id: efc9690a-1260-43c7-995e-b928c96c0587
2 url: http://plato.stanford.edu/entries/computational-mind/#DoeSynExpSem
+0
-2
data/links/efcf31fe-5774-47b6-aa08-6c9ff656faed less more
1 id: efcf31fe-5774-47b6-aa08-6c9ff656faed
2 url: http://ink.dontfeedthewriter.com/quotes/quo-people.html
+0
-2
data/links/eff933f6-55f2-4dbb-bbbe-82aa87e97e4b less more
1 id: eff933f6-55f2-4dbb-bbbe-82aa87e97e4b
2 url: http://bldgblog.blogspot.com/
+0
-2
data/links/f0c77514-1bfa-4e74-b102-8f92de270a2e less more
1 id: f0c77514-1bfa-4e74-b102-8f92de270a2e
2 url: http://www.funding4cesar.com/desktopmedia/
+0
-2
data/links/f0f0b0fd-98a5-453e-8854-e96bf9813404 less more
1 id: f0f0b0fd-98a5-453e-8854-e96bf9813404
2 url: http://stevelosh.com/blog/2012/10/the-homely-mutt/
+0
-2
data/links/f0f41f3a-78e1-415c-88e4-b81c121f6cc2 less more
1 id: f0f41f3a-78e1-415c-88e4-b81c121f6cc2
2 url: http://www.sqlite.org/index.html
+0
-2
data/links/f0f6f359-47d5-4bf0-b7b1-8e2f52a6b0b2 less more
1 id: f0f6f359-47d5-4bf0-b7b1-8e2f52a6b0b2
2 url: http://www.flickr.com/photos/motionid/1482909767/in/set-72157594486719792/
+0
-2
data/links/f118727e-aa5e-425f-8ec3-54e3a78468cf less more
1 id: f118727e-aa5e-425f-8ec3-54e3a78468cf
2 url: http://www.bobhobbs.com/files/kr_lovecraft.html
+0
-2
data/links/f118a525-821e-4c75-9bcd-93243d330b17 less more
1 id: f118a525-821e-4c75-9bcd-93243d330b17
2 url: http://en.wikipedia.org/wiki/Ableton_live
+0
-2
data/links/f11c30a4-2c77-4169-b451-5ec6ab2d7da5 less more
1 id: f11c30a4-2c77-4169-b451-5ec6ab2d7da5
2 url: http://faust.grame.fr/
+0
-2
data/links/f1303102-7957-4d70-9a37-1bd172ca65dc less more
1 id: f1303102-7957-4d70-9a37-1bd172ca65dc
2 url: http://thedailywtf.com/Articles/Do-not-run-this-script,-ever!.aspx
+0
-2
data/links/f1cf968f-3bf0-411a-8345-a9f341f856de less more
1 id: f1cf968f-3bf0-411a-8345-a9f341f856de
2 url: http://www.youtube.com/watch?v=pANmsm3CwWM
+0
-2
data/links/f1d2a2cd-1750-4fa4-9c5b-bc21401220ba less more
1 id: f1d2a2cd-1750-4fa4-9c5b-bc21401220ba
2 url: http://www.ultimate.com/phil/lil/
+0
-2
data/links/f1dd76eb-ade0-4898-bdd1-c82ac4ad92dc less more
1 id: f1dd76eb-ade0-4898-bdd1-c82ac4ad92dc
2 url: http://www.youtube.com/watch?v=PmZyB_ghpa0
+0
-2
data/links/f1f9817c-297a-4cd4-be7a-0746321c63ef less more
1 id: f1f9817c-297a-4cd4-be7a-0746321c63ef
2 url: http://www.google.com/search?&amp;q=-inurl%3A(htm%7Chtml%7Cphp)%20intitle%3A%22index%20of%22%20%2B%22last%20modified%22%20%2B%22parent%20directory%22%20%2Bdescription%20%2Bsize%20%2B(wma%7Cmp3)%20%22Nirvana%22
+0
-2
data/links/f23df63c-558c-4b3a-9546-20e8b73996d3 less more
1 id: f23df63c-558c-4b3a-9546-20e8b73996d3
2 url: https://sites.google.com/site/winitzki/tutorial-on-join-calculus-and-its-implementation-in-ocaml-jocaml
+0
-2
data/links/f258058b-2ded-41c4-9a22-cc75dca73a5d less more
1 id: f258058b-2ded-41c4-9a22-cc75dca73a5d
2 url: http://comonad.com/reader/2009/recursion-schemes/
+0
-2
data/links/f267cc52-80f2-4cdf-bb5f-2347b3e63008 less more
1 id: f267cc52-80f2-4cdf-bb5f-2347b3e63008
2 url: http://pygtk.org/pygtk2tutorial/index.html
+0
-2
data/links/f2ec6b63-7891-4bd7-bf50-8f90ce8383ae less more
1 id: f2ec6b63-7891-4bd7-bf50-8f90ce8383ae
2 url: http://git-annex.branchable.com/walkthrough/
+0
-2
data/links/f35bb4a3-765e-4210-8f33-97eb62e19fbd less more
1 id: f35bb4a3-765e-4210-8f33-97eb62e19fbd
2 url: http://imgur.com/a/5r5aD?gallery
+0
-2
data/links/f3601364-0f96-417a-bc3d-8000b221445e less more
1 id: f3601364-0f96-417a-bc3d-8000b221445e
2 url: http://github.com/djspiewak/gll-combinators
+0
-2
data/links/f36e3ab6-d9eb-4f14-b602-a2fe4cb22d96 less more
1 id: f36e3ab6-d9eb-4f14-b602-a2fe4cb22d96
2 url: http://michael.peopleofhonoronly.com/vim/
+0
-2
data/links/f37bd7e8-533c-4088-95f0-3cd9d3afcd93 less more
1 id: f37bd7e8-533c-4088-95f0-3cd9d3afcd93
2 url: http://glyphic.s3.amazonaws.com/ozone/mark/periodic/Periodic%20Table%20of%20the%20Operators%20A4%20300dpi.jpg
+0
-2
data/links/f37beefb-cecb-4918-b617-e850b96326d3 less more
1 id: f37beefb-cecb-4918-b617-e850b96326d3
2 url: http://www.smashingmagazine.com/2009/04/27/the-mystery-of-css-sprites-techniques-tools-and-tutorials/
+0
-2
data/links/f3c65756-2c54-44dc-869e-d3583200773d less more
1 id: f3c65756-2c54-44dc-869e-d3583200773d
2 url: http://mitpress.mit.edu/sicp/full-text/book/book.html
+0
-2
data/links/f419343a-7a0a-4a1b-8c2e-feaee91e885d less more
1 id: f419343a-7a0a-4a1b-8c2e-feaee91e885d
2 url: http://mirrors.rit.edu/CTAN/info/math/voss/mathmode/Mathmode.pdf
+0
-2
data/links/f4413e34-4a34-421f-9d6b-d39f8b7ab649 less more
1 id: f4413e34-4a34-421f-9d6b-d39f8b7ab649
2 url: http://www.zephoria.org/thoughts/archives/2010/05/14/facebook-and-radical-transparency-a-rant.html
+0
-2
data/links/f4e7c7e3-c951-4ac2-a195-5ea3b6945edf less more
1 id: f4e7c7e3-c951-4ac2-a195-5ea3b6945edf
2 url: https://github.com/dmbarbour/Sirea#what-is-reactive-demand-programming
+0
-2
data/links/f512077b-3b34-472e-b81e-26da0989bc4c less more
1 id: f512077b-3b34-472e-b81e-26da0989bc4c
2 url: http://hbpms.blogspot.com/
+0
-2
data/links/f532ab7f-3a16-4e00-8269-d9a76c69e328 less more
1 id: f532ab7f-3a16-4e00-8269-d9a76c69e328
2 url: http://www.skeptictank.org/hs/vanish.htm
+0
-2
data/links/f5337bf5-109c-46de-b18f-fb5c0774661c less more
1 id: f5337bf5-109c-46de-b18f-fb5c0774661c
2 url: http://code.google.com/p/chibi-scheme/
+0
-2
data/links/f56ff09d-bf5c-475a-b6df-797cff533b05 less more
1 id: f56ff09d-bf5c-475a-b6df-797cff533b05
2 url: http://www.wikihow.com/Use-a-Paper-Shredder-as-a-Pasta-Machine
+0
-2
data/links/f59fdbdd-2daf-4827-ad42-1dcf59ae7fe1 less more
1 id: f59fdbdd-2daf-4827-ad42-1dcf59ae7fe1
2 url: http://www.waynebarlowe.com/
+0
-2
data/links/f5afbb60-d205-461b-aa13-52139eb1d072 less more
1 id: f5afbb60-d205-461b-aa13-52139eb1d072
2 url: http://www.instructables.com/id/Conductive-Glue-And-Conductive-Thread-Make-an-LED/?ALLSTEPS
+0
-2
data/links/f5bdf565-bfc5-4f49-925f-f3f281d9f5cd less more
1 id: f5bdf565-bfc5-4f49-925f-f3f281d9f5cd
2 url: http://stuffwhitepeoplelike.wordpress.com/
+0
-2
data/links/f5e56398-4a9b-4131-9444-433b2c97a62b less more
1 id: f5e56398-4a9b-4131-9444-433b2c97a62b
2 url: https://github.com/dariusk/corpora
+0
-2
data/links/f5e8605e-0615-434f-bea8-c2df740fecc9 less more
1 id: f5e8605e-0615-434f-bea8-c2df740fecc9
2 url: http://efunda.com/
+0
-2
data/links/f5f11210-e106-4697-9add-806debb691c4 less more
1 id: f5f11210-e106-4697-9add-806debb691c4
2 url: http://www.typogabor.com/manuale-hermann-zapf/
+0
-2
data/links/f6043c98-7dce-49ad-a379-5965940373ee less more
1 id: f6043c98-7dce-49ad-a379-5965940373ee
2 url: http://www.electricstate.com/ipodbartender/
+0
-2
data/links/f613de78-bbec-4797-9460-45cdd5c9fe8d less more
1 id: f613de78-bbec-4797-9460-45cdd5c9fe8d
2 url: http://www.fredvanlente.com/cthulhutract/pages/index.html
+0
-2
data/links/f653cf6c-b37e-4b98-979f-16ff2ffe13b6 less more
1 id: f653cf6c-b37e-4b98-979f-16ff2ffe13b6
2 url: http://opencv.willowgarage.com/documentation/python/index.html
+0
-2
data/links/f65c2610-9858-4a16-ba4b-c1d3822dc714 less more
1 id: f65c2610-9858-4a16-ba4b-c1d3822dc714
2 url: http://www.sluggy.com/images/comics/020412a.gif
+0
-2
data/links/f6658d54-2489-46eb-8851-62f4c5a93f34 less more
1 id: f6658d54-2489-46eb-8851-62f4c5a93f34
2 url: http://ninjapants.org/files/
+0
-2
data/links/f6b28f13-89ea-4362-92dc-809a3d962729 less more
1 id: f6b28f13-89ea-4362-92dc-809a3d962729
2 url: http://www.thehikeguy.com/2011/11/10/pct-moleskines/
+0
-2
data/links/f6c1523b-1f77-4542-a51e-9aedec643e8f less more
1 id: f6c1523b-1f77-4542-a51e-9aedec643e8f
2 url: http://www.starshipmodeler.com/basics/jc_molds.htm
+0
-2
data/links/f6c59980-8e1e-4853-81f8-2117e8a5c8de less more
1 id: f6c59980-8e1e-4853-81f8-2117e8a5c8de
2 url: http://www.youtube.com/watch?v=JGLv3IEL0VI
+0
-2
data/links/f6dfe0ad-0055-4f72-9a14-e5072fa66f79 less more
1 id: f6dfe0ad-0055-4f72-9a14-e5072fa66f79
2 url: http://www.amazon.com/Elements-Typographic-Style-Robert-Bringhurst/dp/0881792063?ie=UTF8&amp;s=books&amp;qid=1189485975&amp;sr=8-1&amp;tag=japanagocom-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325
+0
-2
data/links/f6e4ac3f-e180-4f11-ba84-7aa2bad128a6 less more
1 id: f6e4ac3f-e180-4f11-ba84-7aa2bad128a6
2 url: http://texasbestgrok.mu.nu/archives/237603.php
+0
-2
data/links/f70b73bd-0e5a-4e87-8640-617994704792 less more
1 id: f70b73bd-0e5a-4e87-8640-617994704792
2 url: http://helpyoudraw.tumblr.com/post/54428876918/various-male-jackets-suits-shirts-transparent
+0
-2
data/links/f70c9d60-125e-4aa0-a90c-a96d075a3ae2 less more
1 id: f70c9d60-125e-4aa0-a90c-a96d075a3ae2
2 url: http://www.theatlantic.com/international/archive/2011/12/vaclav-havels-critique-of-the-west/250277/
+0
-2
data/links/f754a34e-5b7f-4fef-8d7c-ce6fc03840d2 less more
1 id: f754a34e-5b7f-4fef-8d7c-ce6fc03840d2
2 url: http://lifehacker.com/5042245/control-your-computer-with-shortcuts-to-common-windows-tasks
+0
-2
data/links/f798080d-9b28-4525-8598-ecc58b2ea355 less more
1 id: f798080d-9b28-4525-8598-ecc58b2ea355
2 url: http://www.daviddarling.info/encyclopedia/S/scientific_mysteries.html
+0
-2
data/links/f7b9bf9a-1bed-4a99-afa6-3c9e5ea6eebd less more
1 id: f7b9bf9a-1bed-4a99-afa6-3c9e5ea6eebd
2 url: http://uk.youtube.com/watch?v=Eg-ti_Nm-f0
+0
-2
data/links/f7e075b5-ee46-4f82-ae3b-721da6302ba8 less more
1 id: f7e075b5-ee46-4f82-ae3b-721da6302ba8
2 url: http://christophermeiklejohn.com/coq/2013/06/11/distributed-data-structures.html
+0
-2
data/links/f822e046-cd44-4407-a724-94ec14b14971 less more
1 id: f822e046-cd44-4407-a724-94ec14b14971
2 url: http://www.geocities.com/nconner23/bwcards.html
+0
-2
data/links/f8305a27-567e-4f42-93eb-2c8171daebe0 less more
1 id: f8305a27-567e-4f42-93eb-2c8171daebe0
2 url: http://www.tom.sfc.keio.ac.jp/~hagino/codat.pdf
+0
-2
data/links/f8b2ed84-bcd8-43bf-9fd4-1fa0f8f59cce less more
1 id: f8b2ed84-bcd8-43bf-9fd4-1fa0f8f59cce
2 url: http://www.nevblog.com/homeless-experiment/
+0
-2
data/links/f90bec9b-cbf8-4c32-8784-f555f89529a9 less more
1 id: f90bec9b-cbf8-4c32-8784-f555f89529a9
2 url: http://www.sinfest.net/archive_page.php?comicID=2731
+0
-2
data/links/f940fbdb-745f-49c9-bef7-4ed28c9fc8d8 less more
1 id: f940fbdb-745f-49c9-bef7-4ed28c9fc8d8
2 url: http://en.wikipedia.org/wiki/Vesnin_brothers
+0
-2
data/links/f96e920a-2f0c-41fb-9b17-2fc957115f8a less more
1 id: f96e920a-2f0c-41fb-9b17-2fc957115f8a
2 url: http://bellarmine.lmu.edu/fyi/scriptformat.html
+0
-2
data/links/f972dcd6-3eb6-429e-9a04-84b705b24d49 less more
1 id: f972dcd6-3eb6-429e-9a04-84b705b24d49
2 url: http://www.evilmadscientist.com/2009/ice-cream-gyoza/
+0
-2
data/links/f978e37f-f437-48ca-9209-b0ecb4e965dd less more
1 id: f978e37f-f437-48ca-9209-b0ecb4e965dd
2 url: http://www.goodhousekeeping.com/food/entertaining/frozen-drink-recipes
+0
-2
data/links/f99f56c4-d145-4946-89f9-79752d97255d less more
1 id: f99f56c4-d145-4946-89f9-79752d97255d
2 url: http://www.seriouseats.com/2013/07/how-to-make-mexican-street-corn-elotes.html
+0
-2
data/links/f9bd0c25-731a-446c-ae64-9ce2730304da less more
1 id: f9bd0c25-731a-446c-ae64-9ce2730304da
2 url: http://kottke.org/12/06/the-bibles-book-of-revelation-explained
+0
-2
data/links/f9c01d74-abfc-4f15-bc94-3193e653e899 less more
1 id: f9c01d74-abfc-4f15-bc94-3193e653e899
2 url: http://www.cooksrecipes.com/bread/beer-bread-recipe.html
+0
-2
data/links/fa28af2e-ab37-4078-91d5-417ad79af959 less more
1 id: fa28af2e-ab37-4078-91d5-417ad79af959
2 url: http://people.gnome.org/~federico/docs/2008-GUADEC/html/index.html
+0
-2
data/links/fa997178-a4c1-4af8-9a26-7b083d3c904e less more
1 id: fa997178-a4c1-4af8-9a26-7b083d3c904e
2 url: http://solstice.ischool.utexas.edu/tmwi/index.php/Aldous_Huxley
+0
-2
data/links/fade1e78-5dfe-4fb5-80db-67b21acb1d52 less more
1 id: fade1e78-5dfe-4fb5-80db-67b21acb1d52
2 url: http://roguelikedeveloper.blogspot.ca/
+0
-2
data/links/faefc4dc-fd82-427f-8989-ae8b95e9552f less more
1 id: faefc4dc-fd82-427f-8989-ae8b95e9552f
2 url: http://www.flickr.com/photos/birdinthehand/2069711106/
+0
-2
data/links/fafae241-417d-41e5-a568-5e0519d07ad9 less more
1 id: fafae241-417d-41e5-a568-5e0519d07ad9
2 url: http://www.reddit.com/r/rpg/comments/vw4ln/my_collection_of_useful_links_mostly_for_gms_and/
+0
-2
data/links/fb3b2696-0d61-4f66-bb96-1c473621d4bd less more
1 id: fb3b2696-0d61-4f66-bb96-1c473621d4bd
2 url: http://www.spoonyexperiment.com/games/Thing/
+0
-2
data/links/fbd220a8-8c00-4ad4-9c7c-36bdd34ce5b8 less more
1 id: fbd220a8-8c00-4ad4-9c7c-36bdd34ce5b8
2 url: http://www.jeffreymorgenthaler.com/2014/how-to-build-your-own-carbonation-rig/
+0
-2
data/links/fbdb9f9e-fb32-4297-97e6-8f9b60d0ab6b less more
1 id: fbdb9f9e-fb32-4297-97e6-8f9b60d0ab6b
2 url: http://www.seriouseats.com/2013/06/the-food-lab-7-old-wives-tales-about-cooking-steak.html
+0
-2
data/links/fbe6a131-e8b8-4a0b-8878-8764c9a136b2 less more
1 id: fbe6a131-e8b8-4a0b-8878-8764c9a136b2
2 url: http://www.firthworks.com/roger/cloak/
+0
-2
data/links/fbf083b4-2df3-481e-b25a-58a17c6af5fa less more
1 id: fbf083b4-2df3-481e-b25a-58a17c6af5fa
2 url: http://ebookstore.sony.com/download/
+0
-2
data/links/fc5ef46e-115d-4492-8cc8-440fe485814a less more
1 id: fc5ef46e-115d-4492-8cc8-440fe485814a
2 url: http://img45.imageshack.us/img45/4259/buildingssheet7dv.png
+0
-2
data/links/fc83d545-5588-4ebc-808d-b80a1fd9f6e2 less more
1 id: fc83d545-5588-4ebc-808d-b80a1fd9f6e2
2 url: http://www.youtube.com/watch?v=vrdGQo6lSSw
+0
-2
data/links/fcb02e6e-58e4-4064-8e07-e81ab2cdd938 less more
1 id: fcb02e6e-58e4-4064-8e07-e81ab2cdd938
2 url: http://www.ccelian.com/concepca.html
+0
-2
data/links/fcb7698e-89af-4d59-a201-5dfd374abda2 less more
1 id: fcb7698e-89af-4d59-a201-5dfd374abda2
2 url: http://www.fastcocreate.com/1679472/martin-scorseses-film-school-the-85-films-you-need-to-see-to-know-anything-about-film
+0
-2
data/links/fcbb3926-8bce-42b9-ad55-2b94afdbb1d6 less more
1 id: fcbb3926-8bce-42b9-ad55-2b94afdbb1d6
2 url: http://lifehacker.com/5118066/everything-you-need-to-know-how-to-do-in-windows
+0
-2
data/links/fcc3a78d-3848-4c56-9459-18101a928d64 less more
1 id: fcc3a78d-3848-4c56-9459-18101a928d64
2 url: http://diybio.org/
+0
-2
data/links/fd3b32bd-4f78-4ca6-994f-ced843ba7601 less more
1 id: fd3b32bd-4f78-4ca6-994f-ced843ba7601
2 url: http://www.kukuburi.com/2007/08/09/one/
+0
-2
data/links/fd559932-39a3-466c-afe6-0285ee52e7f2 less more
1 id: fd559932-39a3-466c-afe6-0285ee52e7f2
2 url: http://www.q1.fcen.uba.ar/materias/iqi/joygus/tvgames.html
+0
-2
data/links/fd7062f1-bd99-478f-b77d-36d9ec7e8010 less more
1 id: fd7062f1-bd99-478f-b77d-36d9ec7e8010
2 url: http://www.icoeye.com/
+0
-2
data/links/fdea3aa6-8bb5-498d-bb48-faa431ed72ce less more
1 id: fdea3aa6-8bb5-498d-bb48-faa431ed72ce
2 url: http://www.theatlantic.com/past/docs/issues/96sep/kunstler/kunstler.htm
+0
-2
data/links/fe04d389-7a89-4d7e-bec1-25da189687e8 less more
1 id: fe04d389-7a89-4d7e-bec1-25da189687e8
2 url: http://www.darkhorse.com/zones/wotw/wotw_popup.php?p=
+0
-2
data/links/fe5b76a6-4850-4598-9905-f35e666a3205 less more
1 id: fe5b76a6-4850-4598-9905-f35e666a3205
2 url: http://www.npr.org/templates/story/story.php?storyId=16631663
+0
-2
data/links/fe6f6703-1328-49e3-ba2f-a39b37763d1d less more
1 id: fe6f6703-1328-49e3-ba2f-a39b37763d1d
2 url: http://www.econlib.org/LIBRARY/Mackay/macEx13.html
+0
-2
data/links/fe7c1437-4b20-40eb-acc5-1bd15501cb60 less more
1 id: fe7c1437-4b20-40eb-acc5-1bd15501cb60
2 url: http://blog.racket-lang.org/2011/03/languages-as-libraries-pldi-2011.html
+0
-2
data/links/fe7fd6fc-e252-4ebc-a3f7-a0b533e254db less more
1 id: fe7fd6fc-e252-4ebc-a3f7-a0b533e254db
2 url: http://www.musique.umontreal.ca/personnel/belkin/M.ID/M.ID.html
+0
-2
data/links/fe9c49e6-f50e-42e0-b17f-19025b8fb1ae less more
1 id: fe9c49e6-f50e-42e0-b17f-19025b8fb1ae
2 url: http://doryen.eptalys.net/libtcod/
+0
-2
data/links/feb1733c-6dea-40e6-9ede-f749e10e8244 less more
1 id: feb1733c-6dea-40e6-9ede-f749e10e8244
2 url: http://info-beamer.org/
+0
-2
data/links/ff88f93f-a01a-4681-bf01-56b531f6e54e less more
1 id: ff88f93f-a01a-4681-bf01-56b531f6e54e
2 url: http://io9.com/386904/refurbished-70s-mobile-home-for-the-road-trip-of-the-future
+0
-2
data/links/ff8b6eb3-96e0-457b-a1f9-369735ff9814 less more
1 id: ff8b6eb3-96e0-457b-a1f9-369735ff9814
2 url: http://tychoish.com/rhizome/git-mail/
+0
-2
data/links/ffdfbdce-89fe-4aae-8382-e358544d0f21 less more
1 id: ffdfbdce-89fe-4aae-8382-e358544d0f21
2 url: http://www.hackaday.com/2008/06/12/how-to-make-an-rgb-combination-door-lock-part-1/
+0
-2
data/links/fff00a7d-3c23-4c1c-a3a1-60b35060ea85 less more
1 id: fff00a7d-3c23-4c1c-a3a1-60b35060ea85
2 url: http://www.dclxvi.org/chunk/
+0
-3
data/links/fff72ac4-7179-41da-a419-ee657d2fd5cd less more
1 id: fff72ac4-7179-41da-a419-ee657d2fd5cd
2 url: http://gamemusictheory.tumblr.com/
3 name: Game Music Theory
+0
-2
data/links/ffff5798-eecf-4c95-b0d6-f7822cebd77f less more
1 id: ffff5798-eecf-4c95-b0d6-f7822cebd77f
2 url: http://www.icce.rug.nl/~soundscapes/VOLUME03/Words_and_chords.shtml
+0
-3
data/quips/0056aab7-915e-4892-8c75-74ebcc0dac63 less more
1 content: '"i will say this. when I finally ascend to the final plane of consciousness
2 .nerds will get extremely yelled at"'
3 id: 0056aab7-915e-4892-8c75-74ebcc0dac63
+0
-2
data/quips/00914ab5-bdf3-48d4-87ab-f7f8dc5af060 less more
1 content: A belief is just a thought you keep having.
2 id: 00914ab5-bdf3-48d4-87ab-f7f8dc5af060
+0
-5
data/quips/010d9a45-6f2b-4966-88fc-03738920d417 less more
1 content: 'under communism there are no sugar mamas or daddies, but everyone is the
2 sugar comrade of everyone else
3
4 '
5 id: 010d9a45-6f2b-4966-88fc-03738920d417
+0
-3
data/quips/012c59da-38c6-4c3a-8069-3ea2c29eac78 less more
1 content: Is it that time again? Wasn't it already then? So does it have to be the
2 time it was again?
3 id: 012c59da-38c6-4c3a-8069-3ea2c29eac78
+0
-3
data/quips/0158c107-bacb-4ca0-8259-86636f5ea216 less more
1 content: These are stolen moments and you're a criminal and I'm a criminal and here
2 we all are. Now.
3 id: 0158c107-bacb-4ca0-8259-86636f5ea216
+0
-2
data/quips/01c4f5a5-6fcf-42d0-b3be-bb9ea021d046 less more
1 content: we shall celebrate with such fierce dancing the death of your institutions
2 id: 01c4f5a5-6fcf-42d0-b3be-bb9ea021d046
+0
-2
data/quips/025a63b1-2248-4f58-ae28-636aaa5a02a7 less more
1 content: someone turn the dial / the radio station in my head / it's blaring
2 id: 025a63b1-2248-4f58-ae28-636aaa5a02a7
+0
-2
data/quips/02f258c9-ee42-4c48-99d8-9e8003ec2ef6 less more
1 content: '"It was like smuggling organs past a baby."'
2 id: 02f258c9-ee42-4c48-99d8-9e8003ec2ef6
+0
-2
data/quips/0353c110-4a8c-4915-aec0-243d2a3ae3bd less more
1 content: Don't look at fat people! They know what you're up to.
2 id: 0353c110-4a8c-4915-aec0-243d2a3ae3bd
+0
-2
data/quips/039ca581-2651-4e8c-a5cd-048924b2f5da less more
1 content: In the U.S., you have to be a deviant or die of boredom.
2 id: 039ca581-2651-4e8c-a5cd-048924b2f5da
+0
-4
data/quips/0524656d-dee4-42c9-8d37-9b46ce9e2409 less more
1 content: 'the past is a grotesque animal
2
3 '
4 id: 0524656d-dee4-42c9-8d37-9b46ce9e2409
+0
-2
data/quips/05f91e4d-e605-4e37-9274-2c1c8fa56e73 less more
1 content: My god is bigger.
2 id: 05f91e4d-e605-4e37-9274-2c1c8fa56e73
+0
-2
data/quips/06bc8939-cd79-4625-8f53-2e2acac804cf less more
1 content: Trust me. I'm a doktor.
2 id: 06bc8939-cd79-4625-8f53-2e2acac804cf
+0
-2
data/quips/06ee1fc6-d440-47f0-9526-230046aaec73 less more
1 content: We gladly feast on those who would subdue us.
2 id: 06ee1fc6-d440-47f0-9526-230046aaec73
+0
-3
data/quips/070ed4b6-a900-4a62-9599-1434d522df0b less more
1 content: it's a cold ass fashion when she stole my passion / it's an everlasting,
2 it's a ghettoblasting
3 id: 070ed4b6-a900-4a62-9599-1434d522df0b
+0
-2
data/quips/07801c8f-72b7-4afc-abee-61c1e2914fb7 less more
1 content: Don't listen to the graph paper in your head!
2 id: 07801c8f-72b7-4afc-abee-61c1e2914fb7
+0
-5
data/quips/08a922d6-5c1b-45e8-a238-5f6f9530584b less more
1 content: 'Outside of a dog, a book is man''s best friend. Inside of a dog, knowledge
2 manifests itself in radiant dreams that shimmer like the wild sun.
3
4 '
5 id: 08a922d6-5c1b-45e8-a238-5f6f9530584b
+0
-2
data/quips/08ed399d-73c0-4296-aa0b-42c7a6320dfc less more
1 content: Oh my god. They explode! My life has taken on new meaning.
2 id: 08ed399d-73c0-4296-aa0b-42c7a6320dfc
+0
-2
data/quips/09427813-fcad-47a6-a37b-4d3969498248 less more
1 content: You shall know the truth, and the truth shall make you odd.
2 id: 09427813-fcad-47a6-a37b-4d3969498248
+0
-2
data/quips/09cbc5d3-820f-4ab5-b795-4e79409fd4a8 less more
1 content: You're like a worst-thing-ever saying machine.
2 id: 09cbc5d3-820f-4ab5-b795-4e79409fd4a8
+0
-2
data/quips/09e50bd2-b19b-4317-8e73-3449648a7ee9 less more
1 content: if at first you don't succeed try a larger thermonuclear reaction
2 id: 09e50bd2-b19b-4317-8e73-3449648a7ee9
+0
-2
data/quips/0aa729c6-ddf1-42c1-98ef-69777775429c less more
1 content: '"The first rule of Wittgenstein Club is thereof one must be silent."'
2 id: 0aa729c6-ddf1-42c1-98ef-69777775429c
+0
-3
data/quips/0c7467af-e250-4ee0-a7ce-ad2289a8a8b7 less more
1 content: By all the entropy in the universe! Confound the programming of that useless
2 biological matter!
3 id: 0c7467af-e250-4ee0-a7ce-ad2289a8a8b7
+0
-2
data/quips/0ed7a5c9-1c90-4ee1-8d4f-f4c3750509c4 less more
1 content: "O mito \xE9 o nada que \xE9 tudo."
2 id: 0ed7a5c9-1c90-4ee1-8d4f-f4c3750509c4
+0
-2
data/quips/0ef10d3d-0bb9-48dd-972d-e987a90506a1 less more
1 content: WHAM WHAM WHAM WHAM WHAM HONK
2 id: 0ef10d3d-0bb9-48dd-972d-e987a90506a1
+0
-4
data/quips/0f95bc42-c28c-4a9e-aacd-65221e7534b1 less more
1 content: 'manic pixie dream tarantula
2
3 '
4 id: 0f95bc42-c28c-4a9e-aacd-65221e7534b1
+0
-2
data/quips/102151fa-1f6a-46c0-9fb8-8a4de954c8ff less more
1 content: Donald Sutherland and Nicolas Cage's Personal Pan Pizza Space Shuttle
2 id: 102151fa-1f6a-46c0-9fb8-8a4de954c8ff
+0
-2
data/quips/10c442eb-0a22-45b5-a023-1d13dfe9628d less more
1 content: to thine own self be wicked sexy
2 id: 10c442eb-0a22-45b5-a023-1d13dfe9628d
+0
-3
data/quips/11154afa-10b3-4427-a5db-20c983a77b0d less more
1 content: 'It''s common knowledge that whenever you get two or more CS grad students
2 together, the conversation will inevitably drift to the same topic: automatic weapons.'
3 id: 11154afa-10b3-4427-a5db-20c983a77b0d
+0
-5
data/quips/128c224c-5614-45ac-b308-eb1065e6056f less more
1 content: Mockery Science, Sadofuturistics, Megaphysics, Scatalography, Schizophreniatrics,
2 Morealism, Sarcastrophy, Cynisacreligion, Apocolyptionomy, ESPectorationalism, Hypno-Pediatrics,
3 Subliminalism, Satyriology, Disto-Utopianity, Sardonicology, Fascetiouism, Ridiculophagy,
4 and Miscellatheistic Theology.
5 id: 128c224c-5614-45ac-b308-eb1065e6056f
+0
-2
data/quips/15a02f2e-b139-49a0-aeb4-924a73dda860 less more
1 content: you figure that's just gotta be jelly 'cause jam just don't shake like that
2 id: 15a02f2e-b139-49a0-aeb4-924a73dda860
+0
-3
data/quips/18df3d65-c375-4993-bcaa-90f5fd2301a0 less more
1 content: You will find that every occultist uses some variety of extremely hardcore
2 toothpaste.
3 id: 18df3d65-c375-4993-bcaa-90f5fd2301a0
+0
-4
data/quips/18e6b4b1-1095-4b56-8f69-db862cd3c6e5 less more
1 content: 'I for one will try to deduct rum expenses under fuel costs.
2
3 '
4 id: 18e6b4b1-1095-4b56-8f69-db862cd3c6e5
+0
-3
data/quips/1978a2c2-798e-4971-8837-63cc86f98b79 less more
1 content: no one in the world ever gets what they want and that is beautiful / everybody
2 dies frustrated and sad and that is beautiful
3 id: 1978a2c2-798e-4971-8837-63cc86f98b79
+0
-2
data/quips/19b352d4-6a57-4e5a-a861-74ea7f14a818 less more
1 content: '''Tis an ill wind that blows no minds.'
2 id: 19b352d4-6a57-4e5a-a861-74ea7f14a818
+0
-3
data/quips/19dbcfb3-a32f-4ff8-a5e6-c33208053a79 less more
1 content: '"most cutting thing you can say is ''who''s this clown?'' because it implies
2 they''re a) a clown & b) not even one of the better-known clowns"'
3 id: 19dbcfb3-a32f-4ff8-a5e6-c33208053a79
+0
-3
data/quips/19e69a91-030f-4e9b-857c-bd276dc6bce6 less more
1 content: i have learned nothing from this and also unlearned a bunch of things as
2 well
3 id: 19e69a91-030f-4e9b-857c-bd276dc6bce6
+0
-3
data/quips/19ec1a13-8e59-4c3c-97a6-40babd39cc20 less more
1 content: A woman's best curve is her smile, unless, of course, she is equipped with
2 a properly-curved boomerang or machete for self-defense.
3 id: 19ec1a13-8e59-4c3c-97a6-40babd39cc20
+0
-2
data/quips/1c1875b0-7e1e-48df-b541-a04abd0af527 less more
1 content: Sometimes it's damned hard to tell the dancer from the dance.
2 id: 1c1875b0-7e1e-48df-b541-a04abd0af527
+0
-2
data/quips/1caa5da1-0c76-44f7-8403-04637ba815af less more
1 content: I believe ghosts are like dogs and just sort of do things arbitrarily.
2 id: 1caa5da1-0c76-44f7-8403-04637ba815af
+0
-2
data/quips/1e0e08f9-1b8b-435a-8806-fa6fb32774a6 less more
1 content: No one man should have all that flour.
2 id: 1e0e08f9-1b8b-435a-8806-fa6fb32774a6
+0
-4
data/quips/1f080956-551c-4757-99ed-1a059eb9c180 less more
1 content: 'Today in the news: the world is a horrible place and it will hurt your feelings.
2
3 '
4 id: 1f080956-551c-4757-99ed-1a059eb9c180
+0
-5
data/quips/1f479a0b-1cc8-4e18-9708-eaa868c40799 less more
1 content: 'The last thing I want to do is hurt you. And after that, the to-do list
2 is complete and I can go home and watch TV.
3
4 '
5 id: 1f479a0b-1cc8-4e18-9708-eaa868c40799
+0
-2
data/quips/206e13ee-7889-4794-8548-b2a9fad75671 less more
1 content: Well, I died and turned into a Roman. It's very distracting.
2 id: 206e13ee-7889-4794-8548-b2a9fad75671
+0
-3
data/quips/2148ce30-fe85-4753-b335-cdf502f69de3 less more
1 content: A blaster at your side is no match for hokey religions and ancient weapons,
2 kid.
3 id: 2148ce30-fe85-4753-b335-cdf502f69de3
+0
-2
data/quips/2185f83c-16b9-49ca-afba-6b7fca8747c4 less more
1 content: I'm the Sheik of Araby... with no pants on!
2 id: 2185f83c-16b9-49ca-afba-6b7fca8747c4
+0
-2
data/quips/2194d02e-4631-4dea-9895-0b91b714a3bd less more
1 content: I do not know! Perhaps it means nothing, or perhaps everything!
2 id: 2194d02e-4631-4dea-9895-0b91b714a3bd
+0
-2
data/quips/22f1074f-2534-4092-9803-12fb8420b0e2 less more
1 content: The best things in life are ridiculous.
2 id: 22f1074f-2534-4092-9803-12fb8420b0e2
+0
-2
data/quips/2496967d-3d63-4c08-825c-24fb8543df80 less more
1 content: Abraham Lincoln shot first.
2 id: 2496967d-3d63-4c08-825c-24fb8543df80
+0
-3
data/quips/24b17d08-ce5a-4ac9-bc37-e9c9fcbe14e3 less more
1 content: No, I ain't got a fax machine! I also ain't got an Apple IIc, polio, or
2 a falcon.
3 id: 24b17d08-ce5a-4ac9-bc37-e9c9fcbe14e3
+0
-2
data/quips/258c4920-b9cb-45aa-a3eb-4d39fc0a6f19 less more
1 content: '...over-the-counter malt antidepressant.'
2 id: 258c4920-b9cb-45aa-a3eb-4d39fc0a6f19
+0
-2
data/quips/258f6a93-b0dc-4ab8-8a60-fac4fcf62762 less more
1 content: That's what forgiveness sounds like. Screaming, and then silence.
2 id: 258f6a93-b0dc-4ab8-8a60-fac4fcf62762
+0
-3
data/quips/25cc3c34-b4c4-4a0a-aac5-82b66ecb5a12 less more
1 content: '"Growing up in Korea, did your bedroom have a ceiling fan?" "Obviously not,
2 since I survived."'
3 id: 25cc3c34-b4c4-4a0a-aac5-82b66ecb5a12
+0
-4
data/quips/2810b174-7dbc-4d3b-a9a8-a01ac33453c1 less more
1 content: 'Tangerine
2
3 '
4 id: 2810b174-7dbc-4d3b-a9a8-a01ac33453c1
+0
-2
data/quips/28304e04-87f0-4bd9-bfad-7f5a9d9759f7 less more
1 content: '"The calm, / Cool face of the river / Asked me for a kiss"'
2 id: 28304e04-87f0-4bd9-bfad-7f5a9d9759f7
+0
-2
data/quips/28392829-1d4c-4fed-bf58-1166e961b9d9 less more
1 content: '...a giant step in no direction at all.'
2 id: 28392829-1d4c-4fed-bf58-1166e961b9d9
+0
-2
data/quips/296f52f2-c27a-4b68-b115-5a649e62b0b4 less more
1 content: an alien universe brightly lit but invisible
2 id: 296f52f2-c27a-4b68-b115-5a649e62b0b4
+0
-5
data/quips/2970b6cb-7d44-4187-941e-d8c4b1595955 less more
1 content: 'shorty said i look like the gecko from the geico commercials / plus the
2 caveman too
3
4 '
5 id: 2970b6cb-7d44-4187-941e-d8c4b1595955
+0
-3
data/quips/29e03f23-df04-4fcd-9b59-ca9444d59bab less more
1 content: '"''Gentlemen, consider: of course the Ancient Egyptians made beer cans;
2 where else would they have kept their beer?''"'
3 id: 29e03f23-df04-4fcd-9b59-ca9444d59bab
+0
-5
data/quips/2aeeba70-dae7-4ab4-b860-e7f02fc0fe73 less more
1 content: 'truely u r just a bunch of sexy atoms / u sir r just the way matter has
2 decided to organise itself today
3
4 '
5 id: 2aeeba70-dae7-4ab4-b860-e7f02fc0fe73
+0
-2
data/quips/2c1061e8-e81f-4e3c-94a1-b90c2e91dd0a less more
1 content: "ok r\xE9ta na f\xE1\u0161ku, to is\xE1na vo\u0161tenok"
2 id: 2c1061e8-e81f-4e3c-94a1-b90c2e91dd0a
+0
-4
data/quips/2c41a640-4e71-4017-bf81-e4df7ba6d3b3 less more
1 content: 'time itself dies screaming
2
3 '
4 id: 2c41a640-4e71-4017-bf81-e4df7ba6d3b3
+0
-4
data/quips/2d7485c6-85a2-411d-90c5-84acebabbc31 less more
1 content: 'not all who wander are found
2
3 '
4 id: 2d7485c6-85a2-411d-90c5-84acebabbc31
+0
-2
data/quips/2f017274-a95e-4462-b7bb-524d81a7808e less more
1 content: anagram for mongo
2 id: 2f017274-a95e-4462-b7bb-524d81a7808e
+0
-2
data/quips/2f149239-5df8-40e2-a7f4-2070be68f3b6 less more
1 content: in fact it's easy now
2 id: 2f149239-5df8-40e2-a7f4-2070be68f3b6
+0
-3
data/quips/2f864035-cb2e-45a1-afa7-c606de27d384 less more
1 content: '"i am skeptical of the concept ''Too Big To Fail'' mainly because i am extremely
2 big and i fail constantly"'
3 id: 2f864035-cb2e-45a1-afa7-c606de27d384
+0
-4
data/quips/2fa534d5-4fcc-4377-b7bd-0ffcfa19c697 less more
1 content: 'And that''s a rock fact!
2
3 '
4 id: 2fa534d5-4fcc-4377-b7bd-0ffcfa19c697
+0
-4
data/quips/3087ea12-c1c3-4ce4-b1df-eb5843eca873 less more
1 content: 'dial with it
2
3 '
4 id: 3087ea12-c1c3-4ce4-b1df-eb5843eca873
+0
-2
data/quips/31bfcf96-9311-49b7-b0f5-bd5577308bd6 less more
1 content: Guns don't kill people. Bullets do.
2 id: 31bfcf96-9311-49b7-b0f5-bd5577308bd6
+0
-2
data/quips/31ddc9b4-2abf-48a8-beef-abebf15c8587 less more
1 content: My friends and I were working for the local tangerine.
2 id: 31ddc9b4-2abf-48a8-beef-abebf15c8587
+0
-2
data/quips/31dfae44-e092-480d-84d6-fccb956fea59 less more
1 content: NEXTWAVE IS LOVE
2 id: 31dfae44-e092-480d-84d6-fccb956fea59
+0
-4
data/quips/327dc24f-521c-41c2-af45-28f1a9ea8f95 less more
1 content: 'Personal computers can have users, but social media has livestock.
2
3 '
4 id: 327dc24f-521c-41c2-af45-28f1a9ea8f95
+0
-4
data/quips/32ab90cf-81b4-4c3f-ac8c-ad21cd798b24 less more
1 content: 'haderachs gonna haderach
2
3 '
4 id: 32ab90cf-81b4-4c3f-ac8c-ad21cd798b24
+0
-3
data/quips/3311f3ae-9672-4b22-8c05-0a7bbe4cf8e5 less more
1 content: she wears short skirts / I wear t-shirts / she's cheer captain and / I'm
2 going to steal the Declaration of Independence
3 id: 3311f3ae-9672-4b22-8c05-0a7bbe4cf8e5
+0
-2
data/quips/34985097-d9ce-4e83-a80b-3caa8bab3f01 less more
1 content: boing boom tschak
2 id: 34985097-d9ce-4e83-a80b-3caa8bab3f01
+0
-3
data/quips/34bd40d0-0249-4f28-b48d-86a282e8309d less more
1 content: '"we sing from our asses while burning in purgatory / the butt song from
2 hell"'
3 id: 34bd40d0-0249-4f28-b48d-86a282e8309d
+0
-2
data/quips/35294f56-7730-4d3d-895d-b39142cebbcf less more
1 content: The best hypothesis is that you are wrong.
2 id: 35294f56-7730-4d3d-895d-b39142cebbcf
+0
-3
data/quips/3561b39a-ce64-440a-af70-b394d255e7c4 less more
1 content: so yes i am the spooky janitor character in the direct-to-video movie of
2 your life
3 id: 3561b39a-ce64-440a-af70-b394d255e7c4
+0
-2
data/quips/364e4bd9-c53a-4a20-9435-faf5448de0d4 less more
1 content: YEW BOYS QUIT THAT WHIPPIN'
2 id: 364e4bd9-c53a-4a20-9435-faf5448de0d4
+0
-4
data/quips/37464450-2b9b-46ea-99e6-40328761920d less more
1 content: its the year 2021. you download designer drugs for your 3d printer off the
2 bit torrent network. you go to get the drugs out of the printer but instead of drugs
3 it printed a cop. Youre under arrest
4 id: 37464450-2b9b-46ea-99e6-40328761920d
+0
-2
data/quips/38691627-73b1-4e70-937a-d638d09d036e less more
1 content: Now where did I put that rat's ass I could give?
2 id: 38691627-73b1-4e70-937a-d638d09d036e
+0
-2
data/quips/3a0b2259-07c3-4b6f-bb30-a37201588da3 less more
1 content: It menaces with spikes of bread.
2 id: 3a0b2259-07c3-4b6f-bb30-a37201588da3
+0
-3
data/quips/3a504343-32e8-4536-8bff-97c3631abe99 less more
1 content: cannibal children are lucky because their breakfast isn't just a bacon smile
2 with two egg eyes. it's a real face.
3 id: 3a504343-32e8-4536-8bff-97c3631abe99
+0
-2
data/quips/3a54f759-4901-40f9-9080-ca5e1eae28ae less more
1 content: DEWEY DEFEATS MOTHRA
2 id: 3a54f759-4901-40f9-9080-ca5e1eae28ae
+0
-2
data/quips/3baf1a18-7814-4b5b-b906-c99d7ac88450 less more
1 content: If you believe in solipsism, you're not alone.
2 id: 3baf1a18-7814-4b5b-b906-c99d7ac88450
+0
-4
data/quips/3bf2ac2e-2d68-48d4-b8be-a82eeae1d691 less more
1 content: 'stab like no one can arrest you
2
3 '
4 id: 3bf2ac2e-2d68-48d4-b8be-a82eeae1d691
+0
-2
data/quips/3c6ece28-8d07-4dff-b19e-35048b6fbe65 less more
1 content: '"soylent green is......updog...."'
2 id: 3c6ece28-8d07-4dff-b19e-35048b6fbe65
+0
-2
data/quips/3cb7fa84-8c22-40d8-b56a-ad787b1164cd less more
1 content: What is stopping you from doing something so cool that it renders you immortal?
2 id: 3cb7fa84-8c22-40d8-b56a-ad787b1164cd
+0
-4
data/quips/3cee7be0-ce60-408a-827f-0382a5114189 less more
1 content: Sometimes she just can't deal with anything verbal. The world for her becomes
2 a parade of amusing lights and colors; words are just pretty noises that the big-pink-things
3 make.
4 id: 3cee7be0-ce60-408a-827f-0382a5114189
+0
-2
data/quips/3de37e87-47b1-461e-baad-d5641d9cc4ee less more
1 content: to wound the autumnal city
2 id: 3de37e87-47b1-461e-baad-d5641d9cc4ee
+0
-4
data/quips/3faf664f-9de7-4822-aa8c-ae506f661de0 less more
1 content: 'Thants.
2
3 '
4 id: 3faf664f-9de7-4822-aa8c-ae506f661de0
+0
-2
data/quips/42af0a60-e08e-4b87-b7b6-0f137e2d7b1f less more
1 content: '"I wish many guns. Floating around me. Controlled by murder thoughts."'
2 id: 42af0a60-e08e-4b87-b7b6-0f137e2d7b1f
+0
-2
data/quips/43f07abe-abd3-4e3c-842c-26b6d82f458b less more
1 content: Change or Die.
2 id: 43f07abe-abd3-4e3c-842c-26b6d82f458b
+0
-2
data/quips/43f68001-4dd8-49e9-a37b-eff592367631 less more
1 content: I only regret that I have but one mind to lose.
2 id: 43f68001-4dd8-49e9-a37b-eff592367631
+0
-2
data/quips/441a1111-187a-4e85-97d6-08a5bce79838 less more
1 content: THUSLY, THE PANTS COME OFF AND TEST SCORES RISE!!!!!!
2 id: 441a1111-187a-4e85-97d6-08a5bce79838
+0
-2
data/quips/44d91b9f-e289-4159-af89-bb6fc74259a4 less more
1 content: When you are engulfed in flames, and so on.
2 id: 44d91b9f-e289-4159-af89-bb6fc74259a4
+0
-2
data/quips/458ee78e-afab-4764-9fc7-8dff9a371114 less more
1 content: '"Bike lane? Where we''re going, we don''t need bike lanes!"'
2 id: 458ee78e-afab-4764-9fc7-8dff9a371114
+0
-3
data/quips/45c8c2b6-943a-4381-9ecf-5310494b88b3 less more
1 content: "en arkh\u0113 \u0113n ho l\xF3gos, kai ho l\xF3gos \u0113n pr\xF2s t\xF2\
2 n \xF3rnitha, kai ho \xF3rnis \u0113n ho l\xF3gos"
3 id: 45c8c2b6-943a-4381-9ecf-5310494b88b3
+0
-2
data/quips/45cf11c7-387e-4b52-b136-48315dabbd39 less more
1 content: Time and space died yesterday.
2 id: 45cf11c7-387e-4b52-b136-48315dabbd39
+0
-2
data/quips/466815c8-3e7a-4463-9740-f1de1fcd6223 less more
1 content: where you get this place from, the hellhole store?
2 id: 466815c8-3e7a-4463-9740-f1de1fcd6223
+0
-2
data/quips/47215e19-9993-4958-9deb-b3e5626ee334 less more
1 content: Attention Workers it has been 127 days since our last dumbest workplace sentence
2 id: 47215e19-9993-4958-9deb-b3e5626ee334
+0
-2
data/quips/47bc13eb-abb8-4118-916e-31da3ca50e21 less more
1 content: Lost children!! Come get your free Sears wish catalog free rebates.
2 id: 47bc13eb-abb8-4118-916e-31da3ca50e21
+0
-2
data/quips/49e7f031-5fb3-4e24-8731-758862ebe9e5 less more
1 content: SOMEONE NEEDS TO GET WITH THE PROGRAM AND THAT SOMEONE IS EVERYONE
2 id: 49e7f031-5fb3-4e24-8731-758862ebe9e5
+0
-4
data/quips/4a0f278d-f445-4f38-b1fc-7b3eeaf3e3d8 less more
1 content: 'I am sitting in a room, different from the one you are in now.
2
3 '
4 id: 4a0f278d-f445-4f38-b1fc-7b3eeaf3e3d8
+0
-5
data/quips/4a3672d8-4eb1-4bc5-87a4-5b96bcbfcf49 less more
1 content: 'ladies call me piltdown man because upon rigorous scientific investigation
2 im wack as hell
3
4 '
5 id: 4a3672d8-4eb1-4bc5-87a4-5b96bcbfcf49
+0
-2
data/quips/4b4852fb-cf4a-44b1-a950-7190e69d8909 less more
1 content: Magic is just the idiot's word for science.
2 id: 4b4852fb-cf4a-44b1-a950-7190e69d8909
+0
-2
data/quips/4be5cbfd-8c50-4f8d-aa85-e31051abcfaf less more
1 content: Delicious hot dogs. They can't run from me.
2 id: 4be5cbfd-8c50-4f8d-aa85-e31051abcfaf
+0
-2
data/quips/4c18baf1-7de4-48e6-95ca-081fabd6ac91 less more
1 content: WORST SONG, PLAYED ON UGLIEST GUITAR
2 id: 4c18baf1-7de4-48e6-95ca-081fabd6ac91
+0
-2
data/quips/4d221b0b-64cb-4137-9a7f-fcd61ad516f0 less more
1 content: I have to find a didactic musing. From a skeleton. It's for school.
2 id: 4d221b0b-64cb-4137-9a7f-fcd61ad516f0
+0
-5
data/quips/4e63bf8a-a77c-43f6-8b62-3174d2ff7efb less more
1 content: 'You know the type---loud as a motorbike, but wouldn''t bust a grape in a
2 fruit fight?
3
4 '
5 id: 4e63bf8a-a77c-43f6-8b62-3174d2ff7efb
+0
-2
data/quips/4e7a0dd5-30c3-45bc-8f95-8586ec79c92c less more
1 content: These people ought to know who we are and tell that we are here.
2 id: 4e7a0dd5-30c3-45bc-8f95-8586ec79c92c
+0
-3
data/quips/4f1661f9-0b73-43c6-86ca-5f00001698bf less more
1 content: Imagine a boot stamping on a human face - forever. Imagine the sound of it.
2 That is my ringtone.
3 id: 4f1661f9-0b73-43c6-86ca-5f00001698bf
+0
-4
data/quips/4fc44b2a-726b-46aa-86ff-8004a20be6d6 less more
1 content: 'everybody party time / some of us will never sleep again
2
3 '
4 id: 4fc44b2a-726b-46aa-86ff-8004a20be6d6
+0
-3
data/quips/511f66c4-64cc-48a9-b5ab-3a81c7758c2a less more
1 content: David, listen. I'm buried alive where the blossoms shed by the cherry tree
2 across from the pet shop are the thickest.
3 id: 511f66c4-64cc-48a9-b5ab-3a81c7758c2a
+0
-2
data/quips/559112aa-8ebf-4fca-aba1-d1c35d2ddb97 less more
1 content: OUR COMRADE THE ELECTRON
2 id: 559112aa-8ebf-4fca-aba1-d1c35d2ddb97
+0
-2
data/quips/55e14f64-b7e0-4486-bdc6-dbd4b0fad26d less more
1 content: liberals / on skates / pass through / park gates
2 id: 55e14f64-b7e0-4486-bdc6-dbd4b0fad26d
+0
-2
data/quips/5673894e-be9a-42ff-ad7c-91be8f0b4d15 less more
1 content: If this isn't nice, I don't know what is.
2 id: 5673894e-be9a-42ff-ad7c-91be8f0b4d15
+0
-3
data/quips/56ca39c1-a385-419e-a2dd-d8af5ee640a2 less more
1 content: 'a girl''s measurements should be: pupil size in picas, warmth of breath
2 in kelvin and diary page count. now, add it up and tell ((no one)).'
3 id: 56ca39c1-a385-419e-a2dd-d8af5ee640a2
+0
-4
data/quips/56d8a913-350f-4c97-bb60-9fa0a9036718 less more
1 content: 'See! Now! Our sentence is up!
2
3 '
4 id: 56d8a913-350f-4c97-bb60-9fa0a9036718
+0
-2
data/quips/57e4961e-37dc-4c07-9ce9-db3a40054b93 less more
1 content: It has been 127 days since our last workplace give-a-fuck.
2 id: 57e4961e-37dc-4c07-9ce9-db3a40054b93
+0
-2
data/quips/589bbd71-d0b7-40b7-9cf8-f776058c640a less more
1 content: I'm driven by white-hot anger. And my mom, sometimes, when I miss the bus.
2 id: 589bbd71-d0b7-40b7-9cf8-f776058c640a
+0
-4
data/quips/5a3fb18d-100f-4350-9ffc-c3914b51e024 less more
1 content: '...the night is very large and full of wonders.
2
3 '
4 id: 5a3fb18d-100f-4350-9ffc-c3914b51e024
+0
-2
data/quips/5ab88d4b-eddd-4f81-89e2-f9cd9207a067 less more
1 content: Jay-Z thought, "I know, I'll use regular expressions". Now he has 100 problems.
2 id: 5ab88d4b-eddd-4f81-89e2-f9cd9207a067
+0
-4
data/quips/5adc132d-af3b-4366-b85e-4dc9f906b851 less more
1 content: 'san francisco is going to make a great looking crater
2
3 '
4 id: 5adc132d-af3b-4366-b85e-4dc9f906b851
+0
-2
data/quips/5afcad14-71e4-406f-8b22-18ba88a250cb less more
1 content: '"Pain is nature''s way of telling you that you''re stupid."'
2 id: 5afcad14-71e4-406f-8b22-18ba88a250cb
+0
-3
data/quips/5b073ea8-d6dc-4049-9652-068d51d2e6a9 less more
1 content: Take thee this thing covered with that stuff and give it unto that guy, that
2 he may do things with it.
3 id: 5b073ea8-d6dc-4049-9652-068d51d2e6a9
+0
-2
data/quips/5ce2d28d-e373-46fb-95e4-c666eae5aca5 less more
1 content: '"listen every victim unit is special in its own way"'
2 id: 5ce2d28d-e373-46fb-95e4-c666eae5aca5
+0
-5
data/quips/5db7e191-02b8-456d-9b2d-565b4fdb87b5 less more
1 content: 'anything you wanna be you oughta be / except a cop ''cause a cop is wack
2 tho
3
4 '
5 id: 5db7e191-02b8-456d-9b2d-565b4fdb87b5
+0
-4
data/quips/5e1f0451-efed-46b7-bf41-69f07adda7b6 less more
1 content: 'baby ocean fatdog
2
3 '
4 id: 5e1f0451-efed-46b7-bf41-69f07adda7b6
+0
-3
data/quips/5ea87c2f-4b82-4e75-a9de-91e1470f601e less more
1 content: THE SUN IS MORE BEAUTIFUL AND VIOLENT THAN ANYTHING THAT HAPPENS ON EARTH
2 / BUT, LIKE, DON'T LET THAT STOP YOU FROM TRYING
3 id: 5ea87c2f-4b82-4e75-a9de-91e1470f601e
+0
-3
data/quips/5f964559-9a75-4706-a301-901fd560eeea less more
1 content: she wears short skirts / I wear short skirts / I'm her doppelganger / I'm
2 going to replace her some day
3 id: 5f964559-9a75-4706-a301-901fd560eeea
+0
-2
data/quips/601fffcf-8a54-4b7c-a3b3-c5a6876ca933 less more
1 content: Mr. Gorbachev, tear up this club.
2 id: 601fffcf-8a54-4b7c-a3b3-c5a6876ca933
+0
-4
data/quips/60c91779-3884-45b5-93f6-fa383e50ba94 less more
1 content: 'where my gerunds at
2
3 '
4 id: 60c91779-3884-45b5-93f6-fa383e50ba94
+0
-3
data/quips/6175bb9b-3941-45e8-820d-3ade9b8e4e3a less more
1 content: I am from Truck Stop India. It's like India, but smaller and more like a
2 truck stop.
3 id: 6175bb9b-3941-45e8-820d-3ade9b8e4e3a
+0
-5
data/quips/618cf047-d060-4671-b8cf-694b5ede17fe less more
1 content: 'We know the classic scene from cartoons: Zizek reaches a precipice but goes
2 on running, ignoring the fact that there is no ground underfoot.
3
4 '
5 id: 618cf047-d060-4671-b8cf-694b5ede17fe
+0
-3
data/quips/623c90d8-eef5-40e9-8794-41ac7719e7d5 less more
1 content: '"Order some golf shoes," I whispered. "Otherwise we''ll never get out of
2 this place alive..."'
3 id: 623c90d8-eef5-40e9-8794-41ac7719e7d5
+0
-2
data/quips/637d04e1-5994-407f-8eee-cdd43e13c641 less more
1 content: '"I didn''t know you could stop being a god." "You can stop being anything."'
2 id: 637d04e1-5994-407f-8eee-cdd43e13c641
+0
-5
data/quips/63eb988e-5b05-4554-909d-f0fbd0c6ef51 less more
1 content: 'And I think that''s most of the reason I''m so obsessed with Ryan Seacrest,
2 is that he is basically the Kermit the Frog of our reality.
3
4 '
5 id: 63eb988e-5b05-4554-909d-f0fbd0c6ef51
+0
-2
data/quips/641e2674-6f91-4b29-8d53-9438aa6643b0 less more
1 content: "\"dress for the au you want, not the canon you\u2019re in\""
2 id: 641e2674-6f91-4b29-8d53-9438aa6643b0
+0
-2
data/quips/64ae84e1-0b87-41eb-9665-e58d4131e98a less more
1 content: 'Or: how to turn and face one''s self so that the two faces become one.'
2 id: 64ae84e1-0b87-41eb-9665-e58d4131e98a
+0
-2
data/quips/64cd7602-79bd-4479-8e31-fb38c7a99626 less more
1 content: She's the kind of girl who gets her slings and arrows from the dumpster.
2 id: 64cd7602-79bd-4479-8e31-fb38c7a99626
+0
-2
data/quips/65316d24-56e2-48d6-a12e-49348217e650 less more
1 content: the finest qualities of our nature like the bloom on fruits can be preserved
2 id: 65316d24-56e2-48d6-a12e-49348217e650
+0
-2
data/quips/6650c52f-8078-449d-b2bd-31b6bad80586 less more
1 content: True love is overrated.
2 id: 6650c52f-8078-449d-b2bd-31b6bad80586
+0
-3
data/quips/66626546-a195-42bc-9a8d-ff15311b08c4 less more
1 content: '"What''ll you do if that doesn''t work?" "Well... I''ll drink heavily and
2 shout at you."'
3 id: 66626546-a195-42bc-9a8d-ff15311b08c4
+0
-2
data/quips/6679821a-10c8-497a-870a-c43b5adb0098 less more
1 content: Your words are full of virtue and consonants.
2 id: 6679821a-10c8-497a-870a-c43b5adb0098
+0
-3
data/quips/66f60ce8-284d-45cd-9387-ce51a27a231a less more
1 content: I propose a return to traditional values. Eating people to gain their strength
2 and wisdom, for example.
3 id: 66f60ce8-284d-45cd-9387-ce51a27a231a
+0
-2
data/quips/66f6b8f0-40b3-4b77-a5f6-4c501d7c777c less more
1 content: "I carry a log\u2014yes. Is it funny to you? It is not to me.\n"
2 id: 66f6b8f0-40b3-4b77-a5f6-4c501d7c777c
+0
-2
data/quips/6963f119-b141-430d-9868-ec42508812e8 less more
1 content: 'The Factory of All: A Labor of Hate'
2 id: 6963f119-b141-430d-9868-ec42508812e8
+0
-2
data/quips/69d66424-3e8d-4b75-95b1-751436e723ad less more
1 content: that is one sweet earth you might say
2 id: 69d66424-3e8d-4b75-95b1-751436e723ad
+0
-2
data/quips/69f6476a-6f44-4d71-9867-12cf6421064f less more
1 content: I'm not a god, but if I was, I'd be an angry god.
2 id: 69f6476a-6f44-4d71-9867-12cf6421064f
+0
-2
data/quips/6a5923bc-d31a-4d24-b369-d79d505cb986 less more
1 content: 'You''re invited to: BANG YOUR HEAD AGAINST A WALL'
2 id: 6a5923bc-d31a-4d24-b369-d79d505cb986
+0
-2
data/quips/6ad3d2c0-2c4f-46be-bdd2-ff331bcb5e0c less more
1 content: '...and there will be some who will not fear even that void.'
2 id: 6ad3d2c0-2c4f-46be-bdd2-ff331bcb5e0c
+0
-3
data/quips/6b4b0cc7-bd18-4459-9ea7-e03cfef05971 less more
1 content: '"This place is not a place of honor. No highly esteemed deed is commemorated
2 here. Nothing valued is here."'
3 id: 6b4b0cc7-bd18-4459-9ea7-e03cfef05971
+0
-4
data/quips/6b68bf8a-a654-4b76-ad52-7764f7860a9c less more
1 content: 'the highest purpose is to have no purpose at all
2
3 '
4 id: 6b68bf8a-a654-4b76-ad52-7764f7860a9c
+0
-2
data/quips/6b7f4f12-c4a1-4448-823c-f87a07015881 less more
1 content: To be good is to be lonesome.
2 id: 6b7f4f12-c4a1-4448-823c-f87a07015881
+0
-2
data/quips/6c030933-f3e3-41d6-8ed1-32064fd31f32 less more
1 content: '"It''s cute that you said that ''cause you''re a frickin'' idiot."'
2 id: 6c030933-f3e3-41d6-8ed1-32064fd31f32
+0
-2
data/quips/6cc90351-2c2f-4ed6-9e01-6b0a6ad39608 less more
1 content: Sorry. I'm a Doctor. I'm very clever.
2 id: 6cc90351-2c2f-4ed6-9e01-6b0a6ad39608
+0
-3
data/quips/6ccfc6f6-de76-4fbc-b0b8-722a53d60e9f less more
1 content: My mistress' eyes are nothing like the Sun, though they do exhibit granulations,
2 flares, and coronal mass ejections.
3 id: 6ccfc6f6-de76-4fbc-b0b8-722a53d60e9f
+0
-2
data/quips/6d104e85-739b-4e7d-bd9e-cd5bb45c0099 less more
1 content: we are the machines of loving grace
2 id: 6d104e85-739b-4e7d-bd9e-cd5bb45c0099
+0
-2
data/quips/6d1d5955-9f3c-4f47-9efd-90677275d03a less more
1 content: I'm gonna see the cow beneath the sea.
2 id: 6d1d5955-9f3c-4f47-9efd-90677275d03a
+0
-2
data/quips/6d889ac1-4039-4bed-89e8-38012add617b less more
1 content: Consistency is a rationalist fetish.
2 id: 6d889ac1-4039-4bed-89e8-38012add617b
+0
-2
data/quips/6daa0f11-d633-4e21-871e-64b05ce637ef less more
1 content: "d\xFAlrai k\xE9traudh"
2 id: 6daa0f11-d633-4e21-871e-64b05ce637ef
+0
-2
data/quips/6e22b17c-ed6d-41eb-a61d-968bfb053877 less more
1 content: '"im at the commmbination anime and anthro con"'
2 id: 6e22b17c-ed6d-41eb-a61d-968bfb053877
+0
-2
data/quips/6e3f120b-e4d1-4430-bd38-516bf9e1b2f0 less more
1 content: Nothing real can defeat us. Nothing unreal exists.
2 id: 6e3f120b-e4d1-4430-bd38-516bf9e1b2f0
+0
-2
data/quips/6ed9b7f5-5ee6-4aa0-8be6-9ab5edefa97d less more
1 content: '"...I''m not a ''strong female character.'' I am a mutant mother of destruction."'
2 id: 6ed9b7f5-5ee6-4aa0-8be6-9ab5edefa97d
+0
-4
data/quips/6ef41157-ebc5-4b3b-b145-196d7ec4e570 less more
1 content: 'walk without rhythm / it won''t attract the worm
2
3 '
4 id: 6ef41157-ebc5-4b3b-b145-196d7ec4e570
+0
-2
data/quips/6f081985-4561-4fa6-a5c2-833779a72e27 less more
1 content: And now, what's going to happen to us without barbarians?
2 id: 6f081985-4561-4fa6-a5c2-833779a72e27
+0
-2
data/quips/70c9267a-f071-421e-8b54-b53c00c104f6 less more
1 content: 'There is a Policeman Inside All Our Heads: He Must Be Destroyed'
2 id: 70c9267a-f071-421e-8b54-b53c00c104f6
+0
-2
data/quips/71071d6e-3a20-41ae-ac50-b67d71176384 less more
1 content: '"It is like a bullethole in the world."'
2 id: 71071d6e-3a20-41ae-ac50-b67d71176384
+0
-4
data/quips/71ccf1f3-a750-4cad-99e9-994e89a2f6c4 less more
1 content: 'I''ll see you in hell or in Uqbar
2
3 '
4 id: 71ccf1f3-a750-4cad-99e9-994e89a2f6c4
+0
-3
data/quips/723ad2fe-ca63-4861-b0fe-e3feadf061cf less more
1 content: What do you get if you cross an elephant with a grape? |grape| * |elephant|
2 * sin(theta).
3 id: 723ad2fe-ca63-4861-b0fe-e3feadf061cf
+0
-2
data/quips/727e0646-78c4-40b7-a6ae-df3d01683e4a less more
1 content: '"Maybe the real Slim Shady was the friends we made along the way."'
2 id: 727e0646-78c4-40b7-a6ae-df3d01683e4a
+0
-2
data/quips/72f4f0d1-e86d-4ba6-85cd-c2835861a5e8 less more
1 content: THUMBS
2 id: 72f4f0d1-e86d-4ba6-85cd-c2835861a5e8
+0
-2
data/quips/73d3dc99-7e18-4f34-9873-6f9125f32ecc less more
1 content: Give me a thousand men crazy enough to conquer hell, and I will do it.
2 id: 73d3dc99-7e18-4f34-9873-6f9125f32ecc
+0
-4
data/quips/747b1c40-666c-475c-9fc3-cea9291ea5db less more
1 content: 'All is not lost! Some of it is hidden.
2
3 '
4 id: 747b1c40-666c-475c-9fc3-cea9291ea5db
+0
-3
data/quips/74da9b94-16ba-40aa-8243-3db135c660e6 less more
1 content: there's a hobo shed and some paint made of lead / you'll know you're done
2 painting when you wake up dead
3 id: 74da9b94-16ba-40aa-8243-3db135c660e6
+0
-3
data/quips/7598daee-baae-4966-9ba2-1b8286d5d03f less more
1 content: '"You can ponder this question while I ponder a variety of ways to express
2 that you are an idiot."'
3 id: 7598daee-baae-4966-9ba2-1b8286d5d03f
+0
-3
data/quips/76fd8ad1-78c4-40fa-b029-769a5b8b5fab less more
1 content: "\"I will answer the question so good that no one needs to answer it ever\
2 \ again! We will lay it to rest like a little baby\u2026 who\u2026 is dead.\""
3 id: 76fd8ad1-78c4-40fa-b029-769a5b8b5fab
+0
-2
data/quips/776ccf2b-c41c-4740-abe6-af1c919504ea less more
1 content: dril and horse_ebooks at tanagra
2 id: 776ccf2b-c41c-4740-abe6-af1c919504ea
+0
-5
data/quips/77c24016-f87e-47c2-9c5e-05b0560006a8 less more
1 content: 'YOU ARE MADE OF WORDS AND YOU ARE AFRAID THAT MAYBE YOU HAVE FORGOTTEN WHAT
2 MOST OF THEM MEAN
3
4 '
5 id: 77c24016-f87e-47c2-9c5e-05b0560006a8
+0
-2
data/quips/78bd6bf6-9043-48ae-aa08-72e574adc9bc less more
1 content: I am a liar and I do not know why there is something instead of nothing.
2 id: 78bd6bf6-9043-48ae-aa08-72e574adc9bc
+0
-2
data/quips/796641c7-d20c-4e47-b1d2-9605c37c9a92 less more
1 content: The rubber axe, in particular, was poor execution.
2 id: 796641c7-d20c-4e47-b1d2-9605c37c9a92
+0
-5
data/quips/79afee84-64cf-4265-a011-34f4daaab570 less more
1 content: 'IF THE STATE BANS ME FOR MAKING CUBIST PAINTINGS I WILL FACE STALIN AND
2 WALK BACKWARDS INTO HELL.
3
4 '
5 id: 79afee84-64cf-4265-a011-34f4daaab570
+0
-3
data/quips/7abc2550-3352-4d42-8f4a-2549ca5b9bb4 less more
1 content: Now I'm checkin' out the furniture, wanna buy some, might buy a wheelchair
2 and roll out of this town
3 id: 7abc2550-3352-4d42-8f4a-2549ca5b9bb4
+0
-3
data/quips/7b8102db-f083-48bc-a187-d670098aa7b3 less more
1 content: We stopped checking for monsters under our bed when we realized they were
2 inside of us.
3 id: 7b8102db-f083-48bc-a187-d670098aa7b3
+0
-2
data/quips/7c22bce2-f958-4655-8047-fb55a2247109 less more
1 content: It is like God, but also like a discus.
2 id: 7c22bce2-f958-4655-8047-fb55a2247109
+0
-3
data/quips/7c852110-98d8-4440-aabf-711e2cf188b4 less more
1 content: "I am the signifier \r\nThey are the signifiers \r\nI am the signifier\
2 \ \r\nGoo goo g'joob"
3 id: 7c852110-98d8-4440-aabf-711e2cf188b4
+0
-2
data/quips/7e0c22b7-7f02-4268-a2d7-6dc959491b3f less more
1 content: sadanak iiqshtrypaad um dwee&#331;qhom !kvensiq
2 id: 7e0c22b7-7f02-4268-a2d7-6dc959491b3f
+0
-2
data/quips/7f982462-29e7-4b20-ad35-facc9c61c75c less more
1 content: Hi, I'm calling about your ad. From inside the house.
2 id: 7f982462-29e7-4b20-ad35-facc9c61c75c
+0
-4
data/quips/7fa4aa99-1945-4650-aca5-3d7c9b823046 less more
1 content: 'The Super Bowl would be better if the winning team was allowed to live.
2
3 '
4 id: 7fa4aa99-1945-4650-aca5-3d7c9b823046
+0
-3
data/quips/7fb9593f-5bbb-4a59-a271-6bc1282bd616 less more
1 content: You couldn't have a university at the center of the earth. The library would
2 melt.
3 id: 7fb9593f-5bbb-4a59-a271-6bc1282bd616
+0
-2
data/quips/80a76de9-5644-4143-8430-2474299de25a less more
1 content: because I have important pancakes to flip and flap
2 id: 80a76de9-5644-4143-8430-2474299de25a
+0
-3
data/quips/814e6bb8-f877-4316-9075-61f0ae634484 less more
1 content: And she tells me she's a liar but I don't believe her / she'll tell me almost
2 anything
3 id: 814e6bb8-f877-4316-9075-61f0ae634484
+0
-4
data/quips/81e912c5-f287-446d-be79-6bfdb74f373e less more
1 content: 'And here, now, dancing is enough.
2
3 '
4 id: 81e912c5-f287-446d-be79-6bfdb74f373e
+0
-2
data/quips/83d07984-f3d2-4e86-8f1d-7e53c0fb3c8e less more
1 content: flavor tripping at the gates of hell
2 id: 83d07984-f3d2-4e86-8f1d-7e53c0fb3c8e
+0
-2
data/quips/84b4aa73-3099-4fca-ae8f-79f245cad503 less more
1 content: Please stop fueling my silent rage.
2 id: 84b4aa73-3099-4fca-ae8f-79f245cad503
+0
-2
data/quips/859762df-eccc-4cd5-ac3e-791b4a9da769 less more
1 content: Everything makes sense. Just not a lot.
2 id: 859762df-eccc-4cd5-ac3e-791b4a9da769
+0
-2
data/quips/862f64f1-d665-458c-817c-abc21ff97305 less more
1 content: wugs not drugs
2 id: 862f64f1-d665-458c-817c-abc21ff97305
+0
-2
data/quips/86c77ec4-f046-47f0-9e51-8ae90163c0a6 less more
1 content: The difference between jokes and tragedies is that jokes aren't always funny.
2 id: 86c77ec4-f046-47f0-9e51-8ae90163c0a6
+0
-2
data/quips/86cffaa3-bca5-473e-8cbb-176805889a16 less more
1 content: For all we know this is all we need.
2 id: 86cffaa3-bca5-473e-8cbb-176805889a16
+0
-3
data/quips/887e982c-b06c-42c4-9571-dd3d5584a74e less more
1 content: WHAT IF ALIENS LOOK EXACTLY LIKE HORSES AND ALSO ARE JUST ACTUALLY REGULAR
2 HORSES
3 id: 887e982c-b06c-42c4-9571-dd3d5584a74e
+0
-2
data/quips/8a737630-ec17-4c1e-8538-754c4703c67e less more
1 content: I think I just don't like evil Russo-Finnish grandmas.
2 id: 8a737630-ec17-4c1e-8538-754c4703c67e
+0
-2
data/quips/8a84993b-4504-4941-b1c0-9e54f2c69dd6 less more
1 content: The milkman came in the moonlight and the moonlight was less than moonlight.
2 id: 8a84993b-4504-4941-b1c0-9e54f2c69dd6
+0
-2
data/quips/8aa1813b-fbc0-44a4-98d5-923e670df45a less more
1 content: Some days the stars speak in obscure languages.
2 id: 8aa1813b-fbc0-44a4-98d5-923e670df45a
+0
-3
data/quips/8c1cb990-35e0-45b7-9db6-c69690361080 less more
1 content: '"I wanted to spend more time freaking out on the side of the road with a
2 gun."'
3 id: 8c1cb990-35e0-45b7-9db6-c69690361080
+0
-2
data/quips/8c635ad0-3279-435f-8d3f-5a9b2ea2c2a7 less more
1 content: '"I brought some marshmallows. Let''s burn this world down."'
2 id: 8c635ad0-3279-435f-8d3f-5a9b2ea2c2a7
+0
-3
data/quips/8d4e1460-72d4-42ac-8ebe-57ac83305b58 less more
1 content: '''Twas like where you''re from weren''t never there. Where you''re going
2 doesn''t matter. And where you are ain''t no good unless you can get away from it.'
3 id: 8d4e1460-72d4-42ac-8ebe-57ac83305b58
+0
-2
data/quips/8ecca09a-5654-4c91-a71e-3106b566723d less more
1 content: I want to do terrible things to you.
2 id: 8ecca09a-5654-4c91-a71e-3106b566723d
+0
-2
data/quips/8f290893-11cf-474e-8f43-43a957b1eb3f less more
1 content: My robot brain needs beer. Also? I want to die.
2 id: 8f290893-11cf-474e-8f43-43a957b1eb3f
+0
-4
data/quips/90b2d5ac-06e4-4da5-935e-c27b99df8f4b less more
1 content: 'rrrrevereth my buttockth, thergeant major!
2
3 '
4 id: 90b2d5ac-06e4-4da5-935e-c27b99df8f4b
+0
-2
data/quips/9484cbd4-9ec0-4d9c-b346-c52936a23f08 less more
1 content: That which can be destroyed by the truth should be.
2 id: 9484cbd4-9ec0-4d9c-b346-c52936a23f08
+0
-4
data/quips/9626f9a2-5d4e-40bb-9a05-33bbf90bc318 less more
1 content: 'judges are bullshit, your honor
2
3 '
4 id: 9626f9a2-5d4e-40bb-9a05-33bbf90bc318
+0
-5
data/quips/968265f0-187b-419b-a338-a060bb60d3d0 less more
1 content: '"I have to go hand in my special report on how you''re going to die alone.
2 Thanks for all the evidence."
3
4 '
5 id: 968265f0-187b-419b-a338-a060bb60d3d0
+0
-5
data/quips/970219e1-b604-46fa-b87d-0eb5ff966283 less more
1 content: 'Welcome to the citadel of eternal wisdom. Behold, this crystal contains
2 the sum of all human knowledge -- Except Rap And Country
3
4 '
5 id: 970219e1-b604-46fa-b87d-0eb5ff966283
+0
-3
data/quips/98ed2357-a790-4517-a950-108cd9cf4065 less more
1 content: '"I think you''re very nice. I think twinkle''s a nice word. So''s viridian.
2 I met a lady once who had an imaginary fish."'
3 id: 98ed2357-a790-4517-a950-108cd9cf4065
+0
-2
data/quips/98fbde42-449c-4bcd-a636-08be148ea28f less more
1 content: I should... eat a pony.
2 id: 98fbde42-449c-4bcd-a636-08be148ea28f
+0
-2
data/quips/99052132-9aae-4bbc-a238-488d69f0ac3f less more
1 content: It's quite easy to reason logically and still be wrong.
2 id: 99052132-9aae-4bbc-a238-488d69f0ac3f
+0
-4
data/quips/993a1d43-b35a-4a7e-a8a6-9fcdd8478292 less more
1 content: 'BE THE SLOTH
2
3 '
4 id: 993a1d43-b35a-4a7e-a8a6-9fcdd8478292
+0
-2
data/quips/99a420c5-80f1-430a-91b1-bbe9b3e2e993 less more
1 content: 'Attention all planets of the solar federation: we have assumed control.'
2 id: 99a420c5-80f1-430a-91b1-bbe9b3e2e993
+0
-2
data/quips/9a82b99c-c246-408e-aa11-07faa0c61a49 less more
1 content: All data becomes obfuscated by reacting teens. The Serpent Consumes Its Tail
2 id: 9a82b99c-c246-408e-aa11-07faa0c61a49
+0
-5
data/quips/9aa350a6-46d9-4f88-a53a-473e8b2ba87f less more
1 content: '"new tecnologie develop ! you can throw you''r emotions into an dumpstr
2 . you can burn them for insuranc purpose . who even needs ??"
3
4 '
5 id: 9aa350a6-46d9-4f88-a53a-473e8b2ba87f
+0
-3
data/quips/9ad767b4-1d2b-43a5-9e19-c1d5f1d56b4b less more
1 content: '"We should put these petty differences aside and focus on what really matters:
2 how attractive I am."'
3 id: 9ad767b4-1d2b-43a5-9e19-c1d5f1d56b4b
+0
-5
data/quips/9c6ee787-a743-4d3b-8396-8d39c879fc15 less more
1 content: 'jinglin'' a wish coin that I stole from a fountain that was drownin'' all
2 the cares in the world
3
4 '
5 id: 9c6ee787-a743-4d3b-8396-8d39c879fc15
+0
-2
data/quips/9c86c1c9-2c0b-4867-8d9f-4234534bc589 less more
1 content: if the dirtpig sees his shadow it means he is opaque
2 id: 9c86c1c9-2c0b-4867-8d9f-4234534bc589
+0
-2
data/quips/9cd7227b-db50-44e6-bcf0-6b511a8a0131 less more
1 content: The tamagotchis will be freed from their cages, and all will be released.
2 id: 9cd7227b-db50-44e6-bcf0-6b511a8a0131
+0
-2
data/quips/9d9fb8bf-48fa-4873-8986-939cdb4291b1 less more
1 content: EVERYTHING ABOUT YOU I'M GOING TO PUNCH
2 id: 9d9fb8bf-48fa-4873-8986-939cdb4291b1
+0
-2
data/quips/9e01e0e9-0e92-4cde-86e6-46dcc9156a1f less more
1 content: 'Nietzsche: "He who fights monsters, blah. Abyss."'
2 id: 9e01e0e9-0e92-4cde-86e6-46dcc9156a1f
+0
-2
data/quips/9e6d62c3-86ed-4b97-872b-1115c888eab9 less more
1 content: No Rap Or Country For Old Men
2 id: 9e6d62c3-86ed-4b97-872b-1115c888eab9
+0
-3
data/quips/9f7c98d4-4062-4cd6-9fc2-ca5ceb7ded24 less more
1 content: '"I don''t understand why they say, ''I love you.'' Why don''t they say,
2 ''egg''?"'
3 id: 9f7c98d4-4062-4cd6-9fc2-ca5ceb7ded24
+0
-3
data/quips/a1dceda1-c9eb-4e63-ba3c-8c53f347bfc9 less more
1 content: It is good to find one's self in agreement with the gods. It shows that the
2 gods have some wisdom.
3 id: a1dceda1-c9eb-4e63-ba3c-8c53f347bfc9
+0
-2
data/quips/a3261ca3-2c4f-4953-98ba-257379a4bbf6 less more
1 content: Well, we *are* idiots.
2 id: a3261ca3-2c4f-4953-98ba-257379a4bbf6
+0
-5
data/quips/a387975f-c0eb-4416-b99a-a6bae0c27840 less more
1 content: 'Carefully-written fact-checked essay in the streets, unmoderated comments
2 section in the sheets.
3
4 '
5 id: a387975f-c0eb-4416-b99a-a6bae0c27840
+0
-3
data/quips/a486355e-a267-4b71-af79-72fc3029f822 less more
1 content: you seem to think i'm random, but i'm only psuedorandom. you would be exactly
2 this way, were you seeded at the very same time and place.
3 id: a486355e-a267-4b71-af79-72fc3029f822
+0
-4
data/quips/a53dc8a9-1858-4f5e-8310-42a85dab074f less more
1 content: '"Remember, no matter where you go... there you are."
2
3 '
4 id: a53dc8a9-1858-4f5e-8310-42a85dab074f
+0
-3
data/quips/a62c2e4d-5d51-4965-b506-730e49d5ba67 less more
1 content: Would you like to join me for drinking 'alcohol' and/or watching 'movie'
2 starring 'conventionally attractive white people?'
3 id: a62c2e4d-5d51-4965-b506-730e49d5ba67
+0
-3
data/quips/a6d1cc88-82e9-4b39-9e0d-9de4560cdfe1 less more
1 content: I do not lie about such things except when I feel like lying which is all
2 the time.
3 id: a6d1cc88-82e9-4b39-9e0d-9de4560cdfe1
+0
-2
data/quips/a70c7ffd-6c65-47de-9ad0-0a1e8904560c less more
1 content: The only thing that's going to bring me inner peace is a beard-seeking missile.
2 id: a70c7ffd-6c65-47de-9ad0-0a1e8904560c
+0
-2
data/quips/a91f074f-ec62-493d-9c85-3b84881e272a less more
1 content: '"Are you boys cooking up there?" "No." "Are you making an inerocitor?" "No!"'
2 id: a91f074f-ec62-493d-9c85-3b84881e272a
+0
-4
data/quips/a957bce3-0a88-4e86-b7c7-b543921689f1 less more
1 content: 'Valentimes is serious times.
2
3 '
4 id: a957bce3-0a88-4e86-b7c7-b543921689f1
+0
-2
data/quips/a980590a-63cf-427d-9816-721760d7cbf7 less more
1 content: the sky was candy luminous
2 id: a980590a-63cf-427d-9816-721760d7cbf7
+0
-2
data/quips/aa1b494c-dd64-4976-8d87-872682e6837e less more
1 content: '"Cha mh&oacute;r is fheairrde thu iad, tha iad coltach ri cat air a dhathadh."'
2 id: aa1b494c-dd64-4976-8d87-872682e6837e
+0
-5
data/quips/aa99e473-6387-4bde-bc6c-13928163cb6b less more
1 content: 'building up enough information to infer the ghost by the hole it leaves
2 in the information
3
4 '
5 id: aa99e473-6387-4bde-bc6c-13928163cb6b
+0
-2
data/quips/ab31cac9-930c-4c95-8666-814d401400bd less more
1 content: Everything's so tiny in there, almost manageable.
2 id: ab31cac9-930c-4c95-8666-814d401400bd
+0
-2
data/quips/ad478e87-5215-4c0f-8e2b-fa1c5943c409 less more
1 content: "\"\\*Bob Belcher voice\\* I love you but you\u2019re all terrible\""
2 id: ad478e87-5215-4c0f-8e2b-fa1c5943c409
+0
-2
data/quips/ae4be104-fa5f-4c0b-a4e1-7d992206c540 less more
1 content: "(\u256F\xB0\u25A1\xB0\uFF09\u256F\uFE35 \u214B\u200B"
2 id: ae4be104-fa5f-4c0b-a4e1-7d992206c540
+0
-2
data/quips/ae796ca0-7677-4ec3-94af-340f9f093dad less more
1 content: I cut people open to find out where their dreams live.
2 id: ae796ca0-7677-4ec3-94af-340f9f093dad
+0
-2
data/quips/aefd55db-da39-4590-a79b-9a6ae4288c33 less more
1 content: Sometimes she is a cat in the dark and other times she is the darkness.
2 id: aefd55db-da39-4590-a79b-9a6ae4288c33
+0
-4
data/quips/b01eee46-1d82-4a34-b9c7-716c84e78a81 less more
1 content: 'noot noot
2
3 '
4 id: b01eee46-1d82-4a34-b9c7-716c84e78a81
+0
-2
data/quips/b06cb293-db05-4024-8b01-dd0246756c78 less more
1 content: I was late to class struggle again today.
2 id: b06cb293-db05-4024-8b01-dd0246756c78
+0
-3
data/quips/b076539a-cb7a-400a-bd81-137389df5319 less more
1 content: They're like the people chained up in the cave in the allegory of the people
2 in the cave by the Greek guy.
3 id: b076539a-cb7a-400a-bd81-137389df5319
+0
-4
data/quips/b3c3c893-5f8a-45d0-8d86-d69e002737ed less more
1 content: 'Beats me, man. Beats me why most dudes suck. Sure as hell ain''t my scene.
2
3 '
4 id: b3c3c893-5f8a-45d0-8d86-d69e002737ed
+0
-4
data/quips/b4786093-198c-4646-9ceb-71707d0a99ac less more
1 content: '"was frankenberry the name of the monster or the scientist"
2
3 '
4 id: b4786093-198c-4646-9ceb-71707d0a99ac
+0
-2
data/quips/b4ce7422-d97e-4c7b-8b72-73f47e13fb90 less more
1 content: Molecules? In my day, we only had atoms!
2 id: b4ce7422-d97e-4c7b-8b72-73f47e13fb90
+0
-2
data/quips/b5cb18e6-7237-4727-998c-60088005c33b less more
1 content: MIXED BERRY SOCIAL ANXIETY DISORDER
2 id: b5cb18e6-7237-4727-998c-60088005c33b
+0
-2
data/quips/b70587a8-3687-47c5-9a1a-4ddb1ff6213c less more
1 content: how are you doing I'm doing angry
2 id: b70587a8-3687-47c5-9a1a-4ddb1ff6213c
+0
-2
data/quips/b7206f5c-6316-47aa-91cd-2bbccf2c96d3 less more
1 content: '"The Lord works in mysterious, convoluted, and intensely ineffective ways."'
2 id: b7206f5c-6316-47aa-91cd-2bbccf2c96d3
+0
-2
data/quips/b79d66db-4231-4866-bdfc-5bb6150ce228 less more
1 content: At the Consortium for Slower-Than-Light Travel...
2 id: b79d66db-4231-4866-bdfc-5bb6150ce228
+0
-2
data/quips/b802387a-37be-49e6-b6f9-ddfb3a85fcb6 less more
1 content: My thing is to work more than the others to show them how useless they are.
2 id: b802387a-37be-49e6-b6f9-ddfb3a85fcb6
+0
-2
data/quips/b8b3eddf-8183-4c92-924f-8a08e52d36e0 less more
1 content: Drink alcohol. Quite a bit. Mostly bourbon.
2 id: b8b3eddf-8183-4c92-924f-8a08e52d36e0
+0
-4
data/quips/b8fd9a38-0bd9-4c8e-ab27-7412a34a7c27 less more
1 content: "\"My name is Ozymandias, king of kings: Look on my works, ye Mighty, and\
2 \ remember to like, comment and subscribe if you\u2019d like to see more works\
3 \ like these!\""
4 id: b8fd9a38-0bd9-4c8e-ab27-7412a34a7c27
+0
-3
data/quips/b90d593f-1a80-4e55-9d04-dc76bf6ee3a3 less more
1 content: Guns don't kill people. It's impossible to be killed by a gun. We are all
2 immune to bullets and it's a miracle.
3 id: b90d593f-1a80-4e55-9d04-dc76bf6ee3a3
+0
-2
data/quips/b9271202-5737-41f1-a085-52572fd793ec less more
1 content: '...your web browser is Ronald Reagan.'
2 id: b9271202-5737-41f1-a085-52572fd793ec
+0
-5
data/quips/b9c4a7a2-c4f9-427e-b851-4aae11908438 less more
1 content: 'Imagine a boot stamping on a human face a whole buncha times, like, a whole
2 buncha times... At least five times
3
4 '
5 id: b9c4a7a2-c4f9-427e-b851-4aae11908438
+0
-4
data/quips/ba844cfc-8b44-4b6a-88de-67e7e70726fb less more
1 content: 'I guess you could say I''m the Michael Jordan of crying in the shower
2
3 '
4 id: ba844cfc-8b44-4b6a-88de-67e7e70726fb
+0
-5
data/quips/bacf3a85-6d18-4907-82c8-d9a13301a9b3 less more
1 content: Today a young man on acid realized that all matter is merely energy condensed
2 to a slow vibration, that we are all one consciousness experiencing itself subjectively,
3 there is no such thing as death, life is only a dream, and we are the imagination
4 of ourselves. Here's Tom with the weather.
5 id: bacf3a85-6d18-4907-82c8-d9a13301a9b3
+0
-3
data/quips/bb9e0614-46a0-47e8-9857-37f883bcd2e8 less more
1 content: And yea, though I walk through the valley of the shadow of death, I will
2 fear no evil, for I am the baddest sonovabitch in the valley.
3 id: bb9e0614-46a0-47e8-9857-37f883bcd2e8
+0
-2
data/quips/bdc8d6bd-a691-40b6-9120-68b8c7893866 less more
1 content: Can I give you some fucking fruit juice?
2 id: bdc8d6bd-a691-40b6-9120-68b8c7893866
+0
-2
data/quips/be61f81e-de71-4368-bf96-6e148a7e5d5f less more
1 content: endless digital now
2 id: be61f81e-de71-4368-bf96-6e148a7e5d5f
+0
-4
data/quips/bed96fe6-bd46-4d32-8c5f-30866ad91b7e less more
1 content: 'YOU CAUSED THIS SOMEHOW. SOMETHING YOU DID ON THE INTERNET.
2
3 '
4 id: bed96fe6-bd46-4d32-8c5f-30866ad91b7e
+0
-3
data/quips/bf45dcdf-e5ff-479f-b20d-fa152c66b6f2 less more
1 content: My grandparents went to a planet with no bilateral symmetry, and all I got
2 was this lousy F-shirt.
3 id: bf45dcdf-e5ff-479f-b20d-fa152c66b6f2
+0
-2
data/quips/bf663733-2e2c-4071-b315-c0a31e63c843 less more
1 content: Pimpin' ain't easy, but it's necessary.
2 id: bf663733-2e2c-4071-b315-c0a31e63c843
+0
-3
data/quips/bf7e649a-b929-4dc6-aded-cb9a950ebfff less more
1 content: '"i''m not racist, but, *cranes neck to see if anyone''s around. keeps craning.
2 head unscrews entirely. out of the hole pour jewels & mysteries*"'
3 id: bf7e649a-b929-4dc6-aded-cb9a950ebfff
+0
-3
data/quips/bfb5b593-c631-4c20-a5ec-a4899f5912f2 less more
1 content: '"Ya don''t sell yer chickens before they hatch." "That''s... you do...
2 do that. It''s a whole... it''s a big thing."'
3 id: bfb5b593-c631-4c20-a5ec-a4899f5912f2
+0
-2
data/quips/c03f0a32-203d-4954-81c2-258e12535e1c less more
1 content: In Pug Davis, no one can hear you Pug Davis.
2 id: c03f0a32-203d-4954-81c2-258e12535e1c
+0
-4
data/quips/c0d5e03e-d976-4aa4-ac23-55a24c2f0b94 less more
1 content: 'Seriously man Carolus Linnaeus would classify this as Shitty
2
3 '
4 id: c0d5e03e-d976-4aa4-ac23-55a24c2f0b94
+0
-2
data/quips/c163c850-d265-41c4-ad42-680433c03bec less more
1 content: I WOULD DESCRIBE MYSELF AS IMPLACABLE AND STRANGE.
2 id: c163c850-d265-41c4-ad42-680433c03bec
+0
-3
data/quips/c22c3d70-87f4-41cf-9184-2c69153762a1 less more
1 content: 'I detest life-insurance agents: they always argue that I shall some day
2 die, which is not so.'
3 id: c22c3d70-87f4-41cf-9184-2c69153762a1
+0
-4
data/quips/c39ceb1e-2c1c-4579-a545-16dd7657b8fc less more
1 content: 'bears see things pretty much the way they are
2
3 '
4 id: c39ceb1e-2c1c-4579-a545-16dd7657b8fc
+0
-2
data/quips/c5054959-c4d6-4c54-81e9-b5f32b829303 less more
1 content: We've both said a lot of things you're going to regret.
2 id: c5054959-c4d6-4c54-81e9-b5f32b829303
+0
-3
data/quips/c5387daa-f76d-4067-80ee-8b51f83f5c7a less more
1 content: \*encounters the real world\* ugh god all this diversity for the sake of
2 diversity
3 id: c5387daa-f76d-4067-80ee-8b51f83f5c7a
+0
-2
data/quips/c5b4300c-fbb1-4d93-9413-9a784d7edaff less more
1 content: I'd like to sail a ship into the sun.
2 id: c5b4300c-fbb1-4d93-9413-9a784d7edaff
+0
-4
data/quips/c78a8877-d09b-459b-9d04-2b4cfd3529c6 less more
1 content: 'just goes to show you can''t trust people who aren''t you
2
3 '
4 id: c78a8877-d09b-459b-9d04-2b4cfd3529c6
+0
-2
data/quips/c82ad3c7-5bdf-4e6c-8b5e-f65679e9c1eb less more
1 content: Oh, did NPR just interview TED?
2 id: c82ad3c7-5bdf-4e6c-8b5e-f65679e9c1eb
+0
-4
data/quips/c8a71cee-7f90-4894-8823-943adcf32f53 less more
1 content: 'haters gonna make some good points
2
3 '
4 id: c8a71cee-7f90-4894-8823-943adcf32f53
+0
-3
data/quips/c90bcd2f-ca97-4324-b51d-14c002d73027 less more
1 content: '...digging too deep into the spaces between sanity, madness, and radically
2 bad taste.'
3 id: c90bcd2f-ca97-4324-b51d-14c002d73027
+0
-4
data/quips/c95417fb-f7c4-4af9-b217-013410c70efb less more
1 content: 'I just dropped your mic. Dropped all the mics.
2
3 '
4 id: c95417fb-f7c4-4af9-b217-013410c70efb
+0
-2
data/quips/ca9b1999-b019-4d9a-aa0a-acc39baf2aae less more
1 content: 'lifehack: piss off everyone who shows you affection'
2 id: ca9b1999-b019-4d9a-aa0a-acc39baf2aae
+0
-3
data/quips/caa65dae-f1d9-473f-b457-63296ef7fc7e less more
1 content: the solar orientation of the number seven is more than death but less than
2 total eradication
3 id: caa65dae-f1d9-473f-b457-63296ef7fc7e
+0
-4
data/quips/cb000660-d71f-475d-9aca-6c4dd0b84985 less more
1 content: 'Fire: Too Complex
2
3 '
4 id: cb000660-d71f-475d-9aca-6c4dd0b84985
+0
-3
data/quips/cb012869-3d96-4749-9f1c-b6a6638e6fd1 less more
1 content: Everything happens for a reason, you know. Well, everything except you that
2 is.
3 id: cb012869-3d96-4749-9f1c-b6a6638e6fd1
+0
-3
data/quips/cb3582c9-e4ca-4c68-a9fb-eb9e2aa75b85 less more
1 content: '"I have to go hand in my special report on how you''re going to die alone.
2 Thanks for all the evidence."'
3 id: cb3582c9-e4ca-4c68-a9fb-eb9e2aa75b85
+0
-2
data/quips/cb5e81fe-383e-4568-9c5c-cf8d63864af4 less more
1 content: I am not slow. I am just not very fast and I am not sure I want to get there.
2 id: cb5e81fe-383e-4568-9c5c-cf8d63864af4
+0
-3
data/quips/ce88d7b5-3c8d-4934-993b-389b4614e4df less more
1 content: Idealists have a hard time understanding that the universe doesn't give a
2 fuck what they believe in.
3 id: ce88d7b5-3c8d-4934-993b-389b4614e4df
+0
-2
data/quips/ce98f8ef-3921-4643-91b6-3559e8c77b35 less more
1 content: I can't see anything else anymore. My eyes are filled with gods.
2 id: ce98f8ef-3921-4643-91b6-3559e8c77b35
+0
-2
data/quips/cfd63597-44b5-45bf-ad8a-2ca93fb0a363 less more
1 content: I love you, which is why I'm not going to eat you. For now.
2 id: cfd63597-44b5-45bf-ad8a-2ca93fb0a363
+0
-3
data/quips/d00645b7-d528-4531-a43c-b3a4432dae0c less more
1 content: 'Don''t mistake my attitude for humility: my position is that everything
2 on earth is equally unimportant.'
3 id: d00645b7-d528-4531-a43c-b3a4432dae0c
+0
-2
data/quips/d08d3095-741e-4197-8c70-9035165a0cf6 less more
1 content: I am the milkman. My milk is delicious.
2 id: d08d3095-741e-4197-8c70-9035165a0cf6
+0
-5
data/quips/d17174af-afc2-41fc-a5bb-dc010f5a354c less more
1 content: 'If you think that by threatening me you can get me to do what you want...
2 well, that''s where you''re right.
3
4 '
5 id: d17174af-afc2-41fc-a5bb-dc010f5a354c
+0
-2
data/quips/d184250d-4082-4847-8b17-bd8f0592412d less more
1 content: It's not a penis. It's a tentacle. Lovecraft is screaming.
2 id: d184250d-4082-4847-8b17-bd8f0592412d
+0
-3
data/quips/d212019c-c3cb-4c93-a345-191883f088ba less more
1 content: '"Also, can you change things so that the variable lexical-scope is itself
2 lexically scoped? Because at that point I think you''ll be able to taste colors."'
3 id: d212019c-c3cb-4c93-a345-191883f088ba
+0
-4
data/quips/d312f2ab-2dba-49c7-a109-3ba3b9ab55ff less more
1 content: '"Point is, Max, we live in a world of similar things. Lots of stuff is the
2 same as other stuff. I forget where I was going with this but the takeaway is your
3 parents don''t love each other."'
4 id: d312f2ab-2dba-49c7-a109-3ba3b9ab55ff
+0
-2
data/quips/d3224ca5-107b-41e4-9ea7-768c9af65273 less more
1 content: Lenny Bruce was not afraid.
2 id: d3224ca5-107b-41e4-9ea7-768c9af65273
+0
-4
data/quips/d3b976e3-bc93-4b12-ac65-3570d5e868f7 less more
1 content: 'Which is to say: who is to say.
2
3 '
4 id: d3b976e3-bc93-4b12-ac65-3570d5e868f7
+0
-2
data/quips/d3f83153-f31b-48dd-8783-afde75001528 less more
1 content: I've got good news. That gum you like is going to come back in style.
2 id: d3f83153-f31b-48dd-8783-afde75001528
+0
-4
data/quips/d45e04f4-5258-450b-8a50-c8c8900f99aa less more
1 content: 'made with: bitter struggle, blind faith, licorice and sugar
2
3 '
4 id: d45e04f4-5258-450b-8a50-c8c8900f99aa
+0
-2
data/quips/d6a48942-202b-4e91-b896-0e343e4660ff less more
1 content: THAT'S WHAT HAPPENS WHEN COMPUTER
2 id: d6a48942-202b-4e91-b896-0e343e4660ff
+0
-2
data/quips/d6ba2e13-650a-470e-8f3c-63e89fc6920f less more
1 content: Your advanced intelligence is no match for our puny weapons!
2 id: d6ba2e13-650a-470e-8f3c-63e89fc6920f
+0
-3
data/quips/d72a474e-1eb4-40cc-ac96-a51ced67e220 less more
1 content: In the words of Archimedes, give me a long enough lever and a place to rest
2 it or I will kill one hostage every hour.
3 id: d72a474e-1eb4-40cc-ac96-a51ced67e220
+0
-2
data/quips/d73836f1-a7d8-437f-b0c9-e3a70c91230d less more
1 content: Give my regrets to god.
2 id: d73836f1-a7d8-437f-b0c9-e3a70c91230d
+0
-4
data/quips/d7b9c21b-afb2-4d56-a3e4-f64f079bc958 less more
1 content: '"In general, we can think of data as collections of bits and the representation
2 of data as defined by some collection of selectors and constructors. This is the
3 law of the LORD"'
4 id: d7b9c21b-afb2-4d56-a3e4-f64f079bc958
+0
-3
data/quips/d7e7393d-a097-41fc-8afa-da061aa551fd less more
1 content: the library of the bog kingdom is a cave what has fat horses scribbled on
2 the walls
3 id: d7e7393d-a097-41fc-8afa-da061aa551fd
+0
-2
data/quips/d8192df1-dddf-43b7-8b30-56c1a62f4003 less more
1 content: TANJ
2 id: d8192df1-dddf-43b7-8b30-56c1a62f4003
+0
-2
data/quips/d89e71c5-6716-4c89-b757-a8643a1455d9 less more
1 content: '"i only stare into the abyss for the commercials"'
2 id: d89e71c5-6716-4c89-b757-a8643a1455d9
+0
-4
data/quips/d92142f0-1b17-47e1-a5f0-14334558b206 less more
1 content: 'I KICK YOUR FACE
2
3 '
4 id: d92142f0-1b17-47e1-a5f0-14334558b206
+0
-2
data/quips/da63f49d-24b4-49fa-a4a4-1491b27c54cc less more
1 content: 'Rule number one: don''t fuck with librarians.'
2 id: da63f49d-24b4-49fa-a4a4-1491b27c54cc
+0
-3
data/quips/daacb3b5-f26f-4591-946d-8194856d35fb less more
1 content: Andrey Semyonovich went over to the table and took a drink from the cup of
2 blackened water. And Andrey Semyonovich's soul turned lucent.
3 id: daacb3b5-f26f-4591-946d-8194856d35fb
+0
-2
data/quips/dae833a8-8945-4a3c-81be-1dfc7bd390dd less more
1 content: Plastic melts but souls only wear away.
2 id: dae833a8-8945-4a3c-81be-1dfc7bd390dd
+0
-2
data/quips/db30dbea-d771-4f4c-9b6c-444163838c9e less more
1 content: Too big too fail. TBTF. It's the rich man's YOLO.
2 id: db30dbea-d771-4f4c-9b6c-444163838c9e
+0
-2
data/quips/db5a7d1b-b96c-434b-8e72-816a1382a58f less more
1 content: '"CAN I GHOSTNAP IN YR BOOTS / WHEN YR NOT WEARING THEM?"'
2 id: db5a7d1b-b96c-434b-8e72-816a1382a58f
+0
-3
data/quips/deb90ba1-a00a-4f57-adbe-ed08e3d49649 less more
1 content: '"everyone who died and was killed on my quest to get really good hair and
2 fashion deserved it and i dont care"'
3 id: deb90ba1-a00a-4f57-adbe-ed08e3d49649
+0
-5
data/quips/e09a89d2-41cf-4991-8ba2-3c2c1246d800 less more
1 content: '"Wow, that''s powerful the way you used words like ''fury'' and delivered
2 it in an envelope of boilerplate idiocy"
3
4 '
5 id: e09a89d2-41cf-4991-8ba2-3c2c1246d800
+0
-3
data/quips/e0a0a17e-11ba-46ea-a4d0-822270b09650 less more
1 content: I calculated the odds of this succeeding versus the odds I was doing something
2 incredibly stupid... and I went ahead anyway.
3 id: e0a0a17e-11ba-46ea-a4d0-822270b09650
+0
-2
data/quips/e0cacd5f-9f98-4f22-97d8-5aeeac1339ac less more
1 content: Last night I traded my soul's innermost for some pickled fish.
2 id: e0cacd5f-9f98-4f22-97d8-5aeeac1339ac
+0
-3
data/quips/e278b361-3815-46fa-b443-f44aa3bfc7f9 less more
1 content: ah, well, in terms of politics, you see, my views are *lights us both on
2 fire* well that's basically it
3 id: e278b361-3815-46fa-b443-f44aa3bfc7f9
+0
-4
data/quips/e28e7e9d-9d8c-4055-bf08-2ddde16c099a less more
1 content: The dog who is so angry he cannot move. He cannot eat. He cannot sleep. He
2 can just barely growl. Bound so tightly with tension and anger, he approaches the
3 state of rigor mortis.
4 id: e28e7e9d-9d8c-4055-bf08-2ddde16c099a
+0
-3
data/quips/e2911d13-7e90-4ce2-9209-3fa11a1d8702 less more
1 content: Electricity can only be replenished by whisky. This is actual physics. Don't
2 argue with me, I am a doktor.
3 id: e2911d13-7e90-4ce2-9209-3fa11a1d8702
+0
-2
data/quips/e3d99eba-4136-42b5-8994-38a231dacfee less more
1 content: THINK OF ME AS THE DEEPAK CHOPACABRA
2 id: e3d99eba-4136-42b5-8994-38a231dacfee
+0
-3
data/quips/e5b2e165-43fc-454c-93e7-667545dd51a2 less more
1 content: he is unholy radiance destroying all enlightenment, HTML tags leaking from
2 your eyes like liquid pain
3 id: e5b2e165-43fc-454c-93e7-667545dd51a2
+0
-4
data/quips/e6058589-3ae5-49d9-b147-ac21b81ea160 less more
1 content: '[cetacean needed]
2
3 '
4 id: e6058589-3ae5-49d9-b147-ac21b81ea160
+0
-2
data/quips/e61b6461-f38a-4372-aa9a-0d3b074f2f3a less more
1 content: '"Previously: The kids are attacked with imprecations and fruit."'
2 id: e61b6461-f38a-4372-aa9a-0d3b074f2f3a
+0
-2
data/quips/e6c204ef-65d9-4b11-94a6-caa77991be70 less more
1 content: ja tvoj robotnik
2 id: e6c204ef-65d9-4b11-94a6-caa77991be70
+0
-4
data/quips/e72b8832-52a0-4c4d-adba-a6f34ab04fbb less more
1 content: 'EVERYTHING''S AN ALTAR IF YOU PUT ENOUGH DEAD STUFF ON IT
2
3 '
4 id: e72b8832-52a0-4c4d-adba-a6f34ab04fbb
+0
-2
data/quips/e89b74c6-a117-4265-b9a6-7cdb92f66bc4 less more
1 content: strange times call for strange words
2 id: e89b74c6-a117-4265-b9a6-7cdb92f66bc4
+0
-2
data/quips/e89cfaf7-41d6-43a5-86f8-732b41f9da68 less more
1 content: Oh, right! Thanks, Mr. I-Know-What-Day-It-Is Fish.
2 id: e89cfaf7-41d6-43a5-86f8-732b41f9da68
+0
-3
data/quips/e9a56039-8a1c-4543-95ab-c91f991bc798 less more
1 content: GATHER IN A PILE ALL THE FUTURES YOU CANNOT ACCEPT AND THEN BOLDLY STRIDE
2 IN THE OPPOSITE DIRECTION
3 id: e9a56039-8a1c-4543-95ab-c91f991bc798
+0
-2
data/quips/e9ffca64-f686-404e-8335-1cd971e99768 less more
1 content: "\u017Em\xE1dor kui thakh\xE1drok\n"
2 id: e9ffca64-f686-404e-8335-1cd971e99768
+0
-2
data/quips/eb593f5d-65ed-40f1-96cc-787d50889cf9 less more
1 content: leave the blueprint / i'll need that for the end of time
2 id: eb593f5d-65ed-40f1-96cc-787d50889cf9
+0
-2
data/quips/ebf4526a-4713-42d0-a7fe-357bc49306aa less more
1 content: You had me at annihilation.
2 id: ebf4526a-4713-42d0-a7fe-357bc49306aa
+0
-3
data/quips/ed31cde6-a83a-4761-a31b-2d2790beca17 less more
1 content: '...pharmacist gangs that fight with those knives they use to separate pills
2 / and I''m gonna take over the pharmacies when they''re gone'
3 id: ed31cde6-a83a-4761-a31b-2d2790beca17
+0
-5
data/quips/ed7f7974-b69f-409c-a9ec-5f8ecc7f0cc6 less more
1 content: 'the good thing about camping is you can see every star in the universe the
2 bad thing about camping is fish have eyes and theyre filled with curses
3
4 '
5 id: ed7f7974-b69f-409c-a9ec-5f8ecc7f0cc6
+0
-2
data/quips/ed964d13-5d90-475b-9247-112c7854afc5 less more
1 content: It may be futile, but it's not pointless.
2 id: ed964d13-5d90-475b-9247-112c7854afc5
+0
-3
data/quips/ee2189a3-17c0-485a-b98e-b57af95ceebc less more
1 content: Life is truly quite absurd, but with a little effort we could make it completely
2 ridiculous.
3 id: ee2189a3-17c0-485a-b98e-b57af95ceebc
+0
-3
data/quips/f0000a33-71e9-4ec1-93f8-f465a549d5aa less more
1 content: If you are sitting, just sit. If you are walking, just walk. Above all, don't
2 wobble.
3 id: f0000a33-71e9-4ec1-93f8-f465a549d5aa
+0
-2
data/quips/f002cf6c-0889-4999-9d12-13951a43d814 less more
1 content: LIVE SINGLES IN YOUR AREA CANNOT BE CAPTURED ON FILM.
2 id: f002cf6c-0889-4999-9d12-13951a43d814
+0
-2
data/quips/f017de6e-c306-44eb-8905-5d8fb0a6928f less more
1 content: man dont put me on speaker crab
2 id: f017de6e-c306-44eb-8905-5d8fb0a6928f
+0
-2
data/quips/f370634b-0ccb-4c83-96f3-7341f77519db less more
1 content: Slithering isn't just for snakes any more.
2 id: f370634b-0ccb-4c83-96f3-7341f77519db
+0
-2
data/quips/f3fbfbbc-1c9f-4519-827d-1f53790f0555 less more
1 content: '"Such a thing! Such an octopus of a thing!"'
2 id: f3fbfbbc-1c9f-4519-827d-1f53790f0555
+0
-5
data/quips/f4f267d0-a7a7-43ec-9ccd-d73fb063854a less more
1 content: 'you have barely any science and your husband is trapped in space / i''ll
2 just take these two children and those sheets over there
3
4 '
5 id: f4f267d0-a7a7-43ec-9ccd-d73fb063854a
+0
-2
data/quips/f4fcced5-2e39-4904-97de-57a7be7fe3f7 less more
1 content: I was prayin' to the Lord for some fun but I guess he didn't have some
2 id: f4fcced5-2e39-4904-97de-57a7be7fe3f7
+0
-2
data/quips/f68ad453-f746-4aba-8fbe-d863941e62e6 less more
1 content: make install; not war
2 id: f68ad453-f746-4aba-8fbe-d863941e62e6
+0
-2
data/quips/f985894d-6969-4a3f-a4e8-537aabc41ecb less more
1 content: There's someone in my head but it's not me
2 id: f985894d-6969-4a3f-a4e8-537aabc41ecb
+0
-2
data/quips/f9abc306-87c4-43e2-a20b-e5ba72d00def less more
1 content: '"ok well snausages notwithstanding this is bullshit"'
2 id: f9abc306-87c4-43e2-a20b-e5ba72d00def
+0
-3
data/quips/fbbe228f-cf7a-4316-92f5-03f5863c6d92 less more
1 content: "what if you named one... what if you named one 'BIG WEED CITY'\r\n\r\nwhat\
2 \ if you did that"
3 id: fbbe228f-cf7a-4316-92f5-03f5863c6d92
+0
-4
data/quips/fc9608b1-d815-4889-8d6d-37d3eaa62052 less more
1 content: 'eye of all
2
3 '
4 id: fc9608b1-d815-4889-8d6d-37d3eaa62052
+0
-2
data/quips/fd2303c2-d4ef-4f47-b4d2-0244291c06dd less more
1 content: If it's not an airplane, then what is it?
2 id: fd2303c2-d4ef-4f47-b4d2-0244291c06dd
+0
-4
data/quips/fd41bf91-8a04-4a19-bca9-d444bf579995 less more
1 content: 'You can lead a horse to water, but you can''t prove that anything is real.
2
3 '
4 id: fd41bf91-8a04-4a19-bca9-d444bf579995
+0
-2
data/quips/fd8ddc6d-81fd-41d1-9eb0-db7e63607d5b less more
1 content: We will create and destroy ten art movements in ten years.
2 id: fd8ddc6d-81fd-41d1-9eb0-db7e63607d5b
+0
-4
data/quips/fe77f5ba-4a09-495d-9419-d7e2f6e4fa8b less more
1 content: 'Somewhere, over the rainbow, there''s the cold dark of space.
2
3 '
4 id: fe77f5ba-4a09-495d-9419-d7e2f6e4fa8b
+0
-2
data/quips/fe9d1c66-7b6c-4bb8-a7f4-f459ba92f187 less more
1 content: '"I am a secret wizard. Behold my robes." Behold robes? Y/N'
2 id: fe9d1c66-7b6c-4bb8-a7f4-f459ba92f187
+0
-3
data/quips/fe9f5d95-6e49-49f4-b8d3-56c67b0c686b less more
1 content: '"There''s a monster at the end of this book. It''s the blank page where
2 the story ends and you''re left alone with yourself and your thoughts."'
3 id: fe9f5d95-6e49-49f4-b8d3-56c67b0c686b
+0
-2
data/quips/fea67f78-9bd9-4230-b88f-28d4d5043313 less more
1 content: Curiosity killed the cat; loathsome rituals BROUGHT IT BACK.
2 id: fea67f78-9bd9-4230-b88f-28d4d5043313
+0
-2
data/quips/fed19794-e94d-43e9-9c82-980cf9ca00fc less more
1 content: Does nobody understand?
2 id: fed19794-e94d-43e9-9c82-980cf9ca00fc
+0
-2
data/quips/fee8f37f-1547-417b-8050-554477b86eaf less more
1 content: adramin lekem las
2 id: fee8f37f-1547-417b-8050-554477b86eaf
+0
-4
data/quotes/00392884-4667-4e08-a9c8-9600ca60735b less more
1 author: Jamais Cascio
2 content: 'Conventional futurists are the Michael Bays of the intellectual world: what
3 they produce can be spectacular and amusing, but is ultimately hollow and depressing.'
4 id: 00392884-4667-4e08-a9c8-9600ca60735b
+0
-12
data/quotes/0044d1f5-6def-4e8d-87d9-ee904e9ca668 less more
1 author: Brian Eno
2 content: "Whatever you now find weird, ugly, uncomfortable and nasty about a new medium\
3 \ will surely become its signature. CD distortion, the jitteriness of digital video,\
4 \ the crap sound of 8-bit\u2014all of these will be cherished and emulated as soon\
5 \ as they can be avoided. It's the sound of failure: so much modern art is the sound\
6 \ of things going out of control, of a medium pushing to its limits and breaking\
7 \ apart. The distorted guitar sound is the sound of something too loud for the medium\
8 \ supposed to carry it. The blues singer with the cracked voice is the sound of\
9 \ an emotional cry too powerful for the throat that releases it. The excitement\
10 \ of grainy film, of bleached-out black and white, is the excitement of witnessing\
11 \ events too momentous for the medium assigned to record them."
12 id: 0044d1f5-6def-4e8d-87d9-ee904e9ca668
+0
-7
data/quotes/005948f5-6225-4692-b1dc-8d3acd7d1444 less more
1 author: Hal Summers, "My Old Cat"
2 content: 'My old cat is dead / Who would butt me with his head. / He had the sleekest
3 fur, / He had the blackest purr, / Always gentle with us / Was this black puss,
4 / But when I found him today / Stiff and cold where he lay, / His look was a lion''s,
5 / Full of rage, defiance: / O! he would not pretend / That what came was a friend
6 / But met it in pure hate. / Well died, my old cat.'
7 id: 005948f5-6225-4692-b1dc-8d3acd7d1444
+0
-7
data/quotes/012ddd98-6d95-4f87-9bc8-efebe522cc22 less more
1 author: C.S. Lewis
2 content: '...there is no escape from [the gods] into sleep or madness, for they can
3 pursue you into them with dreams. Indeed, you are then most at their mercy. The
4 nearest thing we have to a defence against them (but there is no real defence) is
5 to be very wide awake and sober and hard at work, to hear no music, never to look
6 at earth or sky, and (above all) to love no one.'
7 id: 012ddd98-6d95-4f87-9bc8-efebe522cc22
+0
-4
data/quotes/01f195ea-7c04-4621-9c02-43d28a47d327 less more
1 author: Ernest Hemingway, *A Farewell to Arms*
2 content: Oh, darling, you will be good to me, won't you? Because we're going to have
3 a strange life.
4 id: 01f195ea-7c04-4621-9c02-43d28a47d327
+0
-3
data/quotes/020ab888-a45f-47cd-aff8-0728727b4e4c less more
1 author: Tom Taylor
2 content: It's 2011, and I have no idea what anything is or does anymore.
3 id: 020ab888-a45f-47cd-aff8-0728727b4e4c
+0
-7
data/quotes/02973078-d977-4de4-9eca-a08274be08b5 less more
1 author: Jacques Lacan
2 content: I am not pessimistic. Nothing is going to happen. For the simple reason that
3 man is a good-for-nothing, not even capable of destroying himself. Personally, I
4 would find the idea of an all-encompassing plague, produced by man, rather marvellous.
5 It would be the proof that he had managed to do something with his own hands and
6 head, without divine or natural intervention.
7 id: 02973078-d977-4de4-9eca-a08274be08b5
+0
-5
data/quotes/041cfe60-45af-446b-8d35-db41c80c0336 less more
1 author: Haruki Murakami
2 content: But I didn't understand then. That I could hurt somebody so badly she would
3 never recover. That a person can, just by living, damage another human being beyond
4 repair.
5 id: 041cfe60-45af-446b-8d35-db41c80c0336
+0
-7
data/quotes/04b3d0a4-c1f5-4f7d-8c96-273794373e6e less more
1 author: "Stanis\u0142aw Lem's The Cyberiad"
2 content: "Not far from here, by a white sun, behind a green star, lived the Steelypips,\
3 \ illustrious, industrious, and they hadn't a care; no spats in their vats, no rules,\
4 \ no schools, no gloom, no evil influence of the moon, no trouble from matter or\
5 \ antimatter\u2014for they had a machine, a dream of a machine, with springs and\
6 \ gears and perfect in every respect."
7 id: 04b3d0a4-c1f5-4f7d-8c96-273794373e6e
+0
-3
data/quotes/04c467f7-4b94-47a8-b76b-d6d7902ed22f less more
1 author: Joss Whedon
2 content: Very occasionally, if you really pay attention, life doesn't suck.
3 id: 04c467f7-4b94-47a8-b76b-d6d7902ed22f
+0
-4
data/quotes/04d32abd-8848-480e-b1b7-90674d00013c less more
1 author: Arthur Machen
2 content: It was better, he thought, to fail in attempting exquisite things than to
3 succeed in the department of the utterly contemptible.
4 id: 04d32abd-8848-480e-b1b7-90674d00013c
+0
-7
data/quotes/053c0f2c-c936-468d-99fa-35e43bc4bc9e less more
1 author: Billy Collins
2 content: I think all young writers make this mistake, that ... they believe in self-expression,
3 which is highly overrated, I think. When I was growing up, self-expression was thought
4 of as an affectation of some kind, as well, [] said "When I was growing up, we had
5 another name for low self-esteem. It was called 'humility.' It was actually a virtue
6 and not a psychic dysfunction."
7 id: 053c0f2c-c936-468d-99fa-35e43bc4bc9e
+0
-4
data/quotes/05855d7f-88c0-46a8-af4c-51dff012ca1f less more
1 author: Karl Lagerfeld
2 content: Sweatpants are a sign of defeat. You lost control of your life so you bought
3 some sweatpants.
4 id: 05855d7f-88c0-46a8-af4c-51dff012ca1f
+0
-3
data/quotes/05ea0f85-fdf2-4ff0-ab41-2ef156ab428a less more
1 author: Hayao Miyazaki
2 content: One's view of the world and one's technique are indivisible.
3 id: 05ea0f85-fdf2-4ff0-ab41-2ef156ab428a
+0
-3
data/quotes/061ad138-e808-4911-a733-75b6b42d4dc6 less more
1 author: Friederich Nietzsche
2 content: I am afraid we are not rid of God because we still have faith in grammar.
3 id: 061ad138-e808-4911-a733-75b6b42d4dc6
+0
-5
data/quotes/06bf8935-1a8e-46e7-9d0a-49633bfcacdb less more
1 author: Thomas Sowell
2 content: The problem isn't that Johnny can't read. The problem isn't even that Johnny
3 can't think. The problem is that Johnny doesn't know what thinking is; he confuses
4 it with feeling.
5 id: 06bf8935-1a8e-46e7-9d0a-49633bfcacdb
+0
-5
data/quotes/06ddf74d-4eb3-49c9-b547-9472140e6b2f less more
1 author: Andrew Plotkin
2 content: Ki is, of course, mystical bullshit. That's why it works so well, both as
3 a teaching idiom and a tool of practice in martial arts. It's as nonexistent as
4 charm, leadership, or acting. Humans are all about bullshit.
5 id: 06ddf74d-4eb3-49c9-b547-9472140e6b2f
+0
-15
data/quotes/06de5337-b1e2-43db-8ae6-5fe8f908b3d1 less more
1 author: M. John Harrison
2 content: "Every moment of a science fiction story must represent the triumph of writing\
3 \ over worldbuilding.\r\n\r\nWorldbuilding is dull. Worldbuilding literalises the\
4 \ urge to invent. Worldbuilding gives an unneccessary permission for acts of writing\
5 \ (indeed, for acts of reading). Worldbuilding numbs the reader's ability to fulfil\
6 \ their part of the bargain, because it believes that it has to do everything around\
7 \ here if anything is going to get done.\r\n\r\nAbove all, worldbuilding is not\
8 \ technically neccessary. It is the great clomping foot of nerdism. It is the attempt\
9 \ to exhaustively survey a place that isn't there. A good writer would never try\
10 \ to do that, even with a place that is there. It isn't possible, & if it was the\
11 \ results wouldn't be readable: they would constitute not a book but the biggest\
12 \ library ever built, a hallowed place of dedication & lifelong study. This gives\
13 \ us a clue to the psychological type of the worldbuilder & the worldbuilder's victim,\
14 \ & makes us very afraid."
15 id: 06de5337-b1e2-43db-8ae6-5fe8f908b3d1
+0
-8
data/quotes/07a33216-49e5-45df-a80f-94b89481ccad less more
1 author: 'Umberto Eco
2
3 '
4 content: 'Contact with deformity has given modern sublimity something greater, more
5 sublime than ancient beauty.
6
7 '
8 id: 07a33216-49e5-45df-a80f-94b89481ccad
+0
-6
data/quotes/07f4c950-d287-4c14-a15d-ca27821346c2 less more
1 author: Karl Marx
2 content: 'From another side: is Achilles possible with powder and lead? Or the Iliad
3 with the printing press, not to mention the printing machine? Do not the song and
4 saga of the muse necessarily come to an end with the printer''s bar, hence do not
5 the necessary conditions of epic poetry vanish?'
6 id: 07f4c950-d287-4c14-a15d-ca27821346c2
+0
-14
data/quotes/08194ec6-69e8-44b8-9894-ecda76520084 less more
1 author: Grant Morrison's Doom Patrol
2 content: '"Would you like something? Tea? Cakes? We have everything except hope. There
3 is no hope. We are shadows stumbling through the endless freezing dark of existence.
4 Empire biscuits? All is futile. We try to impose meaning on the chaos of being,
5 but there is no meaning. Fairy cakes? We cultivate a pointless optimism as our bodies
6 decay and disintegrate towards the grave. We hope for the future, but in the end
7 we come to dust. In the end, even the stars are extinguished and entropy reduces
8 everything to a valueless nullity. We cannot win. We cannot break even. We cannot
9 even stay out of the game. There is no hope. There is no escape. We are alone with
10 this endless horror."
11
12
13 "That''s okay. I like it here."'
14 id: 08194ec6-69e8-44b8-9894-ecda76520084
+0
-4
data/quotes/085755f5-5540-4e40-a87e-7b7775b05f41 less more
1 author: "Honor\xE9 de Balzac"
2 content: Many people claim coffee inspires them, but, as everybody knows, coffee only
3 makes boring people even more boring.
4 id: 085755f5-5540-4e40-a87e-7b7775b05f41
+0
-7
data/quotes/0877dc4b-341c-4700-a240-859bf70c7881 less more
1 author: "Slavoj \u017Di\u017Eek\n"
2 content: '...as soon as we renounce fiction and illusion, we lose reality itself;
3 the moment we subtract fictions from reality, reality itself loses its discursive-logical
4 consistency.
5
6 '
7 id: 0877dc4b-341c-4700-a240-859bf70c7881
+0
-6
data/quotes/089fd512-940b-4b79-8580-b4a099a9e0d3 less more
1 author: Jamie "jwz" Zawinski
2 content: There is no web site that has a UI that comes close to the lamest newsreader
3 in the world....they don't even let you do basic things like "don't show me messages
4 I've already read". It's a continual source of amazement to me (though it shouldn't
5 be) what people will settle for.
6 id: 089fd512-940b-4b79-8580-b4a099a9e0d3
+0
-3
data/quotes/08d4c60f-da6e-4823-ac4c-f3babd9b24d2 less more
1 author: W.C. Fields
2 content: I cook with wine. Sometimes I even add it to the food.
3 id: 08d4c60f-da6e-4823-ac4c-f3babd9b24d2
+0
-4
data/quotes/08fa464d-b633-41bf-a035-dbc8df2a0588 less more
1 author: Mark Twain
2 content: "I don't like to commit myself about Heaven and Hell\u2014you see, I have\
3 \ friends in both places."
4 id: 08fa464d-b633-41bf-a035-dbc8df2a0588
+0
-4
data/quotes/09034838-9f3b-4680-b1cb-1ab4c509d9d5 less more
1 author: Emma Albani
2 content: I had always loved beautiful and artistic things, though before leaving America
3 I had had a very little chance of seeing any.
4 id: 09034838-9f3b-4680-b1cb-1ab4c509d9d5
+0
-5
data/quotes/093791b6-c2ac-4cdf-a583-3de77048b8d1 less more
1 author: Frank Lloyd Wright
2 content: The scientist has marched in and taken the place of the poet. But one day
3 somebody will find the solution to the problems of the world and remember, it will
4 be a poet, not a scientist.
5 id: 093791b6-c2ac-4cdf-a583-3de77048b8d1
+0
-7
data/quotes/0a61ca16-8c1d-4d9a-a922-c5a25113ab9e less more
1 author: Umberto Eco, Foucault's Pendulum
2 content: People believe those who sell lotions that make lost hair grow back. They
3 sense instinctively that the salesman is putting together truths that don't go together,
4 that he's not being logical, that he's not speaking in good faith. But they've been
5 told that God is mysterious, unfathomable, so to them incoherence is the closest
6 thing to God. The farfetched is the closest thing to a miracle.
7 id: 0a61ca16-8c1d-4d9a-a922-c5a25113ab9e
+0
-4
data/quotes/0aee496b-b53e-4f63-9add-8dd62e6db60b less more
1 author: Frederik Pohl
2 content: Advertising reaches out to touch the fantasy part of people's lives. And,
3 you know, most people's fantasies are pretty sad.
4 id: 0aee496b-b53e-4f63-9add-8dd62e6db60b
+0
-4
data/quotes/0b1f7e40-6ec9-4ffa-98ef-372bac789159 less more
1 author: Uncyclopedia
2 content: Tremendous productivity gains can be realized with Java, particularly when
3 the work was previously done with small reptiles or amphibians.
4 id: 0b1f7e40-6ec9-4ffa-98ef-372bac789159
+0
-5
data/quotes/0b2bc791-e8e1-418a-8505-c4de76efd34a less more
1 author: Carl Sagan
2 content: The fact that some geniuses were laughed at does not imply that all who are
3 laughed at are geniuses. They laughed at Columbus, they laughed at Fulton, they
4 laughed at the Wright brothers. But they also laughed at Bozo the Clown.
5 id: 0b2bc791-e8e1-418a-8505-c4de76efd34a
+0
-4
data/quotes/0b3de5d5-f80d-42d8-b0e6-716de9938f28 less more
1 author: Murray Gell-Mann
2 content: Modern education is like being taken to the world's greatest restaurant &
3 being forced to eat the menu.
4 id: 0b3de5d5-f80d-42d8-b0e6-716de9938f28
+0
-5
data/quotes/0b74e8c1-87c6-4493-91c1-d6d3eccf40fb less more
1 author: Frank Zappa
2 content: If you wind up with a boring, miserable life because you listened to your
3 mom, your dad, your teacher, your priest, or some guy on TV telling you how to do
4 your shit, then YOU DESERVE IT.
5 id: 0b74e8c1-87c6-4493-91c1-d6d3eccf40fb
+0
-3
data/quotes/0c02c5a8-ec28-434e-8c77-198cb04f88ba less more
1 author: Matsuo Basho (attributed)
2 content: Do not seek to follow in the footsteps of the wise. Seek what they sought.
3 id: 0c02c5a8-ec28-434e-8c77-198cb04f88ba
+0
-3
data/quotes/0c0da31c-a1ca-4cc4-ae2f-3c0310b4704d less more
1 author: Jorge Luis Borges
2 content: "El f\xFAtbol es popular porque la estupidez es popular."
3 id: 0c0da31c-a1ca-4cc4-ae2f-3c0310b4704d
+0
-4
data/quotes/0c3a0ff6-de44-43a2-bb6e-4706b39e63ee less more
1 author: D. H. Lawrence
2 content: The utterance is like a spasm, naked contact with all influences at once.
3 It does not want to get anywhere. It just takes place.
4 id: 0c3a0ff6-de44-43a2-bb6e-4706b39e63ee
+0
-11
data/quotes/0d7dd04d-d0d3-44ef-9547-ae3df9a1ea1d less more
1 author: "Kimura Ky\u016Bho, *Kenjutsu Fushigi Hen*"
2 content: "\u2014 Everything written symbols can say has already passed by. They are\
3 \ like tracks left by animals.That is why the masters of meditation refuse to accept\
4 \ that writings are final. The aim is to reach true being by means of those tracks,\
5 \ those letters, those signs\u2014but reality itself is not a sign, and it leaves\
6 \ no tracks. It doesn't come to us by way of letters or words. We can go toward\
7 \ it, by following those words and letters back to what they came from. But so long\
8 \ as we are preoccupied with symbols, theories and opinions, we will fail to reach\
9 \ the principle.\r\n\r\n\u2014 But when we give up symbols and opinions, aren't\
10 \ we left in the utter nothingness of being?\r\n\r\n\u2014 Yes."
11 id: 0d7dd04d-d0d3-44ef-9547-ae3df9a1ea1d
+0
-4
data/quotes/0dafdb78-db7b-45e8-99f0-904bb11812c6 less more
1 author: Gilles Deleuze
2 content: What Foucault says is that we can only avoid death and madness if we make
3 existing into a "way", an "art".
4 id: 0dafdb78-db7b-45e8-99f0-904bb11812c6
+0
-3
data/quotes/0e046c26-685c-46ac-ab1d-95f2c44a3317 less more
1 author: Eric Naggum
2 content: Sufficiently advanced political correctness is indistinguishable from sarcasm.
3 id: 0e046c26-685c-46ac-ab1d-95f2c44a3317
+0
-4
data/quotes/0e0e1dd8-fb55-4916-8914-8049c048cec2 less more
1 author: "Andr\xE9 Breton"
2 content: Of all those arts in which the wise excel, Nature's chief masterpiece is
3 writing well.
4 id: 0e0e1dd8-fb55-4916-8914-8049c048cec2
+0
-22
data/quotes/0e5a082f-912f-47c9-8074-14e9399d5cd6 less more
1 author: Jim Kunstler
2 content: "I was invited to give a talk at Google headquarters down in Mountain View\
3 \ last Tuesday. They sent somebody to fetch me (in a hybrid car, zowee!) from my\
4 \ hotel in San Francisco \u2014 as if I had any choice about catching a train down,\
5 \ right? Google HQ was a glass office park pod tucked into an inscrutable tangle\
6 \ of off-ramps, berms, manzanita clumps, and curb-cuts. But inside, it was all tricked\
7 \ out like a kindergarten. They had pool tables, and inflatable yoga balls, and\
8 \ $6000 electronic vibrating massage lounge chairs, and snack stations deployed\
9 \ at twenty-five step intervals, with lucite bins filled with chocolate raisins\
10 \ and granola. The employees dressed like children. There were two motifs: \"skateboard\
11 \ rat\" and \"10th grade nerd.\" I suppose quite a few of them were millionaires.\
12 \ Many of the work cubicles were literally modular children's playhouses. I gave\
13 \ my spiel about the global oil problem and the unlikelihood that \"alternative\
14 \ energy\" would even fractionally replace it, and quite a few of the Googlers became\
15 \ incensed.\n\n\"Yo, Dude, you're so, like, wrong! We've got, like, technology!\"\
16 \n\nYeah, well, they weren't interested in making a distinction between energy and\
17 \ technology (or, more precisely where Google is concerned, a massive web-based\
18 \ advertising scheme \u2014 because it is finally clear that all this talk about\
19 \ \"connectivity\" just leads to more commercial shilling, shucking, jiving, and\
20 \ generally fucking with your headspace in the interstices of whatever purposeful\
21 \ activity one may be struggling to enact on the internet)."
22 id: 0e5a082f-912f-47c9-8074-14e9399d5cd6
+0
-4
data/quotes/0f51696d-2cc3-4d01-a221-495fabfafdf2 less more
1 author: Stephen King
2 content: Any word you have to hunt for in a thesaurus is the wrong word. There are
3 no exceptions to this rule.
4 id: 0f51696d-2cc3-4d01-a221-495fabfafdf2
+0
-4
data/quotes/0faadfae-d9e3-405a-b1a3-36b4a75c830f less more
1 author: Douglas Adams
2 content: He felt that his whole life was some kind of dream and he sometimes wondered
3 whose it was and whether they were enjoying it.
4 id: 0faadfae-d9e3-405a-b1a3-36b4a75c830f
+0
-4
data/quotes/1053acd2-03c8-443e-8b71-2caa11dd1970 less more
1 author: A.E. Waite
2 content: There are few things more dull than the criticism which maintains that a
3 thesis is untrue, and cannot understand that it is decorative.
4 id: 1053acd2-03c8-443e-8b71-2caa11dd1970
+0
-4
data/quotes/12042a02-82ac-478b-96e0-f360e6d3eab4 less more
1 author: Jason Reed
2 content: '...Debugging-by-printf is a universal theme that transcends cultures and
3 concrete syntaxes. This shit is Joseph Campbell, yo.'
4 id: 12042a02-82ac-478b-96e0-f360e6d3eab4
+0
-4
data/quotes/126b8d7e-b345-4717-836a-a31d21241137 less more
1 author: Coco Chanel
2 content: Once you've dressed and before you leave the house, look in the mirror and
3 take at least one thing off.
4 id: 126b8d7e-b345-4717-836a-a31d21241137
+0
-5
data/quotes/1278c310-b7a3-476d-9ca2-b47dcad6bf39 less more
1 author: Patrick Alexander
2 content: The inability to ink is not a fucking style. What if you met a 30-year-old
3 who never learned to walk? He's just crawling around. "This is just my walking style,
4 man." Fuck off, you lazy dipshit.
5 id: 1278c310-b7a3-476d-9ca2-b47dcad6bf39
+0
-7
data/quotes/129015df-6406-4702-9189-a0d48cb154af less more
1 author: Ursula K. Le Guin
2 content: What the hell is nostalgia doing in a science-fiction film? With the whole
3 universe and all the future to play in, Lucas took his marvelous toys and crawled
4 under the fringed cloth on the parlor table, back into a nice safe hideyhole, along
5 with Flash Gordon and the Cowardly Lion and Huck Skywalker and the Flying Aces and
6 the Hitler Jugend. If there's a message there, I don't think I want to hear it.
7 id: 129015df-6406-4702-9189-a0d48cb154af
+0
-3
data/quotes/12e48b8a-1779-41ef-957b-77f4f3d9956f less more
1 author: Roland Barthes
2 content: What the public wants is the image of passion, not passion itself.
3 id: 12e48b8a-1779-41ef-957b-77f4f3d9956f
+0
-17
data/quotes/13483c65-9b6e-40d8-831b-5322740f08af less more
1 author: John Swinton
2 content: There is no such thing, at this date of the world's history, in America,
3 as an independent press. You know it and I know it. There is not one of you who
4 dares to write your honest opinions, and if you did, you know beforehand that it
5 would never appear in print. I am paid weekly for keeping my honest opinion out
6 of the paper I am connected with. Others of you are paid similar salaries for similar
7 things, and any of you who would be so foolish as to write honest opinions would
8 be out on the streets looking for another job. If I allowed my honest opinions to
9 appear in one issue of my paper, before twenty-four hours my occupation would be
10 gone. The business of the journalists is to destroy the truth, to lie outright,
11 to pervert, to vilify, to fawn at the feet of mammon, and to sell his country and
12 his race for his daily bread. You know it and I know it, and what folly is this
13 toasting an independent press? We are the tools and vassals of rich men behind the
14 scenes. We are the jumping jacks, they pull the strings and we dance. Our talents,
15 our possibilities and our lives are all the property of other men. We are intellectual
16 prostitutes.
17 id: 13483c65-9b6e-40d8-831b-5322740f08af
+0
-5
data/quotes/13e181f7-ec9b-4f72-a56c-1655254165c7 less more
1 author: General Stumm von Bordwehr, in Robert Musil's "The Man Without Qualities"
2 content: You may say that it isn't necessary to read every last book. Well, it's also
3 true that in war you don't have to kill every last soldier, but we still need every
4 one of them.
5 id: 13e181f7-ec9b-4f72-a56c-1655254165c7
+0
-4
data/quotes/154295ed-3d42-4fcb-85b7-c8b96333e9ae less more
1 author: Hunter S. Thompson
2 content: We think of ourselves as so fucking original, but we're like ants. Just a
3 strand of fucking ants.
4 id: 154295ed-3d42-4fcb-85b7-c8b96333e9ae
+0
-4
data/quotes/16716167-9fe0-4dbb-baed-8b40a98b9403 less more
1 author: H.L. Mencken
2 content: In brief, she assumed that, being a man, I was vain to the point of imbecility,
3 and this assumption was correct, as it always is.
4 id: 16716167-9fe0-4dbb-baed-8b40a98b9403
+0
-6
data/quotes/1697cf65-2b65-4c89-9cf9-555dd6e06a0c less more
1 author: Chuck Jones
2 content: Anyone can say 'no'. It is the first word a child learns and often the first
3 word he speaks. It is a cheap word because it requires no explanation, and many
4 men and women have acquired a reputation for intelligence who know only this word
5 and have used it in place of thought on every occasion.
6 id: 1697cf65-2b65-4c89-9cf9-555dd6e06a0c
+0
-3
data/quotes/169b7272-421c-4a8b-a576-d0b3923109fc less more
1 author: Stewart Brand
2 content: We *are* as gods and might as well get good at it.
3 id: 169b7272-421c-4a8b-a576-d0b3923109fc
+0
-3
data/quotes/174feecb-0339-40c3-8903-64d7ba881d06 less more
1 author: William Gibson
2 content: The future is not google-able.
3 id: 174feecb-0339-40c3-8903-64d7ba881d06
+0
-7
data/quotes/182b9666-37b5-4a8e-950f-5ca462702873 less more
1 author: Friederich Nietzsche, *Human, All Too Human*
2 content: "There are women who, however you may search them, prove to have no content\
3 \ but are purely masks. The man who associates with such almost spectral, necessarily\
4 \ unsatisfied beings is to be commiserated with, yet it is precisely they who are\
5 \ able to arouse the desire of the man most strongly: he seeks for her soul \u2014\
6 \ and goes on seeking."
7 id: 182b9666-37b5-4a8e-950f-5ca462702873
+0
-4
data/quotes/1844d3f6-1802-44b7-b5c2-7b4cad4b32bd less more
1 author: Bret Victor
2 content: The most dangerous thought you can have as a creative person is to think
3 you know what you're doing.
4 id: 1844d3f6-1802-44b7-b5c2-7b4cad4b32bd
+0
-4
data/quotes/18bff612-4bfd-4c12-a722-4f07438d8442 less more
1 author: Frank Lloyd Wright
2 content: No house should ever be on a hill or on anything. It should be of the hill.
3 Belonging to it. Hill and house should live together each the happier for the other.
4 id: 18bff612-4bfd-4c12-a722-4f07438d8442
+0
-4
data/quotes/18ea2161-9bbb-4ed5-9857-ce52e03a113f less more
1 author: Thant Tessman
2 content: You're posting to a Scheme group. Around here, arguing that Java is better
3 than C++ is like arguing that grasshoppers taste better than tree bark.
4 id: 18ea2161-9bbb-4ed5-9857-ce52e03a113f
+0
-4
data/quotes/192a0535-9bc8-43ba-abcf-7f9568043a9b less more
1 author: Karl Popper
2 content: The conspiracy theory of society...comes from abandoning God and then asking,
3 "Who is in his place?"
4 id: 192a0535-9bc8-43ba-abcf-7f9568043a9b
+0
-4
data/quotes/1937dbaf-43e7-4dd1-9241-96c66be6b9a4 less more
1 author: Jessica Brookman
2 content: Entertain the possibility that we are living in an intellectual and spiritual
3 dark age but there is too much technology to notice.
4 id: 1937dbaf-43e7-4dd1-9241-96c66be6b9a4
+0
-9
data/quotes/19425d3f-03ed-4dd7-a552-532a84e387af less more
1 author: Eben Moglen
2 content: "Mr. Zuckerberg has attained an unenviable record. He has done more harm\
3 \ to the human race than anybody else his age. Right? Because he harnessed, y'know,\
4 \ Friday Night\u2014that is, \"everybody needs to get laid\"\u2014and he turned\
5 \ it into a structure for degenerating the integrity of human personality. And he\
6 \ has, to a remarkable extent, succeeded with a very poor deal\u2014namely, \"I\
7 \ will give you free web hosting, and some PHP doodads, and you get spying, for\
8 \ free, all the time.\" And it works. That's the sad part, it works."
9 id: 19425d3f-03ed-4dd7-a552-532a84e387af
+0
-5
data/quotes/1a15316b-b135-4fe2-a3f0-b6b3fa390fce less more
1 author: Haruki Murakami
2 content: I sometimes think that people's hearts are like deep wells. Nobody knows
3 what's at the bottom. All you can do is guess from what comes floating to the surface
4 every once in a while.
5 id: 1a15316b-b135-4fe2-a3f0-b6b3fa390fce
+0
-5
data/quotes/1a2427d5-21f4-41b5-8b3f-33f041fb3b78 less more
1 author: Haruki Murakami
2 content: I don't really know if it's the right thing to do, making new life. Kids
3 grow up, generations take their place. What does it all come to? More hills bulldozed
4 and more ocean fronts filled in? Faster cars and more cats run over? Who needs it?
5 id: 1a2427d5-21f4-41b5-8b3f-33f041fb3b78
+0
-13
data/quotes/1a251642-2988-41e9-a847-ac5a9900c600 less more
1 author: Lord Chief Justice Halisham
2 content: The only freedom which counts is the freedom to do what some other people
3 think to be wrong. There is no point in demanding freedom to do that which all will
4 applaud. All the so-called liberties or rights are things which have to be asserted
5 against others who claim that if such things are to be allowed their own rights
6 are infringed or their own liberties threatened. This is always true, even when
7 we speak of the freedom to worship, of the right of free speech or association,
8 or of public assembly. If we are to allow freedoms at all there will constantly
9 be complaints that either the liberty itself or the way in which it is exercised
10 is being abused, and, if it is a genuine freedom, these complaints will often be
11 justified. There is no way of having a free society in which there is not abuse.
12 Abuse is the very hallmark of liberty.
13 id: 1a251642-2988-41e9-a847-ac5a9900c600
+0
-4
data/quotes/1a30ce02-0598-47b2-8837-bd28015ca96c less more
1 author: Ray Smuckles, Achewood
2 content: No, I ain't got a fax machine! I also ain't got an Apple IIc, polio, or a
3 falcon.
4 id: 1a30ce02-0598-47b2-8837-bd28015ca96c
+0
-4
data/quotes/1a564773-45de-4fd1-bd15-8d54967793a7 less more
1 author: Alan Kay
2 content: Don't worry about what anybody else is going to do. The best way to predict
3 the future is to invent it.
4 id: 1a564773-45de-4fd1-bd15-8d54967793a7
+0
-4
data/quotes/1a59b8a2-ba4d-4a16-9563-7a78db63c8fb less more
1 author: Jorge Luis Borges
2 content: "_Enamorarse es crear una religi\xF3n cuyo dios es falible._ \r\nTo fall\
3 \ in love is to create a religion whose god is fallible."
4 id: 1a59b8a2-ba4d-4a16-9563-7a78db63c8fb
+0
-8
data/quotes/1a947703-d6af-4269-816e-6ff8c9880b82 less more
1 author: 'Samuel Beckett
2
3 '
4 content: 'It is all very well to keep silence, but one has also to consider the kind
5 of silence one keeps.
6
7 '
8 id: 1a947703-d6af-4269-816e-6ff8c9880b82
+0
-7
data/quotes/1aa9b1bf-c9b5-4618-b108-4ef146493699 less more
1 author: George Orwell
2 content: The essence of being human is that one does not seek perfection, that one
3 *is* sometimes willing to commit sins for the sake of loyalty, that one does not
4 push asceticism to the point where it makes friendly intercourse impossible, and
5 that one is prepared in the end to be defeated and broken up by life, which is the
6 inevitable price of fastening one's love upon other human individuals.
7 id: 1aa9b1bf-c9b5-4618-b108-4ef146493699
+0
-5
data/quotes/1abef251-59da-4ed8-87ef-9e98c40a37a5 less more
1 author: David Lynch
2 content: It makes me uncomfortable to talk about meanings and things. It is better
3 not to know so much about what things mean. Because the meaning, it's a very personal
4 thing and the meaning for me is different than the meaning for someone else.
5 id: 1abef251-59da-4ed8-87ef-9e98c40a37a5
+0
-4
data/quotes/1b80c0b9-d58b-4160-a21a-e90c81a3b2fe less more
1 author: zbir
2 content: yes, [web 2.0 is] a candy store where instead of sugar, water, and food coloring,
3 the Candyman used poop
4 id: 1b80c0b9-d58b-4160-a21a-e90c81a3b2fe
+0
-4
data/quotes/1bd2a9a4-4534-4d16-b8f5-bce4d973cf99 less more
1 author: Anna Quindlen
2 content: I would be content if my children grew up to be the kind of people who think
3 decorating consists mostly of building enough bookshelves.
4 id: 1bd2a9a4-4534-4d16-b8f5-bce4d973cf99
+0
-13
data/quotes/1c036312-23e7-4bdc-b59d-94b2de1afead less more
1 author: Joey Comeau
2 content: It's too late for the government to train me to be a weapon. For someone
3 to approach me on the street, and to tell me I match a certain profile. I probably
4 won't even learn another language well enough to speak it fluently. Giant crazed
5 attack dogs won't ever suddenly act like scared puppies when they see me. I won't
6 ever be a grandmaster of chess, either. I don't think at this stage I can even reasonably
7 expect to make Expert. There are some things I regret as I get older, I guess. There
8 are a ton of traditional ways to be bad-ass, and I missed the boat. But that's okay.
9 It just means I have to be more creative. And then later that creativity will make
10 people think I was an evil genius, instead of just so desperate for a world with
11 monsters that I didn't mind becoming one myself. What I'm saying is - I stole an
12 ice cream cone yesterday from the 7-11 and I have no regrets at all.
13 id: 1c036312-23e7-4bdc-b59d-94b2de1afead
+0
-7
data/quotes/1c11e68a-cb8e-4586-a30e-cac383ba1cc9 less more
1 author: allegedly a toilet graffito at the Technical CS Department in Haifa, Israel
2 content: "C++ is like teenage sex:\n\n+ It's on everyone's mind all the time.\n\n\
3 + Everyone talks about it all the time.\n\n+ Everyone thinks everyone else is doing\
4 \ it.\n\n+ Almost no one is really doing it.\n\n+ The few who are doing it are\n\
5 \ + doing it poorly;\n + sure it will be better next time;\n + not practicing\
6 \ it safely."
7 id: 1c11e68a-cb8e-4586-a30e-cac383ba1cc9
+0
-4
data/quotes/1c691096-06b2-462f-b4ae-45f99c9dd33a less more
1 author: Werner Herzog
2 content: We only sound and look like badly pronounced and half-finished sentences
3 out of a stupid suburban... novel... a cheap novel.
4 id: 1c691096-06b2-462f-b4ae-45f99c9dd33a
+0
-5
data/quotes/1cab5713-7698-409a-9518-ab866d7ba57f less more
1 author: Chris Mazeika
2 content: Donald Rumsfeld declared the looting in Iraq following "liberation" to be
3 the consequence of "the pent-up feelings that result from decades of oppression".
4 We await his wisdom on New Orleans.
5 id: 1cab5713-7698-409a-9518-ab866d7ba57f
+0
-4
data/quotes/1da24fa9-732c-45a6-80fd-7308cad66ddc less more
1 author: Umberto Eco, *The Name of The Rose*
2 content: Books are not made to be believed, but to be subjected to inquiry. When we
3 consider a book, we mustn't ask ourselves what it says but what it means...
4 id: 1da24fa9-732c-45a6-80fd-7308cad66ddc
+0
-15
data/quotes/1e436cf0-e76b-49f0-90d4-2119de8aaad9 less more
1 author: George Carlin
2 content: 'Now, there''s one thing you might have noticed I don''t complain about:
3 politicians. Everybody complains about politicians. Everybody says they suck. Well,
4 where do people think these politicians come from? They don''t fall out of the sky.
5 They don''t pass through a membrane from another reality. They come from American
6 parents and American families, American homes, American schools, American churches,
7 American businesses and American universities, and they are elected by American
8 citizens. This is the best we can do folks. This is what we have to offer. It''s
9 what our system produces: Garbage in, garbage out. If you have selfish, ignorant
10 citizens, you''re going to get selfish, ignorant leaders. Term limits ain''t going
11 to do any good; you''re just going to end up with a brand new bunch of selfish,
12 ignorant Americans. So, maybe, maybe, maybe, it''s not the politicians who suck.
13 Maybe something else sucks around here... like, the public. Yeah, the public sucks.
14 There''s a nice campaign slogan for somebody: "The Public Sucks. Fuck Hope."'
15 id: 1e436cf0-e76b-49f0-90d4-2119de8aaad9
+0
-9
data/quotes/1e551737-77e5-4c4b-9694-41bebb40b949 less more
1 author: The Last Psychiatrist
2 content: 'You want something uplifting, so here you go: you can never have a good
3 relationship with anyone when your focus is the relationship. There''s a human being
4 there who existed well before you got to them, and they weren''t built for you or
5 your needs or your parents or your future dreams as an actor. If you want to be
6 happy with someone then your body and mind have to instinctively adapt to their
7 happiness. If you''re not ready for this kind of sacrifice, then you''re simply
8 not ready.'
9 id: 1e551737-77e5-4c4b-9694-41bebb40b949
+0
-4
data/quotes/1e5d0c42-00f7-4fed-afe0-6982fdeac33b less more
1 author: Aldous Huxley
2 content: That people do not learn very much from history is the most important of
3 all the lessons history has to teach.
4 id: 1e5d0c42-00f7-4fed-afe0-6982fdeac33b
+0
-4
data/quotes/1ed09582-ab66-48d4-be17-cf86e372b0f9 less more
1 author: Umberto Eco, *The Name of The Rose*
2 content: True learning must not be content with ideas, which are, in fact, signs,
3 but must discover things in their individual truth.
4 id: 1ed09582-ab66-48d4-be17-cf86e372b0f9
+0
-4
data/quotes/1ef22fb2-565c-4a1b-ac80-364daa73c7d5 less more
1 author: Ambrose Bierce
2 content: Cat, n. A soft, indestructible automaton provided by nature to be kicked
3 when things go wrong in the domestic circle.
4 id: 1ef22fb2-565c-4a1b-ac80-364daa73c7d5
+0
-4
data/quotes/1f11c88e-9f27-4345-b9ab-504d60ee81d0 less more
1 author: Alan Perlis
2 content: 'Re graphics: A picture is worth 10K words - but only those to describe
3 the picture. Hardly any sets of 10K words can be adequately described with pictures.'
4 id: 1f11c88e-9f27-4345-b9ab-504d60ee81d0
+0
-4
data/quotes/1f1ac10a-637e-4982-9ad9-5cc4232ca3ac less more
1 author: Georges Bataille
2 content: I don't want your love unless you know I am repulsive, and love me even as
3 you know it.
4 id: 1f1ac10a-637e-4982-9ad9-5cc4232ca3ac
+0
-3
data/quotes/1f57fd0a-ca00-41e8-bfd6-3eff41e73179 less more
1 author: Dorothy Allison
2 content: I do not write about nice people. I am not nice people.
3 id: 1f57fd0a-ca00-41e8-bfd6-3eff41e73179
+0
-3
data/quotes/1f5d2d61-c53c-47a2-84be-0da1091d309e less more
1 author: Werner Herzog
2 content: Tourism is sin, and travel on foot virtue.
3 id: 1f5d2d61-c53c-47a2-84be-0da1091d309e
+0
-4
data/quotes/1fe31033-ec56-4712-9b82-5215fa2f2dd0 less more
1 author: TPHD
2 content: "THE SUN IS MORE BEAUTIFUL AND VIOLENT THAN ANYTHING THAT HAPPENS ON EARTH\r\
3 \n\r\nBUT, LIKE, DON'T LET THAT STOP YOU FROM TRYING"
4 id: 1fe31033-ec56-4712-9b82-5215fa2f2dd0
+0
-8
data/quotes/208e1d84-7b8d-4db5-960e-4c33a4b8fded less more
1 author: The Last Psychiatrist
2 content: One of the great insights of psychoanalysis is that you never really want
3 an object, you only want the wanting, which means the solution is to set your sights
4 on an impossible ideal and work hard to reach it. You won't. That's not just okay,
5 that's the point. It's ok if you fantasize about knowing kung fu if you then try
6 to actually learn kung fu, eventually you will understand you can never really know
7 kung fu, and then you will die. And it will have been worth it.
8 id: 208e1d84-7b8d-4db5-960e-4c33a4b8fded
+0
-7
data/quotes/20ce414d-813b-41d7-af82-734317794380 less more
1 author: Karl Marx
2 content: "Finally, I desired that, if there is to be talk about philosophy, there\
3 \ should be less trifling with the label \"atheism\" (which reminds one of children,\
4 \ assuring everyone who is ready to listen to them that they are not afraid of the\
5 \ bogy man), and that instead the content of philosophy should be brought to the\
6 \ people. Voil\xE0 tout."
7 id: 20ce414d-813b-41d7-af82-734317794380
+0
-3
data/quotes/21451556-74ed-4277-9e89-b6536b0162ec less more
1 author: Sean "Teki" Dobbs
2 content: 'I like my terminals like my women: VT100 compatible with Tektronix extensions.'
3 id: 21451556-74ed-4277-9e89-b6536b0162ec
+0
-17
data/quotes/21ac1347-68f1-4fe6-9718-ba6aaa4d36aa less more
1 author: Dr. Hunter S. Thompson
2 content: "Strange memories on this nervous night in Las Vegas. Five years later? \
3 \ Six? It seems like a lifetime, or at least a Main Era \u2014 the kind of peak\
4 \ that never comes again. San Francisco in the middle sixties was a very special\
5 \ time and place to be a part of. Maybe it meant something. Maybe not, in the\
6 \ long run... There was madness in any direction, at any hour. If not across the\
7 \ Bay, then up the Golden Gate or down 101 to Los Altos or La Honda... You could\
8 \ strike sparks anywhere. There was a fantastic universal sense that whatever we\
9 \ were doing was right, that we were winning...\n\nAnd that, I think, was the handle\
10 \ \u2014 that sense of inevitable victory over the forces of Old and Evil. Not in\
11 \ any mean or military sense; we didn't need that. Our energy would simply prevail.\
12 \ There was no point in fighting \u2014 on our side or theirs. We had all the\
13 \ momentum; we were riding the crest of a high and beautiful wave. So now, less\
14 \ than five years later, you can go up on a steep hill in Las Vegas and look West,\
15 \ and with the right kind of eyes you can almost see the high-water mark \u2014\
16 \ that place where the wave finally broke and rolled back."
17 id: 21ac1347-68f1-4fe6-9718-ba6aaa4d36aa
+0
-5
data/quotes/21ed3c44-bd31-4536-8a08-ccf64602e76e less more
1 author: pastabagel
2 content: The Blackberry is basically a corporate house-arrest ankle bracelet that
3 prevents you from thinking about anything other than your job no matter where you
4 are in the world.
5 id: 21ed3c44-bd31-4536-8a08-ccf64602e76e
+0
-5
data/quotes/22ae5156-3560-4e34-825f-0f398a0b5cc5 less more
1 author: Thant Tessman
2 content: 'Or here''s an even simpler indicator of how much C++ sucks: Print out the
3 C++ Public Review Document. Have someone hold it about three feet above your
4 head and then drop it. Thus you will be enlightened.'
5 id: 22ae5156-3560-4e34-825f-0f398a0b5cc5
+0
-4
data/quotes/22f284ef-f422-4871-ab7e-c15fc9152f61 less more
1 author: Joey Comeau
2 content: When you correct someone's grammar, try to remember those rules are like
3 the stars you see through a telescope, just pretty echoes of the long dead.
4 id: 22f284ef-f422-4871-ab7e-c15fc9152f61
+0
-9
data/quotes/240a2c64-5f66-4be5-bed7-fae67f6da33f less more
1 author: The Last Psychiatrist
2 content: "Pop culture controls you even if you think you're separate from it. It is\
3 \ everywhere, from the clothes you wear to the language you use to the way you think.\
4 \ It is a viral pandemic that masks infection by pretending to be part of you. There's\
5 \ no cure. But if you know the structure of the virus, at least you can recognize\
6 \ the infection as not-you. \r\n\r\n\"No way, I'm not getting infected, I'm not\
7 \ exposing myself to all that trash. I'm going to think for myself.\"\r\n \r\nThat's\
8 \ the virus talking."
9 id: 240a2c64-5f66-4be5-bed7-fae67f6da33f
+0
-4
data/quotes/24462d4b-6cc1-4237-a693-82acd8b95d28 less more
1 author: Thant Tessman
2 content: Being really good at C++ is like being really good at using rocks to sharpen
3 sticks.
4 id: 24462d4b-6cc1-4237-a693-82acd8b95d28
+0
-4
data/quotes/2510a963-d049-45e6-88c4-30dc08c4003a less more
1 author: Johann Sebastian Bach
2 content: There's nothing remarkable about it. All one has to do is hit the right keys
3 at the right time and the instrument plays itself.
4 id: 2510a963-d049-45e6-88c4-30dc08c4003a
+0
-17
data/quotes/25b8cdf6-dd5f-4e15-82ed-11a167dbaa78 less more
1 author: Neil Postman
2 content: "Every technology has a prejudice. Like language itself, it predisposes us\
3 \ to favor and value certain perspectives and accomplishments. In a culture without\
4 \ writing, human memory is of the greatest importance, as are the proverbs, sayings\
5 \ and songs which contain the accumulated oral wisdom of centuries. That is why\
6 \ Solomon was thought to be the wisest of men. In Kings I we are told he knew 3,000\
7 \ proverbs. But in a culture with writing, such feats of memory are considered a\
8 \ waste of time, and proverbs are merely irrelevant fancies. The writing person\
9 \ favors logical organization and systematic analysis, not proverbs. The telegraphic\
10 \ person values speed, not introspection. The television person values immediacy,\
11 \ not history...\r\n\r\nEvery technology has a philosophy which is given expression\
12 \ in how the technology makes people use their minds, in what it makes us do with\
13 \ our bodies, in how it codifies the world, in which of our senses it amplifies,\
14 \ in which of our emotional and intellectual tendencies it disregards. This idea\
15 \ is the sum and substance of what the great Catholic prophet, Marshall McLuhan\
16 \ meant when he coined the famous sentence, \u201CThe medium is the message.\u201D"
17 id: 25b8cdf6-dd5f-4e15-82ed-11a167dbaa78
+0
-4
data/quotes/25ed0a31-9458-4960-8862-14f00bbeb921 less more
1 author: David Barbour
2 content: I have no plans to learn UML before I die. I'm sure they'll be teaching it
3 in hell.
4 id: 25ed0a31-9458-4960-8862-14f00bbeb921
+0
-5
data/quotes/25f52f00-d1d1-470a-b1e7-eaba8f8eb03d less more
1 author: Neil Gaiman
2 content: I was never afraid of dead folk. You know that? They never hurt you. So many
3 things in this town can hurt you, but the dead don't hurt hurt you. Living people
4 hurt you. They hurt you so bad.
5 id: 25f52f00-d1d1-470a-b1e7-eaba8f8eb03d
+0
-4
data/quotes/27aea13e-9ca0-46ee-a34f-f117ffad88c6 less more
1 author: Neil Gaiman
2 content: The house smelled musty and damp, and a little sweet, as if it were haunted
3 by the ghosts of long-dead cookies.
4 id: 27aea13e-9ca0-46ee-a34f-f117ffad88c6
+0
-20
data/quotes/28f0e703-045c-46ed-93f2-5a005fd0cce2 less more
1 author: Maurice Blanchot
2 content: "But what else results from this? Whoever acknowledges effective action in\
3 \ the thick of history as his essential task cannot prefer artistic action. Art\
4 \ acts poorly and little. It is clear that if Marx had followed the dreams of his\
5 \ youth and written the most beautiful novels in the world, he would have enchanted\
6 \ the world, but he would not have shaken it. Thus it is Capital that must be written\
7 \ and not War and Peace. We must not depict the murder of Caesar; we must be Brutus.\
8 \ These associations, these comparisons will appear absurd to contemplative minds.\
9 \ But as soon as art measures itself against action, immediate and pressing action\
10 \ can only put it in the wrong. It suffices to remember what H\xF6lderlin wrote\u2014\
11 H\xF6lderlin about whom it would not be enough to say that his fate was linked to\
12 \ poetry\u2019s, for he had no existence at all except in and for poetry. And yet,\
13 \ in 1799, speaking of the revolution which he saw imperiled, he wrote to his brother,\r\
14 \n\r\n> And if the kingdom of darkness erupts after all in full force, then let\
15 \ us throw our pens under the table and go in God\u2019s name where the need is\
16 \ greatest and our presence the most useful.\r\n\r\nArtistic activity, for him indeed\
17 \ who has chosen it, proves insufficient at the decisive hours\u2014those hours\
18 \ that ring every hour\u2014when \u201Cthe poet must complete his message by renouncing\
19 \ himself.\u201D\r\n"
20 id: 28f0e703-045c-46ed-93f2-5a005fd0cce2
+0
-5
data/quotes/2917e804-587b-4451-9a8d-6bd2c3074081 less more
1 author: Neal Stephenson's Cryptonomicon
2 content: Amy glances out the window; her hair, skin, and clothes take on a pronounced
3 reddish tinge from Doppler effect as she drops out of the conversation at relativistic
4 velocity.
5 id: 2917e804-587b-4451-9a8d-6bd2c3074081
+0
-5
data/quotes/2931e7b2-0b72-403d-9e26-d6a4113e0f94 less more
1 author: Marcus Aurelius
2 content: You are not compelled to form any opinion about this matter before you, nor
3 to disturb your peace of mind at all. Things in themselves have no power to extort
4 a verdict from you.
5 id: 2931e7b2-0b72-403d-9e26-d6a4113e0f94
+0
-11
data/quotes/2960cd9e-0a99-47ab-8f4a-6fe44f83c4b2 less more
1 author: Ray Bradbury
2 content: "For these beings, fall is the ever normal season, the only weather, there\
3 \ be no choice beyond. Where do they come from? The dust. Where do they go? The\
4 \ grave. Does blood stir their veins? No: the night wind. What ticks in their head?\
5 \ The worm. What speaks from their mouth? The toad. What sees from their eye? The\
6 \ snake. What hears with their ear? The abyss between the stars. They sift the human\
7 \ storm for souls, eat flesh of reason, fill tombs with sinners. They frenzy forth.\
8 \ In gusts they beetle-scurry, creep, thread, filter, motion, make all moons sullen,\
9 \ and surely cloud all clear-run waters. The spider-web hears them, trembles\u2014\
10 breaks. Such are the autumn people. Beware of them."
11 id: 2960cd9e-0a99-47ab-8f4a-6fe44f83c4b2
+0
-3
data/quotes/2972d4c4-499c-47d2-ae25-6de1ff4262f5 less more
1 author: Marshall McLuhan
2 content: Innovation for holders of conventional wisdom is not novelty but annihilation.
3 id: 2972d4c4-499c-47d2-ae25-6de1ff4262f5
+0
-12
data/quotes/2a1c25a2-6410-4cd9-b9c8-753bb2284718 less more
1 author: Kurt Vonnegut
2 content: 'Oh, she says well, you''re not a poor man. You know, why don''t you go online
3 and buy a hundred envelopes and put them in the closet? And so I pretend not to
4 hear her. And go out to get an envelope because I''m going to have a hell of a good
5 time in the process of buying one envelope. I meet a lot of people. And, see some
6 great looking babes. And a fire engine goes by. And I give them the thumbs up. And,
7 and ask a woman what kind of dog that is. And, and I don''t know. The moral of the
8 story is, is we''re here on Earth to fart around. And, of course, the computers
9 will do us out of that. And, what the computer people don''t realize, or they don''t
10 care, is we''re dancing animals. You know, we love to move around. And, we''re not
11 supposed to dance at all anymore. '
12 id: 2a1c25a2-6410-4cd9-b9c8-753bb2284718
+0
-3
data/quotes/2a55935e-310c-4736-8126-0430d4b47036 less more
1 author: Urban Dictionary
2 content: Ubuntu is an ancient African word, meaning "I can't configure Debian."
3 id: 2a55935e-310c-4736-8126-0430d4b47036
+0
-4
data/quotes/2a6ddee0-ed5b-436a-b86c-d7cd44c5a0a2 less more
1 author: Peter Sellars
2 content: The most important art in the last fifty years in this country is boring
3 art. What is important about John Cage or Jackson Pollock is it's boring.
4 id: 2a6ddee0-ed5b-436a-b86c-d7cd44c5a0a2
+0
-6
data/quotes/2a6f7d47-b0b9-4793-accc-9561716bfc7d less more
1 author: David Simon
2 content: Albert Camus, a great humanist and existentialist voice, pointed out that
3 to commit to a just cause with no hope of success is absurd. But then he also noted
4 that not committing to a just cause is equally absurd. But only one choice offers
5 the possibility for dignity. And dignity matters.
6 id: 2a6f7d47-b0b9-4793-accc-9561716bfc7d
+0
-7
data/quotes/2a911d00-faeb-424b-8fe0-30b4475ad43e less more
1 author: Bertrand Russell
2 content: Men fear thought as they fear nothing else on earth, more than ruin, more
3 even than death... Thought is subversive and revolutionary, destructive and terrible,
4 thought is merciless to privilege, established institutions, and comfortable habit.
5 Thought looks into the pit of hell and is not afraid. Thought is great and swift
6 and free, the light of the world, and the chief glory of man.
7 id: 2a911d00-faeb-424b-8fe0-30b4475ad43e
+0
-4
data/quotes/2ad1b26e-5b70-4e22-9ec4-7de39391853b less more
1 author: Eddie Kohler
2 content: Computer science is good because it has two words and I like both of them.
3 I also like "butt" and "futz" but you have no degree in futz butt.
4 id: 2ad1b26e-5b70-4e22-9ec4-7de39391853b
+0
-4
data/quotes/2b151dcc-5600-47cd-b370-cb496f576a44 less more
1 author: David A. Wollheim
2 content: The tendency to believe that things never change, the inertia of daily existence,
3 is a staple of living. It has always been a delusion.
4 id: 2b151dcc-5600-47cd-b370-cb496f576a44
+0
-3
data/quotes/2b164f8e-1594-4a09-baae-eb67156a41fc less more
1 author: Federico Fellini
2 content: Don't tell me what I'm doing. I don't want to know.
3 id: 2b164f8e-1594-4a09-baae-eb67156a41fc
+0
-7
data/quotes/2be8d920-da25-4fcb-8011-132be00d2039 less more
1 author: Jack Kerouac
2 content: 'Came down from my
3
4 ivory tower
5
6 and found no world'
7 id: 2be8d920-da25-4fcb-8011-132be00d2039
+0
-5
data/quotes/2c727cc5-e61d-49c8-a439-f1dbb7bce82d less more
1 author: George Bernard Shaw
2 content: 'Why not telegraph to London, I thought, for some music to review? Reviewing
3 has one advantage over suicide. In suicide you take it out of yourself: in reviewing
4 you take it out of other people.'
5 id: 2c727cc5-e61d-49c8-a439-f1dbb7bce82d
+0
-5
data/quotes/2c9dbad1-36f1-4e3e-bbc1-55219b15e992 less more
1 author: The Gospel of Thomas
2 content: 'hotan etetnshanshope hmpovoein ov pe tetnaaf
3
4 When you should come to be in the light, what shall you do?'
5 id: 2c9dbad1-36f1-4e3e-bbc1-55219b15e992
+0
-6
data/quotes/2d7a156b-4508-45b1-93c9-072994d04c17 less more
1 author: Bill Hicks
2 content: By the way, if anyone here is in marketing or advertising... kill yourself.
3 Thank you. Just planting seeds, planting seeds is all I'm doing. No joke here, really.
4 Seriously, kill yourself. You have no rationalization for what you do. You are Satan's
5 little helpers. ... Kill yourself now.
6 id: 2d7a156b-4508-45b1-93c9-072994d04c17
+0
-3
data/quotes/2d982c41-5288-4874-bd3d-de3bc39a5d27 less more
1 author: Margaret Cho
2 content: Why should I observe the Sabbath when I could observe dick?
3 id: 2d982c41-5288-4874-bd3d-de3bc39a5d27
+0
-9
data/quotes/2e122633-1bb2-4f0b-8d84-c54e00498f39 less more
1 author: Neil Postman
2 content: "(Paraphrased) questions to ask of a new technology:\r\n\r\n- What is the\
3 \ problem to which this technology is the solution?\r\n- Whose problem is it?\r\n\
4 - What new problems might result from solving this problem?\r\n- Which people and\
5 \ institutions might be harmed by this solution?\r\n- How does the new technology\
6 \ change our language, and what are the implications of that?\r\n- What people and\
7 \ institutions gain economic or politcal power because of the technological change?\r\
8 \n"
9 id: 2e122633-1bb2-4f0b-8d84-c54e00498f39
+0
-8
data/quotes/2e2472f0-07df-40d8-87ea-bbbc3c4dc2c3 less more
1 author: Manuel de Landa
2 content: Idealists have it easy. Their reality is uniformly populated by appearances
3 or phenomena, structured by linguistic representations or social conventions, so
4 they can feel safe to engage in metaphysical speculation knowing that the contents
5 of their world have been settled in advance. Realists, on the other hand, are committed
6 to assert the autonomy of reality from the human mind, but then must struggle to
7 define what inhabits that reality.
8 id: 2e2472f0-07df-40d8-87ea-bbbc3c4dc2c3
+0
-4
data/quotes/2e30e4fa-9e7b-47bd-b7cf-4de64766a5a5 less more
1 author: Charlie Stross
2 content: '...as long as steampunk is nothing more than what happens when goths discover
3 brown.'
4 id: 2e30e4fa-9e7b-47bd-b7cf-4de64766a5a5
+0
-4
data/quotes/2e3b8bbd-c85e-41e9-a29e-f86aee8c3cab less more
1 author: Jorge Luis Borges
2 content: Nothing is built on stone; all is built on sand, but we must build as if
3 the sand were stone.
4 id: 2e3b8bbd-c85e-41e9-a29e-f86aee8c3cab
+0
-7
data/quotes/2e48c034-c977-43e4-9819-2260c6338671 less more
1 author: 'Louis C.K.
2
3 '
4 content: "Offending people is a necessary and healthy act. Every time you say something\
5 \ that\u2019s offensive to another person you just caused a discussion. You just\
6 \ forced them to have to think.\n"
7 id: 2e48c034-c977-43e4-9819-2260c6338671
+0
-5
data/quotes/2e5b3c3b-a329-4b29-bbe6-148f52b8ccea less more
1 author: William E. H. Lecky
2 content: There is no point in waiting. The train stopped running years ago. All the
3 schedules, the brochures, the bright-colored posters full of lies, promise rides
4 to a distant country that no longer exists.
5 id: 2e5b3c3b-a329-4b29-bbe6-148f52b8ccea
+0
-5
data/quotes/2e6aaa68-bbe1-4110-b322-6d4be67106b3 less more
1 author: Jo Walton
2 content: Peace means something different from 'not fighting'. Those aren't peace advocates,
3 they're 'stop fighting' advocates. Peace is an active and complex thing and sometimes
4 fighting is part of what it takes to get it.
5 id: 2e6aaa68-bbe1-4110-b322-6d4be67106b3
+0
-3
data/quotes/2ed7bd6f-7b37-4063-b5e4-ea487d321f22 less more
1 author: Bertrand Russell
2 content: To be without some of the things you want is an indispensable part of happiness.
3 id: 2ed7bd6f-7b37-4063-b5e4-ea487d321f22
+0
-14
data/quotes/2fb10ed1-40b3-40a1-a8ea-229ddc925941 less more
1 author: Kurt Vonnegut
2 content: 'Thompson, if he is to be believed, has sampled the entire rainbow of legal
3 and illegal drugs in heroic efforts to feel better than he does. As for the truth
4 about his health: I have asked around about it. I am told that he appears to be
5 strong and rosy, and steadily sane. But we will be doing what he wants us to do,
6 I think, if we consider his exterior a sort of Dorian Gray facade. Inwardly, he
7 is being eaten alive by tinhorn politicians. The disease is fatal. There is no known
8 cure. The most we can do for the poor devil, it seems to me, is to name his disease
9 in his honor. From this moment on, let all those who feel that Americans can be
10 as easily led to beauty as to ugliness, to truth as to public relations, to joy
11 as to bitterness, be said to be suffering from Hunter Thompson''s disease. I don''t
12 have it this morning. It comes and goes. This morning I don''t have Hunter Thompson''s
13 disease.'
14 id: 2fb10ed1-40b3-40a1-a8ea-229ddc925941
+0
-4
data/quotes/30392e16-d50f-4aea-9239-87226054ea5c less more
1 author: Steve Yegge
2 content: Java is like a variant of the game of Tetris in which none of the pieces
3 can fill gaps created by the other pieces, so all you can do is pile them up endlessly.
4 id: 30392e16-d50f-4aea-9239-87226054ea5c
+0
-5
data/quotes/30f2aa4f-0dc6-49a3-b3cf-0ce67c8fd592 less more
1 author: Heraclitus
2 content: 'Metaballon anapautetai
3
4 Even while it changes, it stands still.'
5 id: 30f2aa4f-0dc6-49a3-b3cf-0ce67c8fd592
+0
-5
data/quotes/3196ed32-320a-4cdd-b020-a9a4bb66a63a less more
1 author: "Slavoj \u017Di\u017Eek\n"
2 content: "The true ethical test is not only the readiness to save the victims, but\
3 \ also\u2014even more, perhaps\u2014the ruthless dedication to annihilating those\
4 \ who made them victims.\n"
5 id: 3196ed32-320a-4cdd-b020-a9a4bb66a63a
+0
-7
data/quotes/3199d4eb-68ef-4085-9f07-07a0d3f186c1 less more
1 author: Alejandro Jodorowsky
2 content: I like violence. I love violence! I hate the weak person who go to art and
3 say "Oh, that hurt me... that image!" Why to make picture for that person? They
4 are blind! Poetry is violent. This is the reality. There is so much in a violent
5 world... they don't want to see that. I am in the middle of violence. I am in the
6 middle of the screen of television now. There I am.
7 id: 3199d4eb-68ef-4085-9f07-07a0d3f186c1
+0
-12
data/quotes/3330bfb4-e9ff-4bf3-b5a9-c76c13adae8c less more
1 author: Umberto Eco, Foucault's Pendulum
2 content: "One morning Amparo and I were driving along the coast after having attended\
3 \ a seminar on the class structure of the lumpenproletariat. I saw some votive offerings\
4 \ on the beach, little candles, white garlands. Amparo told me they were offerings\
5 \ to Yemanj\xE1, goddess of the waters. We stopped, and she got out and walked demurely\
6 \ onto the sand, stood a few moments in silence. I asked her if she believed in\
7 \ this. She retorted angrily: How could I think such a thing? Then she added, \"\
8 My grandmother used to bring me to the beach here, and she would pray to the goddess\
9 \ to make me grow up beautiful and good and happy. Who was that Italian philosopher\
10 \ who made that comment about black cats and coral horns? 'It's not true, but I\
11 \ believe in it'? Well, I don't believe in it, but it's true.\""
12 id: 3330bfb4-e9ff-4bf3-b5a9-c76c13adae8c
+0
-4
data/quotes/33480f24-440d-462f-83dd-db32f682b029 less more
1 author: Catherine O'Hara
2 content: Night time is really the best time to work. All the ideas are there to be
3 yours because everyone else is asleep.
4 id: 33480f24-440d-462f-83dd-db32f682b029
+0
-4
data/quotes/33eca3f7-5536-4236-be63-e5898dba50ef less more
1 author: Abdal-Hakim Murad
2 content: True religion invites us to become better people. False religion tells us
3 that this has already occurred.
4 id: 33eca3f7-5536-4236-be63-e5898dba50ef
+0
-4
data/quotes/34cbd551-dc18-4fdd-b998-ef29454611c1 less more
1 author: Esther Dyson
2 content: Consumers are distressingly, disappointingly obtuse when it comes to their
3 own personal privacy.
4 id: 34cbd551-dc18-4fdd-b998-ef29454611c1
+0
-3
data/quotes/34e72405-1447-48a0-bad4-dbadc06904c4 less more
1 author: Ryan North
2 content: Relationships are for the young and criminally insane.
3 id: 34e72405-1447-48a0-bad4-dbadc06904c4
+0
-5
data/quotes/36430d65-271d-4224-9941-aa8b609943a9 less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: '''Atheism'' is a miserable, pathetic stance of those who long for God but
3 cannot find him (or who ''rebel against God''). A true atheist does not choose atheism:
4 for him, the question itself is irrelevant.'
5 id: 36430d65-271d-4224-9941-aa8b609943a9
+0
-4
data/quotes/36650ba2-a369-4974-b7d5-508660b8f007 less more
1 author: The Last Psychiatrist
2 content: "Step 1\u2014 actually, there's only ever one step\u2014 focus precisely\
3 \ on the words."
4 id: 36650ba2-a369-4974-b7d5-508660b8f007
+0
-4
data/quotes/36721ac7-5f3e-4261-86c3-f4bef979d27b less more
1 author: Alan Kay
2 content: Being able to read a warning on a pill bottle or write about a summer vacation
3 is not literacy and our society should not treat it so.
4 id: 36721ac7-5f3e-4261-86c3-f4bef979d27b
+0
-4
data/quotes/37bffce5-94e9-4207-a394-6bc0fecc12b2 less more
1 author: Paul Rand
2 content: It is important to use your hands. This is what distinguishes you from a
3 cow or a computer operator.
4 id: 37bffce5-94e9-4207-a394-6bc0fecc12b2
+0
-4
data/quotes/386b8bd4-fd81-43d1-a86c-d02f494abb29 less more
1 author: Wallace Sayre
2 content: Academic politics is the most vicious and bitter form of politics, because
3 the stakes are so low.
4 id: 386b8bd4-fd81-43d1-a86c-d02f494abb29
+0
-4
data/quotes/38999754-0e2a-4abb-960f-8aaec6b960f3 less more
1 author: Haruki Murakami
2 content: Having an object that symbolizes freedom might make a person happier than
3 actually getting the freedom it represents.
4 id: 38999754-0e2a-4abb-960f-8aaec6b960f3
+0
-9
data/quotes/389c6bc8-aebe-4d70-bf66-39463e3fe3bd less more
1 author: 'Spider Jerusalem
2
3 Warren Ellis''s "Transmetropolitan"'
4 content: 'The future is an inherently good thing, and we move into it one winter at
5 a time. Things get better one winter at a time. So if you''re going to celebrate
6 something, then have a drink on this: the world is, generally and on balance, a
7 better place to live this year than it was last year. For instance, I didn''t have
8 this gun last year.'
9 id: 389c6bc8-aebe-4d70-bf66-39463e3fe3bd
+0
-5
data/quotes/38dabd07-ac3a-44cf-94c2-3f3f92534d47 less more
1 author: Ta-Nehisi Coates
2 content: The fact that 'there are only a handful of bad cops' cuts no ice with me.
3 If 'only a handful of McDonald's are spitting in your food,' you're not going to
4 McDonald's.
5 id: 38dabd07-ac3a-44cf-94c2-3f3f92534d47
+0
-4
data/quotes/39021d5e-6509-4ee5-94b2-47ec7428de4a less more
1 author: Delirium
2 content: Sometimes I remember things everyone else has forgotten for ever and always.
3 Does that ever happen to you?
4 id: 39021d5e-6509-4ee5-94b2-47ec7428de4a
+0
-9
data/quotes/390f213f-86df-467e-82aa-7ad945eb0f55 less more
1 author: Umberto Eco, Foucault's Pendulum
2 content: "Incredulity doesn't kill curiosity; it encourages it. Though distrustful\
3 \ of logical chains of ideas, I loved the polyphony of ideas. As long as you don't\
4 \ believe in them, the collision of two ideas \u2014 both false \u2014 can create\
5 \ a pleasing interval, a kind of diabolus in musica. I had no respect for some ideas\
6 \ people were willing to stake their lives on, but two or three ideas that I did\
7 \ not respect might still make a nice melody. Or have a good beat, and if it was\
8 \ jazz, all the better."
9 id: 390f213f-86df-467e-82aa-7ad945eb0f55
+0
-4
data/quotes/3916b701-f127-4183-8e81-e5dd3495127a less more
1 author: Thich Nhat Hanh, The Heart of the Buddha's Teaching
2 content: Relatively speaking, there are right views and wrong views. But if we look
3 more deeply we see that all views are wrong.
4 id: 3916b701-f127-4183-8e81-e5dd3495127a
+0
-5
data/quotes/3965dfd6-d1e4-4dd8-9361-87e9b454e8e3 less more
1 author: Paul Ford
2 content: '[Plan 9] did not become the successor to Unix, but the ideas within it are
3 reinvented, in a debased and half-considered form, about once an hour in the open
4 source community.'
5 id: 3965dfd6-d1e4-4dd8-9361-87e9b454e8e3
+0
-3
data/quotes/3a1e7d31-f4f3-4d4c-90b2-d5471d191941 less more
1 author: Orson Welles
2 content: I don't pray because I don't want to bore God.
3 id: 3a1e7d31-f4f3-4d4c-90b2-d5471d191941
+0
-4
data/quotes/3a9ecb75-c623-4c78-ac94-a1bfe36966d6 less more
1 author: Vincent van Gogh
2 content: Poetry surrounds us everywhere, but putting it on paper is, alas, not so
3 easy as looking at it.
4 id: 3a9ecb75-c623-4c78-ac94-a1bfe36966d6
+0
-5
data/quotes/3af0dfa7-b339-4a3e-9bc6-5fb86c30276b less more
1 author: Mad Tom, Grant Morrison's The Invisibles
2 content: People look at us and see the poor and the mad, but they're looking at us
3 through the bars of their cages. There's a palace in your head, boy. Learn to live
4 in it always.
5 id: 3af0dfa7-b339-4a3e-9bc6-5fb86c30276b
+0
-9
data/quotes/3b53abcf-408d-4334-9f7a-c19804ef0bcb less more
1 author: Jacques Lacan
2 content: 'First off, let''s get rid of this average Joe, who does not exist. He is
3 a statistical fiction. There are individuals, and that is all. When I hear people
4 talking about the guy in the street, studies of public opinion, mass phenomena,
5 and so on, I think of all the patients that I''ve seen on the couch in forty years
6 of listening. None of them in any measure resembled the others, none of them had
7 the same phobias and anxieties, the same way of talking, the same fear of not understanding.
8 Who is the average Joe: me, you, my concierge, the president of the Republic?'
9 id: 3b53abcf-408d-4334-9f7a-c19804ef0bcb
+0
-4
data/quotes/3b7cb313-5e2b-453a-83f3-3c6f8d0e241b less more
1 author: Gertrude Stein
2 content: Everyone gets so much information all day long that they lose their common
3 sense.
4 id: 3b7cb313-5e2b-453a-83f3-3c6f8d0e241b
+0
-6
data/quotes/3bbd67a5-9dc8-475e-bf96-4a1b97fb8e76 less more
1 author: Thant Tessman
2 content: OO is like the Bible in that which scripture is to be interpreted metaphorically,
3 and which is to be interpreted literally, is entirely a function of the religious
4 agenda of the commentator. My own advice is to keep in mind that the stuff of computer
5 programs is nothing but metaphor.
6 id: 3bbd67a5-9dc8-475e-bf96-4a1b97fb8e76
+0
-4
data/quotes/3c4e44eb-3910-404c-a3d0-15540e30f32b less more
1 author: Richard P. Gabriel
2 content: All significant programming languages are expressively, conceptually, and
3 aesthetically equivalent to Fortran and assembly language.
4 id: 3c4e44eb-3910-404c-a3d0-15540e30f32b
+0
-7
data/quotes/3c56fe3c-1fcb-48a8-a0e1-d36f0fee7e80 less more
1 author: Miyamoto Musashi
2 content: "The primary thing when you take a sword in your hands is your intention\
3 \ to cut the enemy, whatever the means. Whenever you parry, hit, spring, strike\
4 \ or touch the enemy\u2019s cutting sword, you must cut the enemy in the same movement.\
5 \ It is essential to attain this. If you think only of hitting, springing, striking\
6 \ or touching the enemy, you will not be able actually to cut him."
7 id: 3c56fe3c-1fcb-48a8-a0e1-d36f0fee7e80
+0
-4
data/quotes/3c67f18e-910a-46dd-840e-815eeb744efa less more
1 author: Umberto Eco
2 content: A narrator should not supply interpretations of his work; otherwise he would
3 not have written a novel, which is a machine for generating interpretations.
4 id: 3c67f18e-910a-46dd-840e-815eeb744efa
+0
-5
data/quotes/3c91414a-b55b-4ba8-8829-25766eab272e less more
1 author: Pastabagel
2 content: "The world is my museum, displaying my collections on loan. The James Savages\
3 \ of the world are merely curators.\r\n\r\nAs I am the curator of their things,\
4 \ and thus together we all share the world."
5 id: 3c91414a-b55b-4ba8-8829-25766eab272e
+0
-6
data/quotes/3c9c9e96-e785-4246-b34d-dfee3bb1467c less more
1 author: E.E. Cummings
2 content: "my advice to all young people who wish to become poets is: do something\
3 \ easy, like learning how to blow up the world\u2014unless you're not only willing,\
4 \ but glad, to feel and work and fight till you die. \nDoes this sound dismal?\
5 \ It isn't. \nIt's the most wonderful life on earth. \nOr so I feel."
6 id: 3c9c9e96-e785-4246-b34d-dfee3bb1467c
+0
-4
data/quotes/3d096faa-cced-4f43-b43d-0e4b8b828cb9 less more
1 author: Mel Brooks
2 content: Tragedy is when I cut my finger. Comedy is when you fall down an open manhole
3 cover and die.
4 id: 3d096faa-cced-4f43-b43d-0e4b8b828cb9
+0
-4
data/quotes/3e391c3c-7c5c-4f89-97eb-182d323b15c5 less more
1 author: Woody Allen
2 content: I don't want to achieve immortality through my work ... I want to achieve
3 it through not dying.
4 id: 3e391c3c-7c5c-4f89-97eb-182d323b15c5
+0
-3
data/quotes/3f4fd4db-3b3b-4143-8914-017e25fa578c less more
1 author: Delirium
2 content: Not knowing everything is all that makes it okay, sometimes.
3 id: 3f4fd4db-3b3b-4143-8914-017e25fa578c
+0
-3
data/quotes/404486f5-31f4-4ae8-ac6d-11a7ce176e82 less more
1 author: Ralph Waldo Emerson
2 content: Man is a god, in ruins
3 id: 404486f5-31f4-4ae8-ac6d-11a7ce176e82
+0
-7
data/quotes/40c70947-257a-4cf9-9b62-e783e238c1b4 less more
1 author: Niccolo Machiavelli
2 content: '...men may second their fortune, but cannot oppose it; that they may weave
3 its warp, but cannot break it. Yet they should never give up, because there is always
4 hope, though they know not the end and move towards it along roads which cross one
5 another and as yet are unexplored; and since there is hope, they should not despair,
6 no matter what fortune brings or in what travail they find themselves.'
7 id: 40c70947-257a-4cf9-9b62-e783e238c1b4
+0
-4
data/quotes/41c5f555-aef7-473f-abe3-be1008a250de less more
1 author: Claire Wolfe
2 content: America is at that awkward stage. It's too late to work within the system,
3 but too early to shoot the bastards.
4 id: 41c5f555-aef7-473f-abe3-be1008a250de
+0
-5
data/quotes/42fa8ab2-7878-451b-b565-5bfa41a91d6f less more
1 author: John Cage
2 content: If you develop an ear for sounds that are musical it is like developing an
3 ego. You begin to refuse sounds that are not musical and that way cut yourself off
4 from a good deal of experience.
5 id: 42fa8ab2-7878-451b-b565-5bfa41a91d6f
+0
-5
data/quotes/431df26c-1cf3-480e-91a8-402e47122c20 less more
1 author: Antonio Gramsci
2 content: I hate the indifferent. I believe that living means taking sides. Those who
3 really live cannot help being a citizen and a partisan. Indifference and apathy
4 are parasitism, perversion, not life. That is why I hate the indifferent.
5 id: 431df26c-1cf3-480e-91a8-402e47122c20
+0
-3
data/quotes/438bb1c4-c4e9-4b92-b28f-44c80333b083 less more
1 author: 'Star Trek: The Next Generation'
2 content: You will never come up against a greater adversary than your own potential.
3 id: 438bb1c4-c4e9-4b92-b28f-44c80333b083
+0
-3
data/quotes/43d8b144-1b49-42d1-a558-5dea1fad426f less more
1 author: supposedly seen on a bulletin board at Fermi National Accelerator Laboratory
2 content: Never apply a Star Trek solution to a Babylon 5 problem.
3 id: 43d8b144-1b49-42d1-a558-5dea1fad426f
+0
-6
data/quotes/4449ce76-ef07-4fc4-90ef-14b8bd75137b less more
1 author: George Carlin
2 content: Nobody questions things anymore. Nobody questions things. Everybody's too
3 fat and happy. Everybody's got a cell phone that will make pancakes and rub their
4 balls now. Way too fucking prosperous for our own good. Way too fucking prosperous.
5 We've been bought off and silenced by toys and gizmos.
6 id: 4449ce76-ef07-4fc4-90ef-14b8bd75137b
+0
-4
data/quotes/446de410-f071-45c6-8372-e8bbfb6be27e less more
1 author: John Hodgman
2 content: Generally speaking, I think it is fair to say that I am a friend to the creatures
3 of the earth when I am not busy eating them or wearing them.
4 id: 446de410-f071-45c6-8372-e8bbfb6be27e
+0
-4
data/quotes/453838ee-8ecd-4718-900c-0cc9d63a732a less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: Love, for me, is not sentimental love. True love is cold love. True love
3 is cold without mercy.
4 id: 453838ee-8ecd-4718-900c-0cc9d63a732a
+0
-3
data/quotes/456ed4bd-8b1b-4199-a30d-4e151e48253b less more
1 author: Steve Wozniak
2 content: All the best people in life seem to like Linux.
3 id: 456ed4bd-8b1b-4199-a30d-4e151e48253b
+0
-4
data/quotes/45717b80-2766-4144-a7de-77b38e24bba9 less more
1 author: why the lucky stiff
2 content: Python keeps trying to shed its functional skin, only to reveal its acid
3 wash jeans underneath. Ironed and starched and pegged.
4 id: 45717b80-2766-4144-a7de-77b38e24bba9
+0
-5
data/quotes/459f0c59-62cd-4d84-9a38-d3e9a7bc755f less more
1 author: Rita Ferrandino
2 content: Just as playing Dungeons & Dragons doesn't turn a kid into a wizard, pretending
3 to be a homicidal maniac online doesn't make a man a killer. But determining what
4 it does make him is one of the biggest ethical dilemmas facing modern society.
5 id: 459f0c59-62cd-4d84-9a38-d3e9a7bc755f
+0
-10
data/quotes/45b8c98d-20f6-4457-9362-b34f724475d4 less more
1 author: Carl Sagan
2 content: "I worry that, especially as the Millennium edges nearer, pseudoscience and\
3 \ superstition will seem year by year more tempting, the siren song of unreason\
4 \ more sonorous and attractive. Where have we heard it before? Whenever our ethnic\
5 \ or national prejudices are aroused, in times of scarcity, during challenges to\
6 \ national self-esteem or nerve, when we agonize about our diminished cosmic place\
7 \ and purpose, or when fanaticism is bubbling up around us\u2014then, habits of\
8 \ thought familiar from ages past reach for the controls.\nThe candle flame gutters.\
9 \ Its little pool of light trembles. Darkness gathers. The demons begin to stir."
10 id: 45b8c98d-20f6-4457-9362-b34f724475d4
+0
-5
data/quotes/462824c4-5afd-46f8-89cc-0a9badbeb8e3 less more
1 author: Neil Gaiman's Sandman
2 content: It was then that [she] noticed that she had absent-mindedly transformed into
3 a hundred and eleven perfect, tiny multicoloured fish. Each fish sang a different
4 song.
5 id: 462824c4-5afd-46f8-89cc-0a9badbeb8e3
+0
-5
data/quotes/47148b13-e77c-4d42-a098-b5c2291e10cf less more
1 author: Autrijus Tang
2 content: Haskell is faster than C++, more concise than Perl, more regular than Python,
3 more flexible than Ruby, more typeful than C#, more robust than Java, and has absolutely
4 nothing in common with PHP.
5 id: 47148b13-e77c-4d42-a098-b5c2291e10cf
+0
-9
data/quotes/475a39ac-9f04-471e-b56f-db2289d5b016 less more
1 author: Erik Naggum
2 content: 'there is only one solution: do not use Microsoft products. do not expose
3 yourself to anything they do. the day will come when it is much more important in
4 presidential campaigns and to carreers in general that you have not used Microsoft
5 than that you have not taken certain drugs. the day will come when we figure out
6 which planet Bill Gates was thrown out of and then we can go blow it up. in the
7 meantime, resistance is not futile. only the weak of mind will be assimilated, and
8 they are no loss, anyway.'
9 id: 475a39ac-9f04-471e-b56f-db2289d5b016
+0
-3
data/quotes/47d6d482-a8d5-4c83-b6f6-4ca8871f5c09 less more
1 author: rpg
2 content: Abstraction is layering ignorance on top of reality.
3 id: 47d6d482-a8d5-4c83-b6f6-4ca8871f5c09
+0
-5
data/quotes/48535827-c8ed-4de8-97e9-684a6c15adfb less more
1 author: Buckminster Fuller
2 content: When I am working on a problem, I never think about beauty. I only think
3 about how to solve the problem. But when I have finished, if the solution is not
4 beautiful, I know it is wrong.
5 id: 48535827-c8ed-4de8-97e9-684a6c15adfb
+0
-7
data/quotes/48ef5e79-317e-4bbc-bf1a-544b48dadab8 less more
1 author: monetizeyourcat
2 content: 'i like how "Philosoraptor" attempts to connote something being wacky and
3 avant-garde by linking two of the most overrated things in the world: to wit a bunch
4 of pathetic little animals that fed exclusively on putrid ancient carrion and produced
5 nothing of interest to any reasonable person before dying unlamented in a ditch
6 somewhere, and velociraptors'
7 id: 48ef5e79-317e-4bbc-bf1a-544b48dadab8
+0
-4
data/quotes/49506e13-b43d-4f21-83f4-79c0f1477e38 less more
1 author: Anonymous
2 content: It's kinda sad that the only way to make someone go out and see or do something
3 beautiful is by ending the god damn world.
4 id: 49506e13-b43d-4f21-83f4-79c0f1477e38
+0
-4
data/quotes/4a5b7298-fd7f-4045-8a18-98ce954608dd less more
1 author: Emerson Cod
2 content: The truth ain't like puppies, a bunch of them running around, you pick your
3 favorite. One truth and it has come a-knockin'.
4 id: 4a5b7298-fd7f-4045-8a18-98ce954608dd
+0
-7
data/quotes/4a6ecfbd-e506-4241-9d49-dbb215af2ba4 less more
1 author: Doctor Who
2 content: '"I love old things. They make me feel sad."
3
4 "What''s good about sad?"
5
6 "It''s happy for deep people."'
7 id: 4a6ecfbd-e506-4241-9d49-dbb215af2ba4
+0
-9
data/quotes/4ac0713d-01fe-4375-94e1-1054816e2afb less more
1 author: David Foster Wallace
2 content: "An ad that pretends to be art is \u2014 at absolute best \u2014 like somebody\
3 \ who smiles warmly at you only because he wants something from you. This is dishonest,\
4 \ but what's sinister is the cumulative effect that such dishonesty has on us: since\
5 \ it offers a perfect facsimile or simulacrum of goodwill without goodwill's real\
6 \ spirit, it messes with our heads and eventually starts upping our defenses even\
7 \ in cases of genuine smiles and real art and true goodwill. It makes us feel confused\
8 \ and lonely and impotent and angry and scared. It causes despair."
9 id: 4ac0713d-01fe-4375-94e1-1054816e2afb
+0
-10
data/quotes/4b1f993c-eb89-4cb9-95c6-2d1d14faa6bb less more
1 author: Tim O'Brien
2 content: A true war story is never moral. It does not instruct, nor encourage virtue,
3 nor suggest models of proper human behavior, nor restrain men from doing the things
4 men have always done. If a story seems moral, do not believe it. If at the end of
5 a war story you feel uplifted, or if you feel that some small bit of rectitude has
6 been salvaged from the larger waste, then you have been made the victim of a very
7 old and terrible lie. There is no rectitude whatsoever. There is no virtue. As a
8 first rule of thumb, therefore, you can tell a true war story by its absolute and
9 uncompromising allegiance to obscenity and evil.
10 id: 4b1f993c-eb89-4cb9-95c6-2d1d14faa6bb
+0
-4
data/quotes/4bc8a5c1-441d-476d-9e0f-cbc4a73ca495 less more
1 author: Antonio Gramsci
2 content: 'The old world is dying away, and the new world struggles to come forth:
3 now is the time of monsters.'
4 id: 4bc8a5c1-441d-476d-9e0f-cbc4a73ca495
+0
-6
data/quotes/4be06fb2-e7a9-4467-909a-5999fa705b89 less more
1 author: pastabagel
2 content: It wouldn't be hard to extinguish Apple from the marketplace. Apple's products
3 aren't really that good. Yes, a lot of people buy Apple products. But a lot of people
4 also read The Secret and watch Glee. I wouldn't put a lot of stock in what the masses
5 think.
6 id: 4be06fb2-e7a9-4467-909a-5999fa705b89
+0
-5
data/quotes/4c274062-ab9e-42c4-8598-7b89fdaee73e less more
1 author: Roland Barthes
2 content: 'Language is a skin: I rub my language against the other. It is as if I had
3 words instead of fingers, or fingers at the tip of my words. My language trembles
4 with desire.'
5 id: 4c274062-ab9e-42c4-8598-7b89fdaee73e
+0
-5
data/quotes/4c315c86-5f00-4f3b-b51f-8159ad4068df less more
1 author: J. L. Baudry
2 content: For while there is clearly a mask, there is nothing behind it; it is a surface
3 which conceals nothing but itself, and yet in so far as it suggests there is something
4 behind it, prevents us from considering it as surface.
5 id: 4c315c86-5f00-4f3b-b51f-8159ad4068df
+0
-6
data/quotes/4cb999a2-93a7-440f-ba62-6cf9941ada50 less more
1 author: Lynda Barry
2 content: "I don\u2019t think there\u2019s any other reason we have art than to save\
3 \ us, the way our liver is there to keep us alive. I have come to regard the arts\
4 \ as external organs. They have always been as critical to me as my kidneys are.\
5 \ It\u2019s like a dialysis machine you draw yourself."
6 id: 4cb999a2-93a7-440f-ba62-6cf9941ada50
+0
-7
data/quotes/4d579513-65ff-4270-889b-60ee6bf9d5fb less more
1 author: 'Gilles Deleuze
2
3 '
4 content: 'There''s no need to fear or hope, but only to look for new weapons.
5
6 '
7 id: 4d579513-65ff-4270-889b-60ee6bf9d5fb
+0
-5
data/quotes/4e729aca-23ef-481a-b2e4-7b058b8741c2 less more
1 author: Robert Heinlein
2 content: Anyone who cannot cope with mathematics is not fully human. At best he is
3 a tolerable subhuman who has learned to wear shoes, bathe, and not make messes in
4 the house.
5 id: 4e729aca-23ef-481a-b2e4-7b058b8741c2
+0
-4
data/quotes/4e947b23-62f1-4d23-8bff-6ddf59e6dd96 less more
1 author: Aleister Crowley
2 content: All life is conflict. Every breath that you draw represents a victory in
3 the struggle of the whole Universe.
4 id: 4e947b23-62f1-4d23-8bff-6ddf59e6dd96
+0
-6
data/quotes/4ea2526a-8c89-4468-97e4-f261810752e7 less more
1 author: Emil Cioran
2 content: "The 'west' \u2014 what curse has fallen upon it that at the term of its\
3 \ trajectory it produces only these businessmen, these shopkeepers, these racketeers\
4 \ with their blank stares and atrophied smiles... is it with such vermin as this\
5 \ that a civilization so delicate and so complex must come to an end?"
6 id: 4ea2526a-8c89-4468-97e4-f261810752e7
+0
-5
data/quotes/4f54af0c-7744-4cb0-87b9-611afb9be2d5 less more
1 author: Jack Brown
2 content: Lord, grant me the serenity to accept the things I cannot change, the courage
3 to change the things I can and the wisdom to hide the bodies of those people I had
4 to kill because they pissed me off.
5 id: 4f54af0c-7744-4cb0-87b9-611afb9be2d5
+0
-4
data/quotes/4f602194-0bb9-4e94-a4c9-1a2b0b07f3c4 less more
1 author: Richard Feynman
2 content: 'Science is like sex: sometimes something useful comes out, but that''s not
3 why we''re doing it.'
4 id: 4f602194-0bb9-4e94-a4c9-1a2b0b07f3c4
+0
-7
data/quotes/5066e36a-a02e-4e09-99d9-c8508f146654 less more
1 author: Warren Ellis
2 content: We're deathly afraid of that stabbing word 'pretentious,' the word that students
3 use to curse each other's ambition. It's a young person's word, a shortcut-to-thinking
4 word. I'm a big fan of pretension. It means 'an aspiration or intention that may
5 or may not reach fulfillment.' It doesn't mean failing upward. It means trying to
6 exceed your grasp. Which is how things grow.
7 id: 5066e36a-a02e-4e09-99d9-c8508f146654
+0
-7
data/quotes/50f1ffc8-ad00-451b-830e-0597850d8732 less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: 'I believe in clear-cut positions. I think that the most arrogant position
3 is this apparent, multidisciplinary modesty of "what I am saying now is not unconditional,
4 it is just a hypothesis," and so on. It really is a most arrogant position. I think
5 that the only way to be honest and expose yourself to criticism is to state clearly
6 and dogmatically where you are. You must take the risk and have a position. '
7 id: 50f1ffc8-ad00-451b-830e-0597850d8732
+0
-7
data/quotes/50ff5e41-601a-4ada-9a97-8bedadc2529d less more
1 author: E.W. Dijkstra
2 content: "Needless to say, this vision of what computing science is about is not universally\
3 \ applauded. On the contrary, it has met widespread\u2014and sometimes even violent\u2014\
4 opposition from ... the subculture of the compulsive programmer, whose ethics prescribe\
5 \ that one silly idea and a month of frantic coding should suffice to make him a\
6 \ life-long millionaire."
7 id: 50ff5e41-601a-4ada-9a97-8bedadc2529d
+0
-4
data/quotes/5108b98b-1fa6-44ca-97f2-ed0433cfc5cf less more
1 author: They Might Be Giants
2 content: We can't be silent, 'cause they might be giants, and what are we going to
3 do unless they are?
4 id: 5108b98b-1fa6-44ca-97f2-ed0433cfc5cf
+0
-5
data/quotes/5145b8c5-a7fe-4228-aacb-a448e998e432 less more
1 author: Carl Jung
2 content: One of the most difficult tasks men can perform, however much others may
3 despise it, is the invention of good games and it cannot be done by men out of touch
4 with their instinctive selves.
5 id: 5145b8c5-a7fe-4228-aacb-a448e998e432
+0
-5
data/quotes/5177fe8c-9008-4ae3-be04-e2b1fa70018b less more
1 author: They Might Be Giants, "Don't Let's Start"
2 content: 'No one in the world ever gets what they want and that is beautiful
3
4 Everybody dies frustrated and sad and that is beautiful.'
5 id: 5177fe8c-9008-4ae3-be04-e2b1fa70018b
+0
-4
data/quotes/51987f01-c205-4d05-980f-71266717f458 less more
1 author: "Andr\xE9 Breton"
2 content: Surrealism aims at the total transformation of the mind and all that resembles
3 it.
4 id: 51987f01-c205-4d05-980f-71266717f458
+0
-4
data/quotes/51b33111-a82d-49b4-a4b5-a1d358bdcdb3 less more
1 author: Marshall McLuhan
2 content: We're driving faster and faster into the future, trying to steer by using
3 only the rear-view mirror.
4 id: 51b33111-a82d-49b4-a4b5-a1d358bdcdb3
+0
-7
data/quotes/51ee1a20-00e3-4955-980a-dcb8d756008c less more
1 author: John Rogers
2 content: 'There are two novels that can change a bookish fourteen-year old''s life:
3 The Lord of the Rings and Atlas Shrugged. One is a childish fantasy that often engenders
4 a lifelong obsession with its unbelievable heroes, leading to an emotionally stunted,
5 socially crippled adulthood, unable to deal with the real world. The other, of course,
6 involves orcs.'
7 id: 51ee1a20-00e3-4955-980a-dcb8d756008c
+0
-3
data/quotes/51f8f202-e6fd-4e80-a22d-39a2fd5b5869 less more
1 author: Alejandro Jodorowsky
2 content: Kill superheroes! Tell your own dreams.
3 id: 51f8f202-e6fd-4e80-a22d-39a2fd5b5869
+0
-3
data/quotes/52758708-871b-4c9e-9d8b-0287fa9e827f less more
1 author: Groucho Marx
2 content: Those are my principles, and if you don't like them... well, I have others.
3 id: 52758708-871b-4c9e-9d8b-0287fa9e827f
+0
-5
data/quotes/529aa7e1-1315-4cd1-8d67-85adf089084e less more
1 author: George Santayana
2 content: There are books in which the footnotes, or the comments scrawled by some
3 reader's hand in the margin, are more interesting than the text. The world is one
4 of those books.
5 id: 529aa7e1-1315-4cd1-8d67-85adf089084e
+0
-6
data/quotes/52e8c614-c348-4214-bbff-5a611b924190 less more
1 author: Alfred N. Whitehead
2 content: '"Necessity is the mother of invention" is a silly proverb. "Necessity is
3 the mother of futile dodges" is much closer to the truth. The basis of growth of
4 modern invention is science, and science is almost wholly the outgrowth of pleasurable
5 intellectual curiosity.'
6 id: 52e8c614-c348-4214-bbff-5a611b924190
+0
-3
data/quotes/54625e5f-9ed8-4d04-a485-be040fbf467c less more
1 author: Le Cercle Rouge
2 content: All men are guilty. They're born innocent, but it doesn't last.
3 id: 54625e5f-9ed8-4d04-a485-be040fbf467c
+0
-6
data/quotes/549afeaf-4b17-418b-800d-ae12e6f89d66 less more
1 author: Ron Minnich
2 content: You want to make your way in the CS field? Simple. Calculate rough time of
3 amnesia (hell, 10 years is plenty, probably 10 months is plenty), go to the dusty
4 archives, dig out something fun, and go for it. It's worked for many people, and
5 it can work for you.
6 id: 549afeaf-4b17-418b-800d-ae12e6f89d66
+0
-6
data/quotes/54d57888-e66f-4950-8f92-dbc4ec9f91fa less more
1 author: Jerry "Tycho" Holkins
2 content: People seemed to like this better, but only marginally so - the way one might
3 prefer to be stabbed than shot. Optimally, one isn't stabbed or shot. Optimally,
4 one eats some cake! But there are times when cake is not available, and instead
5 we are destroyed. This is the deep poetry of the universe.
6 id: 54d57888-e66f-4950-8f92-dbc4ec9f91fa
+0
-10
data/quotes/55402a31-05b0-4f41-beaa-e39cc5e9edc8 less more
1 author: "Slavoj \u017Di\u017Eek\n"
2 content: "Yeah, because I'm extremely romantic here. You know what is my fear? This\
3 \ postmodern, permissive, pragmatic etiquette towards sex. It's horrible. They claim\
4 \ sex is healthy; it's good for the heart, for blood circulation, it relaxes you.\
5 \ They even go into how kissing is also good because it develops the muscles here\u2014\
6 this is horrible, my God! It's no longer that absolute passion. I like this idea\
7 \ of sex as part of love, you know: 'I'm ready to sell my mother into slavery just\
8 \ to fuck you for ever.' There is something nice, transcendent, about it. I remain\
9 \ incurably romantic.\n"
10 id: 55402a31-05b0-4f41-beaa-e39cc5e9edc8
+0
-3
data/quotes/55a7517d-10a8-45ba-bfba-d7a25fd1b41e less more
1 author: Charles Baudelaire
2 content: Do not look for my heart any more; the beasts have eaten it.
3 id: 55a7517d-10a8-45ba-bfba-d7a25fd1b41e
+0
-11
data/quotes/55b25373-b1ad-4285-94b5-7989482fd5e1 less more
1 author: Brian Eno
2 content: "Stop thinking about art works as objects, and start thinking about them\
3 \ as triggers for experiences. (Roy Ascott's phrase.) That solves a lot of problems:\
4 \ we don't have to argue whether photographs are art, or whether performances are\
5 \ art, or whether Carl Andre's bricks or Andrew Serranos's piss or Little Richard's\
6 \ 'Long Tall Sally' are art, because we say, 'Art is something that happens, a process,\
7 \ not a quality, and all sorts of things can make it happen.' ... [W]hat makes a\
8 \ work of art 'good' for you is not something that is already 'inside' it, but something\
9 \ that happens inside you \u2014 so the value of the work lies in the degree to\
10 \ which it can help you have the kind of experience that you call art."
11 id: 55b25373-b1ad-4285-94b5-7989482fd5e1
+0
-6
data/quotes/56c82cb8-922b-4fa3-b306-32f4bba18543 less more
1 author: Haruki Murakami, Kafka on the Shore
2 content: People are drawn deeper into tragedy not by their defects but by their virtues.
3 Sophocles' Oedipus Rex being a great example. Oedipus is drawn into tragedy not
4 because of laziness or stupidity, but because of his courage and honesty. So an
5 inevitable irony results.
6 id: 56c82cb8-922b-4fa3-b306-32f4bba18543
+0
-6
data/quotes/56f2b8c6-11fc-43fe-99e6-4782beca5d9d less more
1 author: William Morris
2 content: "Worthy work carries with it the hope of pleasure in rest, the hope of the\
3 \ pleasure in our using what it makes, and the hope of pleasure in our daily creative\
4 \ skill. All other work but this is worthless; it is slaves' work \u2014 mere toiling\
5 \ to live, that we may live to toil."
6 id: 56f2b8c6-11fc-43fe-99e6-4782beca5d9d
+0
-4
data/quotes/57241033-21b2-46a4-aa1b-0d77f041e505 less more
1 author: Umberto Eco
2 content: '...semiotics is in principle the discipline studying everything which can
3 be used in order to lie.'
4 id: 57241033-21b2-46a4-aa1b-0d77f041e505
+0
-3
data/quotes/5752c931-c442-4e2d-bfb6-2e842208c5c3 less more
1 author: Bruce Schneier
2 content: The surest defense against terrorism is to refuse to be terrorized.
3 id: 5752c931-c442-4e2d-bfb6-2e842208c5c3
+0
-3
data/quotes/57562bc1-5c36-448b-98e5-1c3e9020e511 less more
1 author: Philip K. Dick
2 content: It is sometimes an appropriate response to reality to go insane.
3 id: 57562bc1-5c36-448b-98e5-1c3e9020e511
+0
-4
data/quotes/57e5d5bb-2847-4f7a-bb91-029aa4e8887b less more
1 author: Frank Lloyd Wright
2 content: Early in life I had to choose between honest arrogance and hypocritical humility.
3 I chose honest arrogance and have seen no occasion to change.
4 id: 57e5d5bb-2847-4f7a-bb91-029aa4e8887b
+0
-3
data/quotes/58aa8275-b537-42e1-a87f-d13ae16e56e3 less more
1 author: Anonymous
2 content: Hell is other people's Perl.
3 id: 58aa8275-b537-42e1-a87f-d13ae16e56e3
+0
-7
data/quotes/59efd5c7-11f9-47d8-aa3a-aa99fceef0f8 less more
1 author: Keith Johnstone
2 content: People think of good and bad teachers as engaged in the same activity, as
3 if education was a substance, and that bad teachers supply a little of the substance,
4 and good teachers supply a lot. This makes it difficult to understand that education
5 can be a destructive process, and that bad teachers are wrecking talent, and that
6 good and bad teachers are engaged in opposite activities.
7 id: 59efd5c7-11f9-47d8-aa3a-aa99fceef0f8
+0
-3
data/quotes/59f04596-d03c-4d89-b692-9664d098bee2 less more
1 author: Buttercup Festival
2 content: Sleep is an appointment kept by the sane.
3 id: 59f04596-d03c-4d89-b692-9664d098bee2
+0
-12
data/quotes/5a1d8747-66fa-4ef0-bf79-e6c6214f7a25 less more
1 author: Neil Gaiman
2 content: Whenever I do things because I want to do it and because it seems fun or
3 interesting and so on and so forth, it almost always works. And it almost always
4 winds up more than paying for itself. Whenever I do things for the money, not only
5 does it prove a headache and a pain in the neck and come with all sorts of awful
6 things attached, but I normally don't wind up getting the money, either. So, after
7 a while, you do sort of start to learn [to] just forget about the things where people
8 come to you and dangle huge wads of cash in front of you. Go for the one that seems
9 interesting because, even if it all falls apart, you've got something interesting
10 out of it. Whereas, the other way, you normally wind up getting absolutely nothing
11 out of it.
12 id: 5a1d8747-66fa-4ef0-bf79-e6c6214f7a25
+0
-12
data/quotes/5a1fed84-6250-45cb-8895-b24dffb2a6a7 less more
1 author: Buckminster Fuller
2 content: We must do away with the absolutely specious notion that everybody has to
3 earn a living. It is a fact today that one in ten thousand of us can make a technological
4 breakthrough capable of supporting all the rest. The youth of today are absolutely
5 right in recognizing this nonsense of earning a living. We keep inventing jobs because
6 of this false idea that everybody has to be employed at some kind of drudgery because,
7 according to Malthusian-Darwinian theory, he must justify his right to exist. So
8 we have inspectors of inspectors and people making instruments for inspectors to
9 inspect inspectors. The true business of people should be to go back to school and
10 think about whatever it was they were thinking about before somebody came along
11 and told them they had to earn a living.
12 id: 5a1fed84-6250-45cb-8895-b24dffb2a6a7
+0
-4
data/quotes/5a81e8ba-78b5-4763-9248-806e36e0fc07 less more
1 author: Don Delillo
2 content: She has her console and her random access memory. I have my nitwit piece
3 of paper. But I want something to pass between us.
4 id: 5a81e8ba-78b5-4763-9248-806e36e0fc07
+0
-5
data/quotes/5ba6b7ec-534b-4250-b715-65f5fe70d474 less more
1 author: Juan Carlo
2 content: "If you can\u2019t express something in an interesting fashion via the language\
3 \ of game mechanics, then you shouldn\u2019t be making a game. Instead, you should\
4 \ be expressing those ideas via some other medium."
5 id: 5ba6b7ec-534b-4250-b715-65f5fe70d474
+0
-4
data/quotes/5bded6ea-dd02-427e-a7ac-5f25c33c1ebb less more
1 author: Edsger Dijkstra
2 content: Beware of "the real world". A speaker's appeal to it is always an invitation
3 not to challenge his tacit assumptions.
4 id: 5bded6ea-dd02-427e-a7ac-5f25c33c1ebb
+0
-5
data/quotes/5c083dac-91a9-4a1c-aca4-a35d012884e0 less more
1 author: Haruki Murakami
2 content: Whether you take the doughnut hole as a blank space or as an entity unto
3 itself is a purely metaphysical question and does not affect the taste of the doughnut
4 one bit.
5 id: 5c083dac-91a9-4a1c-aca4-a35d012884e0
+0
-21
data/quotes/5c58aa7d-6d8a-46bb-aff9-894132cb6366 less more
1 author: Neil Gaiman
2 content: 'I was reading a book (about interjections, oddly enough) yesterday which
3 included the phrase "In these days of political correctness..." talking about no
4 longer making jokes that denigrated people for their culture or for the colour of
5 their skin. And I thought, "That''s not actually anything to do with ''political
6 correctness''. That''s just treating other people with respect."
7
8
9 Which made me oddly happy. I started imagining a world in which we replaced the
10 phrase "politically correct" wherever we could with "treating other people with
11 respect", and it made me smile.
12
13
14 You should try it. It''s peculiarly enlightening.
15
16
17 I know what you''re thinking now. You''re thinking "Oh my god, that''s treating
18 other people with respect gone mad!"
19
20 '
21 id: 5c58aa7d-6d8a-46bb-aff9-894132cb6366
+0
-5
data/quotes/5ca95297-1712-4a17-acf4-bda6af4f605f less more
1 author: St. Augustine
2 content: The good Christian should beware of mathematicians and all those who make
3 empty prophecies. That danger already exists that mathematicians have made a covenant
4 with the devil to darken the spirit and confine man to the bonds of Hell.
5 id: 5ca95297-1712-4a17-acf4-bda6af4f605f
+0
-3
data/quotes/5cc85b15-d6b5-43c0-ba79-5d8ce9723653 less more
1 author: Paul Romer
2 content: In advanced economies, recipes are more valuable than cooking.
3 id: 5cc85b15-d6b5-43c0-ba79-5d8ce9723653
+0
-5
data/quotes/5cd5a770-1a22-476c-b5f8-2b8ea26108cc less more
1 author: Roland Barthes
2 content: Bourgeois ideology is an ideology which refuses to allow itself to be identified
3 as an ideology by presenting itself as neutral, impartial, universal, objective
4 and value-free.
5 id: 5cd5a770-1a22-476c-b5f8-2b8ea26108cc
+0
-4
data/quotes/5da4917c-778f-454f-b39a-3458a2edf538 less more
1 author: Ignignokt, Aqua Teen Hunger Force
2 content: Just say "here" and we'll consider the word "here" to be short for "Here
3 I am, rock you like a hurricane."
4 id: 5da4917c-778f-454f-b39a-3458a2edf538
+0
-4
data/quotes/5dc8bc37-d21f-4e38-a84c-4506fa95e383 less more
1 author: Jorge Luis Borges
2 content: There are people who barely feel poetry, and they are generally dedicated
3 to teaching it.
4 id: 5dc8bc37-d21f-4e38-a84c-4506fa95e383
+0
-7
data/quotes/5e2231bc-e253-4b2b-b6ca-e98e2c7e7c29 less more
1 author: John Carmack
2 content: Some cynical people think that every activity must revolve around the mighty
3 dollar, and that anyone saying otherwise is just attempting to delude the public.
4 I will probably never be able to convice them that that isn't always the case, but
5 I do have the satisfaction of knowing that I live in a less dingy world than they
6 do.
7 id: 5e2231bc-e253-4b2b-b6ca-e98e2c7e7c29
+0
-7
data/quotes/5e966ce3-19dc-42f7-84b6-86667d9a8ee1 less more
1 author: William Deresiewicz
2 content: "Facebook's very premise\u2014and promise\u2014is that it makes our friendship\
3 \ circles visible. There they are, my friends, all in the same place. Except, of\
4 \ course, they're not in the same place, or, rather, they're not my friends. They're\
5 \ simulacra of my friends, little dehydrated packets of images and information,\
6 \ no more my friends than a set of baseball cards is the New York Mets."
7 id: 5e966ce3-19dc-42f7-84b6-86667d9a8ee1
+0
-4
data/quotes/5eb4d36a-872e-4cdb-b507-e3232ff9f4e4 less more
1 author: Frank Herbert
2 content: It is shocking to find how many people do not believe they can learn, and
3 how many more believe learning to be difficult.
4 id: 5eb4d36a-872e-4cdb-b507-e3232ff9f4e4
+0
-3
data/quotes/5f08a6f2-cf5e-4193-917d-820ecb574ce5 less more
1 author: Umberto Eco
2 content: I don't miss my youth. I'm glad I had one, but I wouldn't like to start over.
3 id: 5f08a6f2-cf5e-4193-917d-820ecb574ce5
+0
-5
data/quotes/5f3273aa-a6ba-41a2-bd91-eb6f7ffafa42 less more
1 author: Stewart Brand
2 content: Whenever I hear the word "share" I would reach for a gun if I had one. "Share"
3 is frequently followed by the word "feelings," and I have enough of my own thank
4 you; please do us both a favor and repress yours.
5 id: 5f3273aa-a6ba-41a2-bd91-eb6f7ffafa42
+0
-3
data/quotes/5f67e6b5-aa42-478b-acff-3a171affdf0f less more
1 author: Marshall McLuhan
2 content: I don't know who discovered water, but it wasn't a fish.
3 id: 5f67e6b5-aa42-478b-acff-3a171affdf0f
+0
-4
data/quotes/5f77f255-cb6b-40e5-be01-bdeed2a81767 less more
1 author: John Cage
2 content: "Q. \"Do you think everything works out for the best?\" \nA. \"Maybe not\
3 \ the best, but everything works out to something.\""
4 id: 5f77f255-cb6b-40e5-be01-bdeed2a81767
+0
-5
data/quotes/5fced641-1a9c-432e-b67b-a9cb62867879 less more
1 author: Brad Pitt
2 content: I've got a few men I respect very much and one would be Frank Gehry. He said
3 to me, 'If you know where it's going, it's not worth doing.' That's become like
4 a mantra for me. That's the life of the artist.
5 id: 5fced641-1a9c-432e-b67b-a9cb62867879
+0
-5
data/quotes/6003fa0a-2fee-4e79-9c6c-9058fc2d182f less more
1 author: Rainer Maria Rilke
2 content: Perhaps all the dragons in our lives are princesses who are only waiting
3 to see us act, just once, with beauty and courage. Perhaps everything that frightens
4 us is, in its deepest essence, something helpless that wants our love.
5 id: 6003fa0a-2fee-4e79-9c6c-9058fc2d182f
+0
-4
data/quotes/60aa5b47-3dc2-411d-8865-aeab2528df6e less more
1 author: Prince
2 content: The internet's completely over. ...all these computers and digital gadgets
3 are no good. They just fill your head with numbers and that can't be good for you.
4 id: 60aa5b47-3dc2-411d-8865-aeab2528df6e
+0
-5
data/quotes/60b95515-5bdf-49f3-a060-1a4699ae329e less more
1 author: Edwin Way Teale, quoted by Carl Sagan
2 content: It is morally as bad not to care whether a thing is true or not, so long
3 as it makes you feel good, as it is not to care how you got your money, so long
4 as you have got it.
5 id: 60b95515-5bdf-49f3-a060-1a4699ae329e
+0
-13
data/quotes/60c512b8-e076-44f9-b945-8cb754e39d2c less more
1 author: Alejandro Jodorowsky
2 content: "I do not want that the man conquers space \nIn the ships of NASA \nThese\
3 \ concentration camps of the spirit \nThese gigantic freezers vomiting the imperialism\
4 \ \nThese slaughters of plundering and plunder \nThis arrogance of bronze and\
5 \ thirst \nThis eunuchoid science \nNot the dribble of transistorised and riveted\
6 \ hulks \nThe divine one \nThe delirious one \nThe superb one \nCHAOS \nUNIVERSAL\
7 \ \nI want magical entities, vibrating vehicles \nTo prolong to be to it abyss\
8 \ \nLike fish of a timeless ocean. I want \nJewels, mechanics as perfect as the\
9 \ heart \nWomb-ships anterooms \nRebirth into other dimensions \nI want whore-ships\
10 \ driven \nBy the sperm of passionate ejaculations \nIn an engine of flesh \n\
11 I want rockets complex and secret, \nHumming-bird ornithopters, \nSipping the\
12 \ thousand-year-old nectar of dwarf stars...\n"
13 id: 60c512b8-e076-44f9-b945-8cb754e39d2c
+0
-5
data/quotes/60d71e02-a8ac-4ff3-884b-e52b92038162 less more
1 author: Casey McCann
2 content: Java seems to have been designed to strike a careful balance between making
3 the type system as obstructive as possible while minimizing any actual guarantees
4 of correctness.
5 id: 60d71e02-a8ac-4ff3-884b-e52b92038162
+0
-4
data/quotes/61d0735d-d228-435c-a0ca-92ebe7f9bd57 less more
1 author: "Werner Herzog\r\n"
2 content: I am so used to plunging into the unknown that any other surroundings and
3 form of existence strike me as exotic and unsuitable for human beings.
4 id: 61d0735d-d228-435c-a0ca-92ebe7f9bd57
+0
-4
data/quotes/621b2230-6fd0-49f6-a5ff-cd57bc4fc909 less more
1 author: Friederich Nietzsche
2 content: There is not sufficient love and goodness in the world to permit us to give
3 some of it away to imaginary beings.
4 id: 621b2230-6fd0-49f6-a5ff-cd57bc4fc909
+0
-4
data/quotes/62950ff2-c46b-407d-8b09-ab9bf030e150 less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: The only emotion which doesn't decieve is anxiety. All other emotions are
3 fake.
4 id: 62950ff2-c46b-407d-8b09-ab9bf030e150
+0
-7
data/quotes/62fe26de-89b9-4d9e-9107-2a838bc13cf3 less more
1 author: Hunter S. Thompson
2 content: "That is the problem with this rich and anguished generation. Somewhere a\
3 \ long time ago they fell in love with the idea that politicians\u2014even the slickest\
4 \ and brightest presidential candidates\u2014were real heroes and truly exciting\
5 \ people. That is wrong on its face. They are mainly dull people with corrupt instincts\
6 \ and criminal children."
7 id: 62fe26de-89b9-4d9e-9107-2a838bc13cf3
+0
-4
data/quotes/63767a22-fdc7-41b2-bdc1-65fad2807cc1 less more
1 author: Spider, from Neil Gaiman's Anansi Boys
2 content: Things. They came up. That's what things do. They come up. I can't be expected
3 to keep track of them all.
4 id: 63767a22-fdc7-41b2-bdc1-65fad2807cc1
+0
-5
data/quotes/63b66560-8b8a-4502-9197-25f0f18f65fd less more
1 author: Mark Dominus
2 content: 'A functor F takes each type T and maps it to a new type FT. A burrito is
3 like a functor: it takes a type, like meat or beans, and turns it into a new type,
4 like beef burrito or bean burrito.'
5 id: 63b66560-8b8a-4502-9197-25f0f18f65fd
+0
-4
data/quotes/63ccd35e-efa1-4964-9c55-a3b33e6900e6 less more
1 author: Neil Gaiman's Anansi Boys
2 content: '"You''re no help," he told the lime. This was unfair. It was only a lime;
3 there was nothing special about it at all. It was doing the best it could.'
4 id: 63ccd35e-efa1-4964-9c55-a3b33e6900e6
+0
-9
data/quotes/63df4b56-4755-4607-a172-bb83fc57c751 less more
1 author: R.A. Lafferty
2 content: 'Things are set up as contraries that are not even in the same category.
3 Listen to me: the opposite of radical is superficial; the opposite of liberal is
4 stingy; the opposite of conservative is destructive. Thus I will describe myself
5 as a radical conservative liberal; but certain of the tainted red fish will swear
6 that there can be no such fish as that. Beware of those who use words to mean their
7 opposites. At the same time have pity on them, for usually this trick is their only
8 stock in trade.'
9 id: 63df4b56-4755-4607-a172-bb83fc57c751
+0
-6
data/quotes/63e4cd25-7850-44c9-a751-d560f04d4e03 less more
1 author: Richard Feynman
2 content: "You can know the name of a bird in all the languages of the world, but when\
3 \ you're finished, you'll know absolutely nothing whatever about the bird... So\
4 \ let's look at the bird and see what it's doing \u2014 that's what counts. I learned\
5 \ very early the difference between knowing the name of something and knowing something."
6 id: 63e4cd25-7850-44c9-a751-d560f04d4e03
+0
-6
data/quotes/63e9c9e5-8a1e-45c4-8a25-cdc3200b7f0f less more
1 author: Patricia Lockwood
2 content: "I see no reason to make a distinction, because I\u2019m not some sort of\
3 \ taxonomy psycho. Honestly, when I think of the question \"what is poetry\" I picture\
4 \ Linnaeus and David Lehman absolutely making out, hands up each other\u2019s shirts,\
5 \ while everyone who participates in modern American poetry watches."
6 id: 63e9c9e5-8a1e-45c4-8a25-cdc3200b7f0f
+0
-11
data/quotes/640efdf1-1759-410f-8725-01fcb2c1716a less more
1 author: 'Rev. Ivan Stang
2
3 High Weirdness By Mail'
4 content: If you sincerely desire a truly well-rounded education, you must study the
5 extremists, the obscure and "nutty". You need the balance! Your poor brain is already
6 being impregnated with middle-of-the-road crap, twenty-four hours a day, no matter
7 what. Network TV, newspapers, radio, magazines at the supermarket... even if you
8 never watch, read, listen, or leave your house, even if you are deaf and blind,
9 the telepathic pressure alone of the uncountable normals surrounding you will insure
10 that you are automatically well-grounded in consensus reality.
11 id: 640efdf1-1759-410f-8725-01fcb2c1716a
+0
-4
data/quotes/64bbc3df-712e-4cf0-9d43-47444faf8702 less more
1 author: George Bernard Shaw
2 content: '... that power of accurate observation which is commonly called cynicism
3 by those who have not got it.'
4 id: 64bbc3df-712e-4cf0-9d43-47444faf8702
+0
-7
data/quotes/64fcdd58-f679-4faf-95d1-bbddaed719c0 less more
1 author: Tom Stoppard
2 content: We're more of the love, blood and rhetoric school. Well, we can do you blood
3 and love without the rhetoric, and we can do you blood and rhetoric without the
4 love, and we can do you all three concurrent or consecutive. But we can't give you
5 love and rhetoric without the blood. Blood is compulsory. They're all blood, you
6 see.
7 id: 64fcdd58-f679-4faf-95d1-bbddaed719c0
+0
-4
data/quotes/6549ccf8-d820-4475-853d-dfdec9839753 less more
1 author: Thomas Pynchon
2 content: The object of life is to make sure you die a weird death. To make sure that,
3 however it finds you, it finds you under very weird circumstances.
4 id: 6549ccf8-d820-4475-853d-dfdec9839753
+0
-3
data/quotes/663c0b70-c89a-4117-b3d4-5bc48ca75886 less more
1 author: Jean Louis Agassiz
2 content: I cannot afford to waste my time making money.
3 id: 663c0b70-c89a-4117-b3d4-5bc48ca75886
+0
-3
data/quotes/6800ad75-8907-4c1e-a0b9-ccd23f76b2c4 less more
1 author: Charles Darwin
2 content: But I am very poorly today and very stupid and hate everybody and everything.
3 id: 6800ad75-8907-4c1e-a0b9-ccd23f76b2c4
+0
-6
data/quotes/68396614-ef44-42c7-adbe-f51444a959c3 less more
1 author: Hayao Miyazaki
2 content: "The concept of portraying evil and then destroying it\u2014I know this is\
3 \ considered mainstream, but I think it is rotten. This idea that whenever something\
4 \ evil happens someone particular can be blamed and punished for it, in life and\
5 \ in politics is hopeless."
6 id: 68396614-ef44-42c7-adbe-f51444a959c3
+0
-4
data/quotes/68bdf91e-f195-4390-a9aa-699cc436df55 less more
1 author: Adam Carr
2 content: I am never gratuitously rude. My rudeness is carefully calibrated to the
3 stupidity and obtuseness of the people I am dealing with.
4 id: 68bdf91e-f195-4390-a9aa-699cc436df55
+0
-11
data/quotes/68d478b6-f379-4e7e-8cfa-7e3e8cbb619f less more
1 author: Vincent van Gogh
2 content: "That God of the clergymen, He is for me as dead as a doornail. But am I\
3 \ an atheist for all that? The clergymen consider me as such\u2014be it so; but\
4 \ I love, and how could I feel love if I did not live, and if others did not live,\
5 \ and then, if we live, there is something mysterious in that. Now call that God,\
6 \ or human nature or whatever you like, but there is something which I cannot define\
7 \ systematically, though it is very much alive and very real, and see, that is God,\
8 \ or as good as God. To believe in God for me is to feel that there is a God, not\
9 \ a dead one, or a stuffed one, but a living one, who with irresistible force urges\
10 \ us toward aimer encore; that is my opinion."
11 id: 68d478b6-f379-4e7e-8cfa-7e3e8cbb619f
+0
-6
data/quotes/68f0657d-b1da-438b-beda-3dcb91c9b696 less more
1 author: Shanley Kane
2 content: 'The technology industry sees itself as in rebellion against corporate America:
3 not corrupt, not buttoned-up, not empty. In fact, a tech company can be as corrupt,
4 soulless, and empty as any corporation, but being unprofessional helps us maintain
5 the belief that we are somehow different from Wall Street.'
6 id: 68f0657d-b1da-438b-beda-3dcb91c9b696
+0
-4
data/quotes/6910424e-e3ca-4863-874c-6bdc3de2b971 less more
1 author: Baldrick, Blackadder
2 content: I can't see the point in the theatre. All that sex and violence. I get enough
3 of that at home. Apart from the sex, of course.
4 id: 6910424e-e3ca-4863-874c-6bdc3de2b971
+0
-4
data/quotes/69497488-9b28-4078-8eec-3cd8ca1dece7 less more
1 author: "China M\xEDeville"
2 content: Part of the appeal of the fantastic is taking ridiculous ideas very seriously
3 and pretending they're not absurd.
4 id: 69497488-9b28-4078-8eec-3cd8ca1dece7
+0
-5
data/quotes/695d043d-366f-4918-965b-7423bc1934f8 less more
1 author: Italo Calvino
2 content: Cities, like dreams, are made of desires and fears, even if the thread of
3 their discourse is secret, their rules are absurd, their perspectives deceitful,
4 and everything conceals something else.
5 id: 695d043d-366f-4918-965b-7423bc1934f8
+0
-4
data/quotes/6961f263-9f6b-4835-91ef-1938e65fe196 less more
1 author: Phil Wadler
2 content: 'The essence of XML is this: the problem it solves is not hard, and it does
3 not solve the problem well.'
4 id: 6961f263-9f6b-4835-91ef-1938e65fe196
+0
-4
data/quotes/69a8ea42-8db5-48aa-bb7b-da0b5b38d45a less more
1 author: Yossi Kreinin
2 content: A person who was exposed to machines and doesn't hate them is either an idiot
3 or is completely devoid of soul! Step back, the child of Satan!
4 id: 69a8ea42-8db5-48aa-bb7b-da0b5b38d45a
+0
-4
data/quotes/6a4c2063-1aae-467f-abe8-f82c050f6abe less more
1 author: Jamie "jwz" Zawinski, xkeycaps source
2 content: '`/* I''d just like to take this moment to point out that C has all the expressive
3 power of two dixie cups and a string. */`'
4 id: 6a4c2063-1aae-467f-abe8-f82c050f6abe
+0
-4
data/quotes/6b33aca0-c6a9-4af0-a572-48fd133880c8 less more
1 author: Ted Nelson
2 content: "In 1974, computers were oppressive devices\r\nin far-off airconditioned\
3 \ places. Now you can be oppressed by computers in your own living room."
4 id: 6b33aca0-c6a9-4af0-a572-48fd133880c8
+0
-4
data/quotes/6b59018c-563b-40d2-806a-46f5ed57bc7b less more
1 author: Thomas Pynchon
2 content: If they can get you asking the wrong questions, they don't have to worry
3 about answers.
4 id: 6b59018c-563b-40d2-806a-46f5ed57bc7b
+0
-3
data/quotes/6bf1cb6f-8727-4b64-88a1-7c08b8faa922 less more
1 author: Alan Kay
2 content: Java is the most distressing thing to happen to computing since MS-DOS.
3 id: 6bf1cb6f-8727-4b64-88a1-7c08b8faa922
+0
-5
data/quotes/6c07f356-70aa-432b-97a1-0edfd0148944 less more
1 author: John le Carre
2 content: 'Coming home from very lonely places, all of us go a little mad: whether
3 from great personal success, or just an all-night drive, we are the sole survivors
4 of a world no one else has ever seen.'
5 id: 6c07f356-70aa-432b-97a1-0edfd0148944
+0
-4
data/quotes/6c2d4bd6-95e1-4eff-bd92-bd125bc6a2fb less more
1 author: '"Ecclesiastes"'
2 content: "The simulacrum is never that which conceals the truth\u2014it is the truth\
3 \ which conceals that there is none.\nThe simulacrum is true."
4 id: 6c2d4bd6-95e1-4eff-bd92-bd125bc6a2fb
+0
-8
data/quotes/6c7f27cc-a21d-450d-b819-cde50f3fa07e less more
1 author: The poet Treherne in G.K. Chesterton's The Trees of Pride
2 content: Show... when you next sit in judgement, a little mercy to some wretched man
3 who drinks and robs because he must drink beer to taste it, and take it to drink
4 it. Have compassion on the next batch of poor thieves, who have to hold things in
5 order to have them. But if you ever find me [the poet] stealing one small farthing,
6 when I can shut my eyes and see the city of El Dorado, then ... show me no mercy,
7 for I shall deserve none.
8 id: 6c7f27cc-a21d-450d-b819-cde50f3fa07e
+0
-8
data/quotes/6dbcc0b9-90b3-438b-9a13-4ebf03bd6310 less more
1 author: John Waters
2 content: "When I was young there were beatniks. Hippies. Punks. Gangsters. Now you\u2019\
3 re a hacktivist. Which I would probably be if I was 20. Shuttin\u2019 down MasterCard.\
4 \ But there\u2019s no look to that lifestyle! Besides just wearing a bad outfit\
5 \ with bad posture. Has WikiLeaks caused a look? No! I\u2019m mad about that. If\
6 \ your kid comes out of the bedroom and says he just shut down the government, it\
7 \ seems to me he should at least have an outfit for that."
8 id: 6dbcc0b9-90b3-438b-9a13-4ebf03bd6310
+0
-3
data/quotes/6df5dbdc-7239-47f2-8050-8d09c434eb5a less more
1 author: Humphrey Bogart
2 content: I should never have switched from scotch to martinis.
3 id: 6df5dbdc-7239-47f2-8050-8d09c434eb5a
+0
-4
data/quotes/6e049cc4-3483-40ec-ba73-9dfcfc003296 less more
1 author: Spock, Star Trek
2 content: After a time, you may find that having is not so pleasing a thing, after
3 all, as wanting. It is not logical, but it is often true.
4 id: 6e049cc4-3483-40ec-ba73-9dfcfc003296
+0
-5
data/quotes/6e56fd35-cb43-4f5a-affc-38347435bed8 less more
1 author: Greg Egan
2 content: I'd tried caffeine a few times; it made me believe I was focused and energetic,
3 but it turned my judgment to shit. Widespread use of caffeine explains a lot about
4 the twentieth century.
5 id: 6e56fd35-cb43-4f5a-affc-38347435bed8
+0
-4
data/quotes/6e8ad8f7-241c-4786-a837-49ae5ee29405 less more
1 author: mjl
2 content: I recommend the linux people to call it "GNU / Linux" instead of "GNU/Linux".
3 never hurts to distance yourself from GNU.
4 id: 6e8ad8f7-241c-4786-a837-49ae5ee29405
+0
-4
data/quotes/6edc91cd-be74-4503-83d9-fe11f2555d0f less more
1 author: Roland Barthes
2 content: The bastard form of mass culture is humiliated repetition... always new books,
3 new programs, new films, new items, but always the same meaning.
4 id: 6edc91cd-be74-4503-83d9-fe11f2555d0f
+0
-4
data/quotes/6f074f69-ce47-4e8e-849d-0733dfec5511 less more
1 author: Neil Gaiman
2 content: It's not hard to own something. Or everything. You just have to know that
3 it's yours, and then be willing to let it go.
4 id: 6f074f69-ce47-4e8e-849d-0733dfec5511
+0
-4
data/quotes/6f2de207-ef73-4a3d-9c3a-6b686bbbc5f4 less more
1 author: Philip Greenspun
2 content: SQL, Lisp, and Haskell are the only programming languages that I've seen
3 where one spends more time thinking than typing.
4 id: 6f2de207-ef73-4a3d-9c3a-6b686bbbc5f4
+0
-6
data/quotes/6f3a5cb9-f355-44cd-88d1-458f8f0a4810 less more
1 author: Aleksandr Solzhenitsyn
2 content: If only there were evil people somewhere committing evil deeds, and it were
3 necessary only to separate them from the rest of us and destroy them. But the line
4 dividing good and evil cuts through the heart of every human being. And who is willing
5 to destroy a piece of his own heart?
6 id: 6f3a5cb9-f355-44cd-88d1-458f8f0a4810
+0
-6
data/quotes/705fa4e5-a226-486f-8285-73ca4badcc9f less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: 'I am not human. I am a monster, I claim. It''s not that I have a mask of
3 a theoretician, and beneath I am a more human person: I like chocolate cake, I like
4 this, I like that, and so on, which makes me human. I rather prefer myself as somebody
5 who, not to offend others, pretends, plays that he is human.'
6 id: 705fa4e5-a226-486f-8285-73ca4badcc9f
+0
-7
data/quotes/71ce3656-2d21-4f49-ac84-da01d24b9b08 less more
1 author: Jorge Luis Borges
2 content: Not a single star will be left in the night. The night will not be left.
3 I will die and, with me, the weight of the intolerable universe. I shall erase the
4 pyramids, the medallions, the continents and faces. I shall erase the accumulated
5 past. I shall make dust of history, dust of dust. Now I am looking on the final
6 sunset. I am hearing the last bird. I bequeath nothingness to no one.
7 id: 71ce3656-2d21-4f49-ac84-da01d24b9b08
+0
-6
data/quotes/724d9fe6-998d-4305-8ac2-f16c24bea5cb less more
1 author: anonymous
2 content: 'Happiness is given way too much importance these days. Why not go for greatness?
3
4
5 Chimps are happy. I will not settle for that.'
6 id: 724d9fe6-998d-4305-8ac2-f16c24bea5cb
+0
-4
data/quotes/72685287-6673-4d99-9371-236b848d1105 less more
1 author: George Orwell
2 content: The nationalist not only does not disapprove of atrocities committed by his
3 own side, but he has a remarkable capacity for not even hearing about them.
4 id: 72685287-6673-4d99-9371-236b848d1105
+0
-4
data/quotes/72760fc2-ff6f-4103-8f61-b7aa3c0c2023 less more
1 author: William S. Burroughs
2 content: There is no line between the 'real world' and 'world of myth and symbol.'
3 Objects, sensations, hit with the impact of hallucination.
4 id: 72760fc2-ff6f-4103-8f61-b7aa3c0c2023
+0
-12
data/quotes/72efe536-fd33-4c33-a9a3-5b2b2af1961b less more
1 author: Grant Morrison
2 content: Otherwise, I know I'm often wasting my breath and electronic ink saying this,
3 but the "real-world" is a pretty weird place where lots of inexplicable things happen
4 all the time, and I like to catch the flavor of that too. It just seems more modern
5 and authentic to me as a storyteller. The "real world" doesn't come with the neat
6 thee-act structures and resolutions we love to impose on it, and if repeated doses
7 of movie and TV-storytelling have convinced anyone that it does, it's time to get
8 out and about a bit. The real world is filled with ghost stories, non sequiturs,
9 inexplicable mysteries, dead ends and absurdities, and I think it's cool to season
10 our comfortable fictions with at least a little taste of what actual reality is
11 like.
12 id: 72efe536-fd33-4c33-a9a3-5b2b2af1961b
+0
-7
data/quotes/73854cfa-4296-4666-8751-53f929278fb0 less more
1 author: Mark Twain
2 content: I am the only man living who understands human nature; God has put me in
3 charge of this branch office; when I retire there will be no-one to take my place.
4 I shall keep on doing my duty, for when I get over on the other side, I shall use
5 my influence to have the human race drowned again, and this time drowned good. No
6 omissions. No Ark.
7 id: 73854cfa-4296-4666-8751-53f929278fb0
+0
-7
data/quotes/738e0a9b-3fc3-425c-a75b-e5ae54ded723 less more
1 author: Ursula K. Le Guin
2 content: Fantasy is true, of course. It isn't factual, but it is true. Children know
3 that. Adults know it too, and that is precisely why many of them are afraid of fantasy.
4 They know that its truth challenges, even threatens, all that is false, all that
5 is phony, unnecessary, and trivial... They are afraid of dragons, because they are
6 afraid of freedom.
7 id: 738e0a9b-3fc3-425c-a75b-e5ae54ded723
+0
-4
data/quotes/73ea31dc-a987-4a8b-9387-92125d0ac2d3 less more
1 author: Michel Foucault
2 content: I don't feel that it is necessary to know exactly what I am. The main interest
3 in life and work is to become someone else that you were not in the beginning.
4 id: 73ea31dc-a987-4a8b-9387-92125d0ac2d3
+0
-5
data/quotes/74d305d7-2eb9-43aa-97d6-37a5ca944552 less more
1 author: why the lucky stiff
2 content: the other perfect thing would be if the Internet could be hand written. If
3 I ever get a time machine, I'm going to go back and smash the Gutenberg press so
4 that when the Internet arrives, it'll be transcribed by monks the way GOD INTENDED.
5 id: 74d305d7-2eb9-43aa-97d6-37a5ca944552
+0
-9
data/quotes/751cf1ee-15f6-464b-a732-168c339b852c less more
1 author: R. D. Laing
2 content: I am very interested in words, and what we have words for and what we haven't
3 got words for. For instance, the word "paranoia." It always seems very strange to
4 me that we have this word which means, in effect, that someone feels that he is
5 being persecuted when the people who are persecuting him don't think that he is.
6 But we haven't got a word for the condition in which you are persecuting someone
7 without realizing it, which I would have thought is as serious a condition as the
8 other, and certainly no less common.
9 id: 751cf1ee-15f6-464b-a732-168c339b852c
+0
-4
data/quotes/759ad26c-713e-4fcd-83cb-5299c9ace2cc less more
1 author: Jorge Luis Borges
2 content: '...mirrors and copulation are abominable, since they both multiply the numbers
3 of man.'
4 id: 759ad26c-713e-4fcd-83cb-5299c9ace2cc
+0
-3
data/quotes/75c3c833-ec67-42c8-b9c8-3c53abde9059 less more
1 author: John von Neumann
2 content: In mathematics you don't understand things. You just get used to them.
3 id: 75c3c833-ec67-42c8-b9c8-3c53abde9059
+0
-4
data/quotes/75d2570a-c8a8-4e3c-b73a-e283fc6a990c less more
1 author: Neal Stephenson
2 content: I've lost two girlfriends and a job by reading an ingredients label out loud,
3 with annotations, at the wrong time.
4 id: 75d2570a-c8a8-4e3c-b73a-e283fc6a990c
+0
-6
data/quotes/75e17812-7c6b-4f77-93b1-a4832e6f4462 less more
1 author: Jameson (1981)
2 content: '...the data of one narrative line are radically impoverished by their rewriting
3 according to the paradigm of another narrative, which is taken as the former''s
4 masture code or ur-narrative and proposed as the ultimate hidden or unconscious
5 meaning of the first one.'
6 id: 75e17812-7c6b-4f77-93b1-a4832e6f4462
+0
-7
data/quotes/7635262e-4247-4111-8294-c362ad974923 less more
1 author: 'Warren Ellis
2
3 '
4 content: "Dance like you\u2019re stamping on a human face forever, love like you\u2019\
5 ve been in a serious car crash that minced the front of your brain, stab like no\
6 \ one can arrest you, and live like there\u2019s no such thing as God.\n"
7 id: 7635262e-4247-4111-8294-c362ad974923
+0
-4
data/quotes/763f8745-a7a5-4408-977e-4c60fbe8b884 less more
1 author: Andrew Plotkin
2 content: When you have eliminated the impossible, whatever remains, however improbable,
3 must have been caused by an incompetent grad student.
4 id: 763f8745-a7a5-4408-977e-4c60fbe8b884
+0
-4
data/quotes/77146e6d-0b07-41b0-ba52-1faf86a3145e less more
1 author: Barnabas, Neil Gaiman's Sandman
2 content: I would feel infinitely more comfortable in your presence if you would agree
3 to treat gravity as a law, rather than one of a number of suggested options.
4 id: 77146e6d-0b07-41b0-ba52-1faf86a3145e
+0
-3
data/quotes/778e5fbb-9e8a-424c-bfb0-cf2a57f4c043 less more
1 author: "G. Luk\xE1cs"
2 content: So, Kafka was a realist after all.
3 id: 778e5fbb-9e8a-424c-bfb0-cf2a57f4c043
+0
-4
data/quotes/7819c8a2-5a0d-446c-9e5f-316117c191a3 less more
1 author: Isaac Newton
2 content: Truth is ever to be found in simplicity, and not in the multiplicity and
3 confusion of things.
4 id: 7819c8a2-5a0d-446c-9e5f-316117c191a3
+0
-3
data/quotes/78782b4d-9837-4a0c-95df-41f89db927ea less more
1 author: Elisha Cooper
2 content: What cures paranoia? Maybe cured meats.
3 id: 78782b4d-9837-4a0c-95df-41f89db927ea
+0
-4
data/quotes/78b9b87b-9ee3-4bc9-9831-06b32c4ede1a less more
1 author: kryptkpr
2 content: Comparing a computer language to a human language is like comparing an operating
3 system kernel to a popcorn kernel.
4 id: 78b9b87b-9ee3-4bc9-9831-06b32c4ede1a
+0
-11
data/quotes/78f7144c-fd08-4d2b-9e18-2c371b3bd3f0 less more
1 author: Jack Halberstam
2 content: Monsters are meaning machines. They can represent gender, race, nationality,
3 class, and sexuality in one body. And even within these divisions of identity, the
4 monster can still be broken down. Dracula, for example, can be read as aristocrat,
5 a symbol of the masses; he is predator and yet feminine, he is consumer and producer,
6 he is parasite and host, he is homosexual and heterosexual, he is even a lesbian.
7 Monsters and the Gothic fiction that creates them are therefore technologies, narrative
8 technologies that produce the perfect figure for negative identity. Monsters have
9 to be everything the human is not and, in producing the negative of human, these
10 novels make way for the invention of human as white, male, middle class, and heterosexual.
11 id: 78f7144c-fd08-4d2b-9e18-2c371b3bd3f0
+0
-3
data/quotes/79baed13-fd32-459a-b917-809291ca8e1f less more
1 author: Ursula K. Le Guin
2 content: The novelist says in words what cannot be said in words.
3 id: 79baed13-fd32-459a-b917-809291ca8e1f
+0
-4
data/quotes/79e4eb41-ec7e-4da9-bb60-b731f1b8bcf3 less more
1 author: verycooltrash
2 content: geek culture is so fascinating, it's like a contest of who can cram more
3 pieces of popular media into the gaping void where a personality should be
4 id: 79e4eb41-ec7e-4da9-bb60-b731f1b8bcf3
+0
-6
data/quotes/7a3738b4-e779-4653-94b2-c626f275e071 less more
1 author: Matthias Felleisen
2 content: I always tell my students that Scheme is my second favorite programming language.
3 After they recover from this statement, they naturally always ask what my favorite
4 language is, to which I respond with "I am still working on it." That is, really
5 experienced programmers always try to improve on their major mode of thought.
6 id: 7a3738b4-e779-4653-94b2-c626f275e071
+0
-3
data/quotes/7a53dcfe-df86-484e-94e5-c5374ffa6cc3 less more
1 author: The Eskimo Cookbook
2 content: 'Recipe for Loon Soup: Do not make loon soup.'
3 id: 7a53dcfe-df86-484e-94e5-c5374ffa6cc3
+0
-5
data/quotes/7a6a3a6c-54bf-495d-823a-9467aee1d83c less more
1 author: Carl Jung
2 content: The creation of something new is not accomplished by the intellect but by
3 the play instinct acting from inner necessity. The creative mind plays with the
4 objects it loves.
5 id: 7a6a3a6c-54bf-495d-823a-9467aee1d83c
+0
-8
data/quotes/7a87ae16-b48d-48a7-a791-e2382c414b04 less more
1 author: Morgan Parker
2 content: "That\u2019s the best thing about language: every time you use a word you\
3 \ are summoning so many other things\u2014all the times that word has ever been\
4 \ used. I know this sounds a little psychedelic, but maybe I have an ancestor one\
5 \ hundred years ago who used this word that I choose to write now. What does it\
6 \ mean that everything that we are writing is recycled? Words are full of ghosts.\
7 \ Poetry is full of ghosts."
8 id: 7a87ae16-b48d-48a7-a791-e2382c414b04
+0
-3
data/quotes/7b24e5b2-d390-41a6-be54-aac9eda15a5b less more
1 author: Teresa Nielsen Hayden
2 content: Plot is a literary convention. Story is a force of nature.
3 id: 7b24e5b2-d390-41a6-be54-aac9eda15a5b
+0
-9
data/quotes/7b7c3ecb-3712-425c-90a7-d1e81174d79a less more
1 author: John Barth
2 content: "...It's in words that the magic is\u2014Abracadabra, Open Sesame, and the\
3 \ rest\u2014but the real magic words in one story aren't magical in the next. The\
4 \ real magic is to understand which words work, and when, and for what; the trick\
5 \ is to learn the trick.\n...And those words are made from the letters of our alphabet:\
6 \ a couple-dozen squiggles we can draw with the pen. This is the key! And the treasure,\
7 \ too, if we can only get our hands on it! It's as if\u2014as if the key to the\
8 \ treasure *is* the treasure!"
9 id: 7b7c3ecb-3712-425c-90a7-d1e81174d79a
+0
-3
data/quotes/7b9ca2ae-6925-49d8-a57d-4f336fa10ca2 less more
1 author: Ben Croshaw
2 content: '...also, I''d like you to leave now because you fill me with disgust.'
3 id: 7b9ca2ae-6925-49d8-a57d-4f336fa10ca2
+0
-7
data/quotes/7bfd455d-559d-4669-b5f0-f9fa252b25a4 less more
1 author: Matthias Felleisen
2 content: '1. I have done my share of semantics.
3
4 2. I am doing my share of systems building.
5
6 3. And I really wish that I could say 1 and 2 are related.'
7 id: 7bfd455d-559d-4669-b5f0-f9fa252b25a4
+0
-8
data/quotes/7c8cb32a-5fd6-42ac-983e-e02ef472cf5a less more
1 author: The Last Psychiatrist
2 content: It's very difficult/impossible to raise a kid to be in the system, yet teach
3 him also to fight against that system "sometimes." That was one of the problems
4 with OWS, you can't shut down Wall Street if you have two credit cards in your back
5 pocket. The only way to do this is if you try, on purpose, to raise your kid to
6 be a little bit sociopathic. I realize that this seems like strange advice coming
7 from a psychiatrist, but I'm not a very good psychiatrist. Also, I drink.
8 id: 7c8cb32a-5fd6-42ac-983e-e02ef472cf5a
+0
-5
data/quotes/7d153e42-7b37-483b-a1bd-c96eed931e52 less more
1 author: Erik Naggum
2 content: this is my workbench, dammit, it's not a pretty box to impress people with
3 graphics and sounds. when I work at this system up to 12 hours a day, I'm profoundly
4 uninterested in what user interface a novice user would prefer.
5 id: 7d153e42-7b37-483b-a1bd-c96eed931e52
+0
-3
data/quotes/7d1c5c96-a2e4-4d8b-b416-ff6795397deb less more
1 author: Aleister Crowley
2 content: Sit still. Stop thinking. Shut up. Get out!
3 id: 7d1c5c96-a2e4-4d8b-b416-ff6795397deb
+0
-8
data/quotes/7d2ef52d-04b6-4061-aea4-9dd32ed1dcf8 less more
1 author: viro
2 content: People do have a right to put their code under whatever license they like.
3 Now, I won't use the stuff I don't have a source for unless I have exceptionally
4 good reason to believe that authors of that stuff are among the few percents of
5 programmers who can find their arse without outside help. But that has nothing to
6 do with licensing or any moral considerations and everything to the fact that I
7 know what kind of crap most of the software is.
8 id: 7d2ef52d-04b6-4061-aea4-9dd32ed1dcf8
+0
-5
data/quotes/7e404d03-5cdb-4d36-be2d-7b8196382421 less more
1 author: Albert Einstein
2 content: I believe in Spinoza's God, who reveals himself in the lawful harmony of
3 all that exists, but not in a God who concerns himself with the fate and the doings
4 of mankind.
5 id: 7e404d03-5cdb-4d36-be2d-7b8196382421
+0
-9
data/quotes/7e51a3e2-4147-445b-9abf-f957628189bc less more
1 author: 'John Tanner
2
3 G.B. Shaw''s "Man and Superman"'
4 content: 'Every man is a revolutionist concerning the thing he understands. For example,
5 every person who has mastered a profession is a sceptic concerning it, and consequently
6 a revolutionist.
7
8 Every genuine religious person is a heretic and therefore a revolutionist.'
9 id: 7e51a3e2-4147-445b-9abf-f957628189bc
+0
-10
data/quotes/7e8f9c54-6154-4388-ba6b-80d2671ec429 less more
1 author: J.G. Ballard
2 content: "We live in a world ruled by fictions of every kind \u2014 mass merchandising,\
3 \ advertising, politics conducted as a branch of advertising, the instant translation\
4 \ of science and technology into popular imagery, the increasing blurring and intermingling\
5 \ of identities within the realm of consumer goods, the preempting of any free or\
6 \ original imaginative response to experience by the television screen. We live\
7 \ inside an enormous novel. For the writer in particular it is less and less necessary\
8 \ for him to invent the fictional content of his novel. The fiction is already there.\
9 \ The writer\u2019s task is to invent the reality."
10 id: 7e8f9c54-6154-4388-ba6b-80d2671ec429
+0
-3
data/quotes/7ed4fc68-aa11-4488-9f67-30bcf86abd32 less more
1 author: EVICTED
2 content: THISSPACEFORRENT
3 id: 7ed4fc68-aa11-4488-9f67-30bcf86abd32
+0
-4
data/quotes/7eda7221-a6a2-4272-bc52-e15ab8de7b42 less more
1 author: Jean Anouilh
2 content: Tragedy is restful, and the reason is that hope, that foul, deceitful thing,
3 has no part in it.
4 id: 7eda7221-a6a2-4272-bc52-e15ab8de7b42
+0
-3
data/quotes/7f74466c-dc64-4ed6-8f67-90750e5113d2 less more
1 author: Lao Russell
2 content: The glory of becoming a transcendent being is the only reason for living.
3 id: 7f74466c-dc64-4ed6-8f67-90750e5113d2
+0
-7
data/quotes/7f7a8af3-5e31-4d16-a7a7-c9bfc1a457c0 less more
1 author: Lord Dunsany
2 content: All we who write put me in mind of sailors hastily making rafts upon doomed
3 ships. When we break up under the heavy years and go down into eternity with all
4 that is ours our thoughts like small lost rafts float on awhile upon Oblivion's
5 sea. They will not carry much over those tides, our names and a phrase or two and
6 little else.
7 id: 7f7a8af3-5e31-4d16-a7a7-c9bfc1a457c0
+0
-9
data/quotes/7fd3d5e3-0d6e-4581-936a-27d47a675b4f less more
1 author: Terror Island
2 content: '"Still, all''s well that ends well."
3
4
5 "This didn''t end well."
6
7
8 "That makes my remark irrelevant, not false."'
9 id: 7fd3d5e3-0d6e-4581-936a-27d47a675b4f
+0
-4
data/quotes/8045b0c9-1055-4179-8b8b-4c4aec1be5ff less more
1 author: Friederich Nietzsche
2 content: 'They call you heartless: but you have a heart, and I love you for being
3 ashamed to show it.'
4 id: 8045b0c9-1055-4179-8b8b-4c4aec1be5ff
+0
-3
data/quotes/80a3f7d1-e3c9-4204-bf04-d680ed2c58bf less more
1 author: Kevin Slavin
2 content: Google has facts. Cities have secrets.
3 id: 80a3f7d1-e3c9-4204-bf04-d680ed2c58bf
+0
-8
data/quotes/80df62fc-597c-4970-b480-b98d1bd57409 less more
1 author: 'Hugh MacLeod
2
3 '
4 content: 'Ignore everybody. The more original your idea is, the less good advice other
5 people will be able to give you.
6
7 '
8 id: 80df62fc-597c-4970-b480-b98d1bd57409
+0
-11
data/quotes/813c3a50-df12-4098-b4e0-e879313e5414 less more
1 author: The Last Psychiatrist
2 content: President Bush knew we were fucked by history, right? He got there day 1,
3 opened the Book, and was like, fuck me, this is what's really going on...? And then
4 he looked at America and said, these fucktards couldn't find Iraq on a map of Iraq
5 labeled 'Iraq', no way are these Raymond loving motherfuckers going to understand
6 anything about labor costs and the inevitability of falling foreign reserve accumulation.
7 Let's go with 'WMDs.'" A decade of historical analysis later and the deepest anyone's
8 been able to go is, "they lied, it's really about oil!!!!!!!!!!!!!!!!!!" Jesus,
9 what asshats. Now every time poor Obama looks over his speeches he has to say, "no
10 good, too many syllables."
11 id: 813c3a50-df12-4098-b4e0-e879313e5414
+0
-4
data/quotes/81618feb-98af-4e82-8d30-d01943436709 less more
1 author: Charles Ives
2 content: Beauty in music is too often confused with something that lets the ears lie
3 back in an easy chair.
4 id: 81618feb-98af-4e82-8d30-d01943436709
+0
-14
data/quotes/817ca594-6f92-40bb-9a65-6604002a18e1 less more
1 author: Warren Ellis
2 content: What I like to do is take that video of David Lynch talking about the horror
3 of watching films "on your fucking telephone" and watch it on my fucking telephone,
4 and then I think about things like why, in Britain, we call the television the telly
5 but we call the telephone the phone, and that maybe we should have called the television
6 the vision, except of course that they were once called televisors, so we could
7 have called it the visor, which is actually kind of nice, and in Spain they're still
8 called televisors so why the fuck not, and also it occurs to me that once upon a
9 time people could listen to concerts over the telephone, and now we can make phone
10 calls through our televisions, and given that "film," "television" and "phone" are
11 now words that denote spaces around things rather than the things they originally
12 defined, I think I'll watch a film on anything I like and all devices are now called
13 "scopes" until further notice.
14 id: 817ca594-6f92-40bb-9a65-6604002a18e1
+0
-4
data/quotes/81cef66c-5583-4367-92f6-2a724871d26c less more
1 author: Jean Baudrillard
2 content: Since the world drifts into delirium, we must adopt a delirious point of
3 view.
4 id: 81cef66c-5583-4367-92f6-2a724871d26c
+0
-3
data/quotes/828118cc-0077-4c38-bbda-e5e748b4a49c less more
1 author: Autolycus, Shakespeare's The Winter's Tale
2 content: Though I am not naturally honest, I am sometimes so by chance.
3 id: 828118cc-0077-4c38-bbda-e5e748b4a49c
+0
-4
data/quotes/833c47e9-bb1c-4ffc-94e3-5d896008df52 less more
1 author: Jean Baudrillard
2 content: We live in a world where there is more and more information, and less and
3 less meaning.
4 id: 833c47e9-bb1c-4ffc-94e3-5d896008df52
+0
-4
data/quotes/8399f9b1-d709-4e39-b06e-bcf6f1cbfe92 less more
1 author: Banksy
2 content: All artists are willing to suffer for their work. But why are so few prepared
3 to learn to draw?
4 id: 8399f9b1-d709-4e39-b06e-bcf6f1cbfe92
+0
-3
data/quotes/84b7469a-c7f9-4d47-b156-7d7bd8882ea1 less more
1 author: Karl Lagerfeld
2 content: My thing is to work more than the others to show them how useless they are.
3 id: 84b7469a-c7f9-4d47-b156-7d7bd8882ea1
+0
-19
data/quotes/8529d66b-b124-48d9-b7d8-3d2a1e03dab9 less more
1 author: Haruki Murakami, Kafka on the Shore
2 content: "\"Gays, lebians, straights, feminists, fascist pigs, communists, Hare Krishnas\u2014\
3 none of them bother me. I don't care what banner they raise. But what I can't stand\
4 \ are hollow people. When I'm with them I just can't bear it, and wind up saying\
5 \ things I shouldn't. With those women\u2014I should've just let it slide... But\
6 \ I can't do that. I say things I shouldn't do things I shouldn't do. I can't control\
7 \ myself. That's one of my weak points. Do you know why that's a weak point of mine?\"\
8 \n\n\"'Cause if you take every single person who lacks imagination seriously, there's\
9 \ no end to it,\" I say.\n\n\"That's it,\" Oshima says. He taps his temple lightly\
10 \ with the eraser of the pencil. \"But there's one thing I want you to remember,\
11 \ Kafka. ... Narrow minds devoid of imagination. Intolerance, theories cut off from\
12 \ reality, empty terminology, usurped ideals, inflexible systems. Those are the\
13 \ things that really frighten me. What I absolutely fear and loathe. Of course it's\
14 \ important to know what's right and wrong. Individual errors in judgment can usually\
15 \ be corrected. As long as you have the courage to admit mistakes, things can be\
16 \ turned around. But intolerant, narrow minds with no imagination are like parasites\
17 \ that transform the host, change form, and continue to thrive. They're a lost cause,\
18 \ and I don't want anyone like that coming in here.\""
19 id: 8529d66b-b124-48d9-b7d8-3d2a1e03dab9
+0
-4
data/quotes/85603918-94c5-4c3f-91b8-91974f629996 less more
1 author: Vincent van Gogh
2 content: Let's not forget that the little emotions are the great captains of our lives
3 and we obey them without realizing it.
4 id: 85603918-94c5-4c3f-91b8-91974f629996
+0
-4
data/quotes/85dc9139-1dae-4919-8985-3cc25eb69857 less more
1 author: Douglas Adams
2 content: Zaphod, whatever happens from now on, I just want you to know, I respect
3 you. Only not very much.
4 id: 85dc9139-1dae-4919-8985-3cc25eb69857
+0
-4
data/quotes/86515065-25d0-4a08-993d-b3424be72eef less more
1 author: H.L. Mencken
2 content: The basic fact about human existence is not that it is a tragedy, but that
3 it is a bore. It is not so much a war as an endless standing in line.
4 id: 86515065-25d0-4a08-993d-b3424be72eef
+0
-3
data/quotes/86a0d139-344f-45ca-b66d-9f9f43ac9628 less more
1 author: Walter Russell
2 content: Mediocrity is self-inflicted and genius is self-bestowed.
3 id: 86a0d139-344f-45ca-b66d-9f9f43ac9628
+0
-4
data/quotes/871a1618-471a-4ca5-ace2-86304ef2035c less more
1 author: Alan Perlis
2 content: The best book on programming for the layman is "Alice in Wonderland"; but
3 that's because it's the best book on anything for the layman.
4 id: 871a1618-471a-4ca5-ace2-86304ef2035c
+0
-8
data/quotes/87889f66-31b4-4396-94f0-3c73f89a11c9 less more
1 author: Gaston Bachelard
2 content: "Maybe it is a good thing for us to keep a few dreams of a house that we\
3 \ shall live in later, always later, so much later, in fact, that we shall not have\
4 \ time to achieve it. For a house that was final, one that stood in symmetrical\
5 \ relation to the house we were born in, would lead to thoughts\u2014serious, sad\
6 \ thoughts\u2014and not to dreams. It is better to live in a state of impermanence\
7 \ than in one of finality."
8 id: 87889f66-31b4-4396-94f0-3c73f89a11c9
+0
-5
data/quotes/87cb523b-3505-4283-b2d6-19b20ea41d97 less more
1 author: Paul Ford
2 content: Smalltalk was deeply inspired by LISP. Everything was deeply inspired by
3 LISP, because it's so fundamental. People either learned it, and were inspired,
4 or refused to learn it, and reinvented it in half-assed form.
5 id: 87cb523b-3505-4283-b2d6-19b20ea41d97
+0
-4
data/quotes/8807b040-a33a-4a90-a399-d2573b3fbe49 less more
1 author: John Carmack
2 content: It is not that uncommon for the cost of an abstraction to outweigh the benefit
3 it delivers. Kill one today!
4 id: 8807b040-a33a-4a90-a399-d2573b3fbe49
+0
-4
data/quotes/88370cf1-b038-4dcb-8168-92d2faddf363 less more
1 author: "Slavoj \u017Di\u017Eek\n"
2 content: "Cinema is the ultimate pervert art. It doesn't give you what you desire\u2014\
3 it tells you how to desire.\n"
4 id: 88370cf1-b038-4dcb-8168-92d2faddf363
+0
-7
data/quotes/88e2bd56-688b-48e9-8085-7a1185672e68 less more
1 author: 'Sir Thomas Beecham
2
3 '
4 content: 'The function of music is to release us from the tyranny of conscious thought.
5
6 '
7 id: 88e2bd56-688b-48e9-8085-7a1185672e68
+0
-4
data/quotes/88fcf494-c758-4075-82f3-3357328fe0cb less more
1 author: pjdelport
2 content: YO DAWG I HERD YOU LIKE CARS SO WE PUT A PAIR IN YO CAR SO YOU CAN CAR WHILE
3 YOU CAR
4 id: 88fcf494-c758-4075-82f3-3357328fe0cb
+0
-5
data/quotes/893cbe00-123a-4a4e-b299-3d851e6913c6 less more
1 author: Joe Versus the Volcano
2 content: My father says that almost the whole world is asleep. Everybody you know.
3 Everybody you see. Everybody you talk to. He says that only a few people are awake
4 and they live in a state of constant total amazement.
5 id: 893cbe00-123a-4a4e-b299-3d851e6913c6
+0
-6
data/quotes/8a11725d-1b77-41a1-afdd-8f0d261c282a less more
1 author: Friederich Nietzsche, unpublished note
2 content: 'For what purpose humanity is there should not even concern us: why you are
3 there, that you should ask yourself: and if you have no ready answer, then set for
4 yourself goals, high and noble goals, and perish in pursuit of them! I know of no
5 better life purpose than to perish in attempting the great and the impossible...'
6 id: 8a11725d-1b77-41a1-afdd-8f0d261c282a
+0
-5
data/quotes/8a3cc3a3-16cb-4da5-bbe2-c3c4b3b95655 less more
1 author: Umberto Eco
2 content: '...in a story the actors of course take part in the action, but the actors
3 are the embodiment of the actants, which might be described as the narrative roles
4 through which the actors can pass, perhaps changing their function in the plot structure.'
5 id: 8a3cc3a3-16cb-4da5-bbe2-c3c4b3b95655
+0
-15
data/quotes/8a67ee6c-5693-41cb-82e6-3bfbebda026d less more
1 author: orbsteve
2 content: "the difference between video games and pornography is ... that one is a\
3 \ highly commercial medium of highly disputed (and disputable) artistic merit which\
4 \ is largely dominated by male power fantasies and characterized by shoddy acting,\
5 \ laughable dialogue, and two-dimensional plots that many people simply skip past\
6 \ to get to the action and which is perpetually at the center of a media shitstorm\
7 \ for its graphic and often outright puerile content, and in which women always\
8 \ have unfeasibly massive hooters quivering beneath bizarre and scanty costumes,\
9 \ but which is rabidly defended by a massive fanbase who range from the fairly reasonable\
10 \ to the clearly deranged who loyally purchase tickets to conventions at which they\
11 \ awkwardly photograph themselves crooking their arms around real human women wearing\
12 \ aforementioned bizarre and scanty costumes with a minimum of self-awareness or\
13 \ -reflection\r\n\r\nwhereas the other is my horse, who i have named \"pornography\"\
14 \ for reasons i shall reveal to neither man nor god. PORNOGRAPHY AWAY"
15 id: 8a67ee6c-5693-41cb-82e6-3bfbebda026d
+0
-4
data/quotes/8a6f9fea-66aa-4b82-a2b9-3e7a016c2baa less more
1 author: Hamlet
2 content: You are not noble in reason, infinite in faculty, like an angel in your actions,
3 or especially moving in your form. However, you are a real piece of work.
4 id: 8a6f9fea-66aa-4b82-a2b9-3e7a016c2baa
+0
-7
data/quotes/8aa3e034-2fed-4a4e-a101-e2c3c739558c less more
1 author: Douglas Hofstatder
2 content: '[He] reveals that he has never had Recipe Cake. This is a delicious cake
3 whose batter is made out of the best cake recipes (if you use pie recipes, it won''t
4 taste nearly as good). The best results are had if the recipes are printed in French,
5 in Baskerville Roman. A preponderance of accents aigus lends a deliciously piquant
6 aroma to the cake.'
7 id: 8aa3e034-2fed-4a4e-a101-e2c3c739558c
+0
-9
data/quotes/8ac6c79e-4204-4ec3-8627-a3c1db6ed775 less more
1 author: Andrea Dworkin
2 content: Men develop a strong loyalty to violence. Men must come to terms with violence
3 because it is the prime component of male identity. Institutionalized in sports,
4 the military, acculturated sexuality, the history and mythology of heroism, it is
5 taught to boys until they become its advocates-men, not women. Men become advocates
6 of that which they most fear. In mastery of fear they experience freedom. Men transform
7 their fear of male violence into a metaphysical commitment to male violence. Violence
8 itself becomes the central definition of any experience that is profound and significant.
9 id: 8ac6c79e-4204-4ec3-8627-a3c1db6ed775
+0
-5
data/quotes/8b75b80e-d43d-4b1d-9fec-d3562b54a0c9 less more
1 author: Erica Jong
2 content: People don't complete us. We complete ourselves. If we haven't the power
3 to complete ourselves, the search for love becomes a search for self-annihilation,
4 and then we try to convince ourselves that self-annihilation is love.
5 id: 8b75b80e-d43d-4b1d-9fec-d3562b54a0c9
+0
-3
data/quotes/8c49ae36-7e06-4d97-a8cc-cc4e7fdc986b less more
1 author: John Campbell, Pictures for Sad Children
2 content: Nerds do not redefine adulthood. They waste it.
3 id: 8c49ae36-7e06-4d97-a8cc-cc4e7fdc986b
+0
-6
data/quotes/8c8bf44d-2b7e-49d1-8808-bcdc814b399a less more
1 author: Andrew Plotkin
2 content: '"Recursion: see ''Recursion''" is a very old joke. It''s also a stinking
3 lie. The correct definition is: Recursion: If you know what recursion is, just remember
4 the answer. Otherwise, locate someone who is standing closer to Douglas Hofstadter
5 than you are, and ask him/her what recursion is.'
6 id: 8c8bf44d-2b7e-49d1-8808-bcdc814b399a
+0
-3
data/quotes/8c9596aa-3f73-4f49-b3db-7230b895e05d less more
1 author: Friedrich Nietzsche
2 content: One must have chaos in oneself to give birth to a dancing star.
3 id: 8c9596aa-3f73-4f49-b3db-7230b895e05d
+0
-4
data/quotes/8c9c51a3-8bbc-4130-b3f9-e4ad34742f7a less more
1 author: Tiny Carl Jung
2 content: Just received a letter from my Tiny Shadow half. We've been out of touch
3 for ages; it's nice to hear the inverse of my thoughts again.
4 id: 8c9c51a3-8bbc-4130-b3f9-e4ad34742f7a
+0
-3
data/quotes/8d2a1846-a4b0-4c3a-8a3d-88db93b282f1 less more
1 author: Erik Naggum
2 content: languages shape the way we think, or don't.
3 id: 8d2a1846-a4b0-4c3a-8a3d-88db93b282f1
+0
-4
data/quotes/8d946a97-7248-4273-98b6-a832725d01a1 less more
1 author: Machiavelli
2 content: '...since love and fear can hardly exist together, if we must choose between
3 them, it is far safer to be feared than to be loved.'
4 id: 8d946a97-7248-4273-98b6-a832725d01a1
+0
-9
data/quotes/8dc1a3a9-edb0-4f3a-ac4f-0190ce430829 less more
1 author: Warren Ellis
2 content: Everyone's looking for someone to blame. Society. Culture. Hollywood. Predators.
3 Looking everywhere but the right place. Children are very simple, Mr. Jerusalem.
4 Very easy devices to break, or assemble wrong. You want to know who did this to
5 these kids? Only their parents. That's the thing no one wants to hear. Every time
6 you stop thinking about how you're treating your kid, you make one of these. It
7 really is as simple as that. It's got nothing to do with the failure of the society
8 or any of that. It's got everything to do with the responsibility of making a human.
9 id: 8dc1a3a9-edb0-4f3a-ac4f-0190ce430829
+0
-10
data/quotes/8e9ace03-df69-4d18-bf74-922f38e0da70 less more
1 author: Graham Chapman
2 content: You know, there are many people in the country today who, through no fault
3 of their own, are sane. Some of them were born sane. Some of them became sane later
4 in their lives. It is up to people like you and me who are out of our tiny little
5 minds to try and help these people overcome their sanity. You can start in small
6 ways with ping-pong ball eyes and a funny voice and then you can paint half of your
7 body red and the other half green and then you can jump up and down in a bowl of
8 treacle going "squawk, squawk, squawk..." And then you can go "Neurhhh! Neurhhh!"
9 and then you can roll around on the floor going "pting pting pting"...
10 id: 8e9ace03-df69-4d18-bf74-922f38e0da70
+0
-6
data/quotes/8f662f3a-8bbe-4da6-9992-d1ab3aacba94 less more
1 author: Werner Herzog
2 content: The kinds of landscape I try to find in my films... exist only in our dreams.
3 For me a true landscape is not just a representation of a desert or a forest. It
4 shows an inner state of mind, literally inner landscapes, and it is the human soul
5 that is visible through the landscapes presented in my films.
6 id: 8f662f3a-8bbe-4da6-9992-d1ab3aacba94
+0
-4
data/quotes/8fe68d8b-03df-4df1-bf8e-2c78ade62150 less more
1 author: Penny Arcade
2 content: I tried to break down the essential position for him. "You're arguing for
3 a universe with fewer waffles in it," I said. "I'm prepared to call that cowardice."
4 id: 8fe68d8b-03df-4df1-bf8e-2c78ade62150
+0
-6
data/quotes/908e2964-904e-4b96-9c3d-9b3c5a0b354f less more
1 author: Turkish proverb
2 content: Coffee should be hot as hell, black as death, and gulped greatly from a cadaver-hued
3 earthenware mug while listening to nightmarish glitch techno through big fuck-off
4 headphones and staring out the window at fall-colored ash leaves shuddering in low-horizon
5 sunlight as window drafts under your ugly desk refrigerate your feet.
6 id: 908e2964-904e-4b96-9c3d-9b3c5a0b354f
+0
-4
data/quotes/916c47a0-f162-48ad-bcd8-5e9f08195d95 less more
1 author: Marshall McLuhan
2 content: The future masters of technology will have to be lighthearted and intelligent.
3 The machine easily masters the grim and dumb.
4 id: 916c47a0-f162-48ad-bcd8-5e9f08195d95
+0
-4
data/quotes/92458624-08fd-4e7c-9625-7183af0322ab less more
1 author: Bertrand Russell
2 content: The secret of happiness is to face the fact that the world is horrible, horrible,
3 horrible.
4 id: 92458624-08fd-4e7c-9625-7183af0322ab
+0
-12
data/quotes/928735f8-394f-4c21-8fa5-5fdbe270d71c less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: What if, however, humans exceed animals in their capacity for violence precisely
3 because they speak? As Hegel was already well aware, there is something violent
4 in the very symbolisation of a thing, which equals its mortification. This violence
5 operates at multiple levels. Language simplifies the designated thing, reducing
6 it to a single feature. It dismembers the thing, destroying its organic unity, treating
7 its parts and properties as autonomous. It inserts the thing into a field of meaning
8 which is ultimately external to it. When we name gold "gold," we violently extract
9 a metal from its natural texture, investing into it our dreams of wealth, power,
10 spiritual purity, and so on, which have nothing whatsoever to do with the immediate
11 reality of gold.
12 id: 928735f8-394f-4c21-8fa5-5fdbe270d71c
+0
-12
data/quotes/92fceb39-fbae-4f69-9505-73cf6dd9fd0e less more
1 author: 'Sid, York, and Stephen
2
3 Terror Island'
4 content: '"...[they] switched over to revisionist astrology."
5
6 "What''s that?"
7
8 "Astronomy."
9
10 "Oh, I''ve heard of that. It''s like regular astrology, except it''s actually a
11 science."'
12 id: 92fceb39-fbae-4f69-9505-73cf6dd9fd0e
+0
-5
data/quotes/9306bd20-dd2a-4231-b13d-57ca0737d5b2 less more
1 author: G.K. Chesterton
2 content: '[The American] had lately been much alone. He was not unhappy, for he resembled
3 his great countryman, Walt Whitman, in carrying a kind of universe with him like
4 an open umbrella; but he was not only alone, but lonely.'
5 id: 9306bd20-dd2a-4231-b13d-57ca0737d5b2
+0
-7
data/quotes/9320d493-ee71-4b85-be1a-95305da80a7c less more
1 author: John Cage
2 content: "\"Cultivate&nbsp;&nbsp;&nbsp;in&nbsp;&nbsp;&nbsp;yourself&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a&nbsp;&nbsp;&nbsp;grand&nbsp;&nbsp;&nbsp;similarity\r\
3 \n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;with&nbsp;&nbsp;&nbsp;the&nbsp;&nbsp;&nbsp;chaos&nbsp;&nbsp;&nbsp;of&nbsp;&nbsp;&nbsp;the&nbsp;&nbsp;&nbsp;surrounding&nbsp;&nbsp;&nbsp;ether.\r\
4 \n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Unloose&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;your&nbsp;&nbsp;&nbsp;mind&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and&nbsp;&nbsp;&nbsp;set&nbsp;&nbsp;&nbsp;your\r\
5 \n &nbsp;&nbsp;spirit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;free.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Be&nbsp;&nbsp;&nbsp;still&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;as&nbsp;&nbsp;&nbsp;if\r\
6 \n &nbsp;&nbsp;you&nbsp;&nbsp;&nbsp;had&nbsp;&nbsp;&nbsp;no&nbsp;&nbsp;&nbsp;soul.\""
7 id: 9320d493-ee71-4b85-be1a-95305da80a7c
+0
-4
data/quotes/93245a89-493c-4927-a571-6bfa1a998f35 less more
1 author: Rudyard Kipling
2 content: '...but the wildest of all the wild animals was the Cat. He walked by himself,
3 and all places were alike to him.'
4 id: 93245a89-493c-4927-a571-6bfa1a998f35
+0
-4
data/quotes/932ccfc5-50a9-400e-bb7e-5a08a4540f3d less more
1 author: Wolfgang Pauli
2 content: Some people have very sensitive corns, and the only way to live with them
3 is to step on those corns until they are used to it.
4 id: 932ccfc5-50a9-400e-bb7e-5a08a4540f3d
+0
-4
data/quotes/934ec046-6b5d-4299-931e-a45bbc8887bf less more
1 author: Neil Gaiman
2 content: It's why supporting freedom of speech so often involves defending the indefensible,
3 and is, often uncomfortably, the right thing to do.
4 id: 934ec046-6b5d-4299-931e-a45bbc8887bf
+0
-8
data/quotes/9357b38a-1c98-45b9-9af7-78cc4cf8ae83 less more
1 author: Robert P. Abelson, *Statistics as Principles Argument*
2 content: "The famous mathematical sociologist Paul Lazarfeld once said, \"You never\
3 \ understand a phenomenon unless you can make it go away.\" We might add, \"or unless\
4 \ you can reverse its direction.\"\r\n\r\nPsychologist William McGuire (1983, 1989)\
5 \ suggested as one of many ways to develop new hypotheses that you can take some\
6 \ seemingly obvious relationship and imagine conditions where its opposite would\
7 \ hold."
8 id: 9357b38a-1c98-45b9-9af7-78cc4cf8ae83
+0
-6
data/quotes/93925025-0123-4607-a7ad-b3807e9abc6d less more
1 author: Antonio Gramsci
2 content: "_La mia praticit&agrave; consiste in questo: nel sapere che a battere la\
3 \ testa contro il muro &egrave; la testa a rompersi e non il muro._\r\n\r\nMy practicality\
4 \ consists of this: in the knowledge that if you beat your head against the wall,\
5 \ it is your head that breaks and not the wall."
6 id: 93925025-0123-4607-a7ad-b3807e9abc6d
+0
-8
data/quotes/939f4949-0b2b-4a55-b86b-030609743abb less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: My relationship towards tulips is inherently Lynchian. I think they are disgusting.
3 Just imagine. Aren't these some kind of, how do you call it, vagina dentata, dental
4 vaginas threatening to swallow you? I think that flowers are something inherently
5 disgusting. I mean, are people aware what a horrible thing these flowers are? I
6 mean, basically it's an open invitation to all insects and bees, "Come and screw
7 me," you know? I think that flowers should be forbidden to children.
8 id: 939f4949-0b2b-4a55-b86b-030609743abb
+0
-5
data/quotes/94527d5d-91de-40f4-bd78-f2f9bc7981a1 less more
1 author: Neil Gaiman, "How To Talk To Girls At Parties"
2 content: You know... I think there's a thing. When you've gone as far as you dare.
3 And if you go any further, you wouldn't be you anymore? You'd be the person who'd
4 done that? The places you just can't go... I think that happened to me tonight.
5 id: 94527d5d-91de-40f4-bd78-f2f9bc7981a1
+0
-6
data/quotes/948211bd-a768-423e-89ee-262d4471f3aa less more
1 author: Federico Fellini
2 content: 'I don''t believe in total freedom for the artist. Left on his own, free
3 to do anything he likes, the artist ends up doing nothing at all. If there''s one
4 thing that''s dangerous for an artist, it''s precisely this question of total freedom,
5 waiting for inspiration and the rest of it. '
6 id: 948211bd-a768-423e-89ee-262d4471f3aa
+0
-5
data/quotes/949a224e-9164-4883-a626-e8a935b0859e less more
1 author: viro
2 content: All software sucks, be it open-source [or] proprietary. The only question
3 is what can be done with particular instance of suckage, and that's where having
4 the source matters.
5 id: 949a224e-9164-4883-a626-e8a935b0859e
+0
-8
data/quotes/96581468-640a-4ffc-a0ba-b6985ec0c2ba less more
1 author: "Cesare Pavese, *Dialoghi con Leuc\xF2*"
2 content: "A true revelation, it seems to me, will only emerge from stubborn concentration\
3 \ on a solitary problem. I am not in league with inventors or adventurers, nor with\
4 \ travelers to exotic destinations. The surest\u2014also the quickest\u2014way to\
5 \ awake the sense of wonder in ourselves is to look intently, undeterred, at a single\
6 \ object. Sudenly, miraculously, it will reveal itself as something we have never\
7 \ seen before."
8 id: 96581468-640a-4ffc-a0ba-b6985ec0c2ba
+0
-3
data/quotes/96a39a25-b9b3-4e22-9aea-1913ad123352 less more
1 author: Georges Bataille
2 content: Leave the possible to those who love it.
3 id: 96a39a25-b9b3-4e22-9aea-1913ad123352
+0
-3
data/quotes/976557c6-0008-41c3-b1e8-da8593adf3d5 less more
1 author: Matt Groening
2 content: Yes, being an adult is a drag, but the orgasms are terrific.
3 id: 976557c6-0008-41c3-b1e8-da8593adf3d5
+0
-7
data/quotes/97e63856-a03c-428a-8f16-4721a4976750 less more
1 author: Tiki Bar TV
2 content: '"Linux is... a version of Windows... it''s full of holes, and viruses...
3 it''s terrible."
4
5
6 "Mmm... sounds like my ex-wife."'
7 id: 97e63856-a03c-428a-8f16-4721a4976750
+0
-5
data/quotes/981d033d-1702-4de2-9406-b8b909942c97 less more
1 author: Italo Calvino
2 content: I haven't been very clear, this isn't really how I had thought of it... but
3 before my thoughts can turn into spoken words they have to go through an empty space
4 and they come out false.
5 id: 981d033d-1702-4de2-9406-b8b909942c97
+0
-4
data/quotes/98ee6c06-24e7-4588-a61b-47e915276529 less more
1 author: George Orwell
2 content: There are some ideas so wrong that only a very intelligent person could believe
3 in them.
4 id: 98ee6c06-24e7-4588-a61b-47e915276529
+0
-15
data/quotes/9907f79f-b081-41c0-97f0-589fd18eb1bc less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: "This, precisely, is the line of reasoning we should reject; let us take\
3 \ the extreme case, a mortal and violent struggle against a Fascist enemy. Should\
4 \ we show respect for the abyss of the radical Otherness of Hitler's personality\
5 \ beneath all his evil acts? It is here that we should apply Christ's famous words\
6 \ about how he has come to bring the sword and division, not unity and peace: out\
7 \ of our very love for humanity, including (whatever remains of) the humanity of\
8 \ the Nazis themselves, we should fight them in an absolutely ruthless and disrespectful\
9 \ way. In short, the Jewish saying often quoted apropos of the Holocaust ('When\
10 \ somebody saves one man from death, he saves the whole of humanity') should be\
11 \ supplemented with: 'When somebody kills just one true enemy of humanity, he (not\
12 \ not kills, but saves) the whole of humanity.' The true ethical test is not only\
13 \ the readiness to save victims, but also\u2014even more, perhaps\u2014the ruthless\
14 \ dedication to annihilating those who made them victims."
15 id: 9907f79f-b081-41c0-97f0-589fd18eb1bc
+0
-3
data/quotes/991a5633-0fd9-43ae-a0c0-7457fd73b85f less more
1 author: Numair Faraz
2 content: 'As for us regular people: love, peace, happiness. Pick one.'
3 id: 991a5633-0fd9-43ae-a0c0-7457fd73b85f
+0
-11
data/quotes/996b7a72-4c08-4855-b02a-3d5db3162109 less more
1 author: Jean Baudrillard
2 content: 'Driving is a spectacular form of amnesia. Everything is to be discovered,
3 everything to be obliterated. Admittedly, there is the primal shock of the deserts
4 and the dazzle of California, but when this is gone, the secondary brilliance of
5 the journey begins, that of the excessive, pitiless distance, the infinity of anonymous
6 faces and distances, or of certain miraculous geological formations, which ultimately
7 testify to no human will, while keeping intact an image of upheaval. This form of
8 travel admits of no exceptions: when it runs up against a known face, a familiar
9 landscape, or some decipherable message, the spell is broken: the amnesic, ascetic,
10 asymptotic charm of disappearance succumbs to affect and worldly semiology.'
11 id: 996b7a72-4c08-4855-b02a-3d5db3162109
+0
-3
data/quotes/9a354ebe-57a6-48ac-8786-23e109bbe92c less more
1 author: Philip Greenspun
2 content: Not to put too fine a point on it, but I think you are fucked.
3 id: 9a354ebe-57a6-48ac-8786-23e109bbe92c
+0
-10
data/quotes/9ab65b95-226a-4f89-adfc-fb6b6f7dd187 less more
1 author: Umberto Eco, *The Name of The Rose*
2 content: 'Until then I had thought each book spoke of the things, human or divine,
3 that lie outside books. Now I realized that not infrequently books speak of books:
4 it is as if they spoke among themselves. In the light of this reflection, the library
5 seemed all the more disturbing to me. It was then the place of a long, centuries-old
6 murmuring, an imperceptible dialogue between one parchment and another, a living
7 thing, a receptacle of powers not to be ruled by a human mind, a treausre of secrets
8 emanated by many minds, surviving the death of those who had produced them or had
9 been their conveyors.'
10 id: 9ab65b95-226a-4f89-adfc-fb6b6f7dd187
+0
-8
data/quotes/9ad9e66b-361f-407f-b289-ad097c81f6c4 less more
1 author: Alex Cox
2 content: I have been a working film director (REPO MAN, WALKER, etc) for twenty-odd
3 years, and copyright law has never worked in my favour - only in the favour of massive
4 corporations such as Universal / Vivendi, which seize even the "so-called inalienable
5 rights of authors." Patent and copyright laws are a fraud perpetrated by corporations
6 and governments against the actual producers of creative work. The independent filmmaker's
7 rule of thumb is always, if Jack Valenti's in favour of it, I'm against it.
8 id: 9ad9e66b-361f-407f-b289-ad097c81f6c4
+0
-9
data/quotes/9b026084-94e3-4df6-bf01-956be174b65e less more
1 author: G.K. Chesterton
2 content: "He knows that there are in the soul tints more bewildering, more numberless\
3 \ and\r\nmore nameless, than the colours of an autumn forest... Yet he seriously\
4 \ believes\r\nthat these things can every one of them, in all their tones and semi-tones,\
5 \ in\r\nall their blends and unions, be accurately represented by an arbitrary system\
6 \ of\r\ngrunts and squeals. He believes that an ordinary civilised stockbroker can\
7 \ really\r\nproduce out of his own inside, noises which denote all the mysteries\
8 \ of memory\r\nand all the agonies of desire."
9 id: 9b026084-94e3-4df6-bf01-956be174b65e
+0
-7
data/quotes/9bf0700a-d442-40a6-80a8-a41a214a9554 less more
1 author: Hunter S. Thompson
2 content: "Maybe this is all pure gibberish\u2014a product of the demented imagination\
3 \ of a lazy drunken hillbilly with a heart full of hate who has found out a way\
4 \ to live out there where the real winds blow - to sleep late, have fun, get wild,\
5 \ drink whiskey and ride fast on empty streets with nothing in mind except falling\
6 \ in love and not getting arrested...\nRes ipsa loquitur. Let the good times roll."
7 id: 9bf0700a-d442-40a6-80a8-a41a214a9554
+0
-8
data/quotes/9c0658b7-09d8-417d-bb57-92f8e62cc332 less more
1 author: Sean Yamamoto
2 content: The uneducated public will have lower standards than what a serious photographer
3 will have. That's normal; they don't know any better. A true artist is judging his/her
4 images on a professional level (and if not, someone else certainly will). This is
5 a public who will pay thousands in finance charges annually on various credit card
6 bills and balk at putting a $50 piece of art in a $25 frame. An $80 opera ticket
7 is not justifiable, although a $150 seat for an NFL football game is.
8 id: 9c0658b7-09d8-417d-bb57-92f8e62cc332
+0
-4
data/quotes/9c0feb48-563f-4e27-9429-bda63bea33d7 less more
1 author: Arnold Edinborough
2 content: Curiosity is the very basis of education and if you tell me that curiosity
3 killed the cat, I say only the cat died nobly.
4 id: 9c0feb48-563f-4e27-9429-bda63bea33d7
+0
-4
data/quotes/9d19f041-5ba9-4a28-a0e2-fd630d730913 less more
1 author: James Gosling
2 content: I look at most of these social sites and I go, "Oh, jeez, that's all kinds
3 of boring."
4 id: 9d19f041-5ba9-4a28-a0e2-fd630d730913
+0
-8
data/quotes/9d4539a0-58c9-4653-a610-963ffe55ce0c less more
1 author: 'jerkcity
2
3 '
4 content: 'Grok is a word meaning "I''m fat, I have a huge U.C. Berkeley beard, and
5 I''m afraid to hit on girls."
6
7 '
8 id: 9d4539a0-58c9-4653-a610-963ffe55ce0c
+0
-4
data/quotes/9d6abe26-2ccd-46cf-9cc8-888f014c0e7c less more
1 author: Thomas Jefferson
2 content: Nothing can now be believed which is seen in a newspaper. Truth itself becomes
3 suspicious by being put into that polluted vehicle.
4 id: 9d6abe26-2ccd-46cf-9cc8-888f014c0e7c
+0
-6
data/quotes/9d8cc6da-3618-47c2-a7e3-cc5670b60302 less more
1 author: Anonymous
2 content: 'The fortune cookie said: Only count the blessed moments of life.
3
4
5 The pessimist mathematician reasoned: The cursed moments are uncountable.'
6 id: 9d8cc6da-3618-47c2-a7e3-cc5670b60302
+0
-13
data/quotes/9d91b692-f5e4-4653-b30a-c1aa524b0f0d less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: "The only solution to this deadlock is to posit a kind of pre-ontological\
3 \ perturbation/inversion/disturbance _within nirvana itself_\u2014that is to say,\
4 \ prior to the split between nirvana and false appearance\u2014so that the Absolute\
5 \ itself (the cosmic Force, or whatever it is called) gets radically perverted.\
6 \ The traces of this inversion are discernible even in pop-cultural New Age icons\
7 \ like Darth Vader from _Star Wars_: in the idea that the truly evil people are\
8 \ those who have gained access to the Force that enables us to reach the true realm\
9 \ beyond false material reality, but then perverted/misused this Force, employing\
10 \ it for bad, evil ends. What, however, if this fall into perversion is original,\
11 \ the original monstrous cut/excess, and the opposition between nirvana and desire\
12 \ for false appearances is there to conceal this monstrosity?"
13 id: 9d91b692-f5e4-4653-b30a-c1aa524b0f0d
+0
-6
data/quotes/9e7a4e43-f6d4-4994-aeb0-2c9ebe6c4977 less more
1 author: Steve Yegge
2 content: So you can write Java code that's object-oriented but C-like using arrays,
3 vectors, linked lists, hashtables, and a minimal sprinkling of classes. Or you can
4 spend years creating mountains of class hierarchies and volumes of UML in a heroic
5 effort to tell people stories about all the great code you're going to write someday.
6 id: 9e7a4e43-f6d4-4994-aeb0-2c9ebe6c4977
+0
-4
data/quotes/9ea2182e-d6d6-400e-997a-ac927138efbb less more
1 author: Pablo Picasso
2 content: 'The artist is a receptacle for emotions that come from all over the place:
3 from the sky, from the earth, from a scrap of paper, from a passing shape...'
4 id: 9ea2182e-d6d6-400e-997a-ac927138efbb
+0
-8
data/quotes/9fd9ea69-dabf-40e0-8e75-9129708ace3d less more
1 author: Marshall Berman
2 content: 'Now we must confront somethimg even more perplexing: next to the Communist
3 Manifesto, the whole body of capitalist apologetics, from Adam Ferguson to Milton
4 Friedman is remarkably pale and empty of life. The celebrants of capitalism tell
5 us surprisingly little of its infinite horizons, its revolutionary audacity, its
6 dynamic creativity, its adventurousness and romance, its capacity to make men not
7 only more comfortable but more alive.'
8 id: 9fd9ea69-dabf-40e0-8e75-9129708ace3d
+0
-4
data/quotes/a033b6d8-f9b9-4953-8485-f5f1801aac89 less more
1 author: Tom Robbins
2 content: Humanity has advanced, when it has advanced, not because it has been sober,
3 responsible, and cautious, but because it has been playful, rebellious, and immature.
4 id: a033b6d8-f9b9-4953-8485-f5f1801aac89
+0
-4
data/quotes/a0c43e56-96c8-4862-a25b-cd3d9504e5ab less more
1 author: William Butler Yeats
2 content: I know that Bertrand Russell must, seeing that he is such a featherhead,
3 be wrong about everything, but as I have no mathematics I cannot prove it.
4 id: a0c43e56-96c8-4862-a25b-cd3d9504e5ab
+0
-3
data/quotes/a0d37991-dfda-4316-9918-88459cad54b7 less more
1 author: Lily Tomlin
2 content: If love is the answer, could you please rephrase the question?
3 id: a0d37991-dfda-4316-9918-88459cad54b7
+0
-3
data/quotes/a0dd6514-4b6e-4208-bd17-38abaf98b24f less more
1 author: Werner Herzog
2 content: Civilization is like a thin layer of ice upon a deep ocean of chaos and darkness.
3 id: a0dd6514-4b6e-4208-bd17-38abaf98b24f
+0
-3
data/quotes/a0f962a7-6d15-4233-baca-f651f2dc5e1d less more
1 author: Haruki Murakami, paraphrasing Tolstoy
2 content: Happiness is an allegory, unhappiness is a story.
3 id: a0f962a7-6d15-4233-baca-f651f2dc5e1d
+0
-6
data/quotes/a12c60a1-f625-4a68-a9eb-95f6c74a2ca7 less more
1 author: Jorge Luis Borges
2 content: 'Que el cielo exista, aunque mi lugar sea el infierno.
3
4
5 May heaven exist, even if my place is hell.'
6 id: a12c60a1-f625-4a68-a9eb-95f6c74a2ca7
+0
-6
data/quotes/a1bb890a-7d8d-4fc2-92c9-d9b3f0b6133d less more
1 author: Phil Greenspun
2 content: My first week as an electrical engineering and computer science graduate
3 student I asked a professor for help with a problem. He talked to me for a bit and
4 then said "You're having trouble with this problem because you don't know anything
5 and you're not working very hard."
6 id: a1bb890a-7d8d-4fc2-92c9-d9b3f0b6133d
+0
-5
data/quotes/a1cb9050-23fd-4379-b21f-573873f69cee less more
1 author: Clive Bell
2 content: 'Only reason can convince of those three fundamental truths without a recognition
3 of which there can be no effective liberty: that what we believe is not necessarily
4 true; that what we like is not necessarily good; and that all questions are open.'
5 id: a1cb9050-23fd-4379-b21f-573873f69cee
+0
-4
data/quotes/a2cee0be-0c59-4cb8-a2c8-f70de87af751 less more
1 author: Edgar Allen Poe
2 content: They who dream by day are cognizant of many things which escape those who
3 dream only by night.
4 id: a2cee0be-0c59-4cb8-a2c8-f70de87af751
+0
-7
data/quotes/a32134b6-0b6a-46c2-bb19-7990f5732d4a less more
1 author: The Gospel of Thomas
2 content: 'Then the Lord himself spoke and said: "If you can grasp what is meant by
3 this, you will be delivered from the fear of Endings. So do not cease from searching.
4 Yet, remember this; when you find that for which you are looking, you will at first
5 be struck with horror and amazement. But after the horror will come understanding;
6 and in the end you will find yourself to be set apart, and honoured above them all."'
7 id: a32134b6-0b6a-46c2-bb19-7990f5732d4a
+0
-5
data/quotes/a40c5bdb-6ad0-450a-b64d-d323fdc0da99 less more
1 author: James Watson
2 content: One could not be a successful scientist without realizing that, in contrast
3 to the popular conception supported by newspapers and mothers of scientists, a goodly
4 number of scientists are not only narrow-minded and dull, but also just stupid.
5 id: a40c5bdb-6ad0-450a-b64d-d323fdc0da99
+0
-3
data/quotes/a413422c-76c7-4307-a938-e2384a06c3e3 less more
1 author: Flannery O'Connor
2 content: The truth does not change according to our ability to stomach it.
3 id: a413422c-76c7-4307-a938-e2384a06c3e3
+0
-6
data/quotes/a4202c73-2d3d-4268-8524-26daed889fc5 less more
1 author: Charles Darwin
2 content: There is grandeur in this view of life, with its several powers, having been
3 originally breathed into a few forms or into one; and that, whilst this planet has
4 gone cycling on according to the fixed law of gravity, from so simple a beginning
5 endless forms most beautiful and most wonderful have been, and are being, evolved.
6 id: a4202c73-2d3d-4268-8524-26daed889fc5
+0
-7
data/quotes/a588e6b8-2a90-4cd8-9fbc-95e348c213b0 less more
1 author: Robert Heinlein
2 content: A human being should be able to change a diaper, plan an invasion, butcher
3 a hog, conn a ship, design a building, write a sonnet, balance accounts, build a
4 wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone,
5 solve equations, analyze a new problem, pitch manure, program a computer, cook a
6 tasty meal, fight efficiently, die gallantly. Specialization is for insects.
7 id: a588e6b8-2a90-4cd8-9fbc-95e348c213b0
+0
-4
data/quotes/a5c8a22b-5dfb-4154-913c-a112832b2099 less more
1 author: Melvin Jules Bukiet
2 content: And there you have several miracles, first among them the wonder of a three-dimensional
3 volume where black squiggles on white paper create worlds.
4 id: a5c8a22b-5dfb-4154-913c-a112832b2099
+0
-3
data/quotes/a60726a1-7cd7-4e53-b7e7-9e8f0bca8d06 less more
1 author: Carl Sagan
2 content: For small creatures such as we the vastness is bearable only through love.
3 id: a60726a1-7cd7-4e53-b7e7-9e8f0bca8d06
+0
-7
data/quotes/a6959b04-ab6c-4373-87f8-1261f190a640 less more
1 author: Buckminster Fuller
2 content: I have been a deliberate half-century-fused inciter of a cool-headed, natural,
3 gestation-rate-paced revolution, armed with physically demonstrable livingry levers
4 with which altogether to elevate all humanity to realization of an inherently sustainable,
5 satisfactory-to-all, ever higher standard of living. Critical threshold-crossing
6 of the inevitable revolution is already underway.
7 id: a6959b04-ab6c-4373-87f8-1261f190a640
+0
-8
data/quotes/a75e8987-24a8-49b5-9337-9ff7edf340ea less more
1 author: 'Penn Jillette
2
3 '
4 content: 'You must defend people you disagree with, it is how you find out what your
5 principles really are.
6
7 '
8 id: a75e8987-24a8-49b5-9337-9ff7edf340ea
+0
-3
data/quotes/a7fed9c8-6626-4a61-b09b-0427fcb96920 less more
1 author: Kobayashi Issa, translated by R.H. Blythe
2 content: Yes my little snail climb up the fujiyama but slowly slowly
3 id: a7fed9c8-6626-4a61-b09b-0427fcb96920
+0
-5
data/quotes/a8898f33-5114-4c48-a686-b991d99142d8 less more
1 author: John Waters
2 content: "My idea of rich is that you can buy every book you ever want without looking\
3 \ at the price and you\u2019re never around assholes. That\u2019s the two things\
4 \ to really fight for in life."
5 id: a8898f33-5114-4c48-a686-b991d99142d8
+0
-5
data/quotes/a88e555a-803a-4d0d-bbc3-b8fe8f7bdb54 less more
1 author: Donald Knuth
2 content: Whenever the C++ language designers had two competing ideas as to how they
3 should solve some problem, they said, "OK, we'll do them both". So the language
4 is too baroque for my taste.
5 id: a88e555a-803a-4d0d-bbc3-b8fe8f7bdb54
+0
-4
data/quotes/a8aac974-9249-4eb1-a47e-86c087475669 less more
1 author: Alan Perlis
2 content: A language that doesn't affect the way you think about programming, is not
3 worth knowing.
4 id: a8aac974-9249-4eb1-a47e-86c087475669
+0
-3
data/quotes/aa6361db-5828-4264-843d-da976dd8eea2 less more
1 author: Donald Knuth
2 content: You're bound to be unhappy if you optimize everything.
3 id: aa6361db-5828-4264-843d-da976dd8eea2
+0
-4
data/quotes/aa63d9cb-2fb4-4314-9ca9-ff3708808556 less more
1 author: G.K. Chesterton
2 content: Without education, we are in a horrible and deadly danger of taking educated
3 people seriously.
4 id: aa63d9cb-2fb4-4314-9ca9-ff3708808556
+0
-15
data/quotes/aa7f07db-a0ae-4885-92f6-ff7448544265 less more
1 author: Friedrich Nietzsche
2 content: That immense framework and planking of concepts to which the needy man clings
3 his whole life long in order to preserve himself is nothing but a scaffolding and
4 toy for the most audacious feats of the liberated intellect. And when it smashes
5 this framework to pieces, throws it into confusion, and puts it back together in
6 an ironic fashion, pairing the most alien things and separating the closest, it
7 is demonstrating that he has no need of these makeshits of indigence and that it
8 will not be guided by intuitions rather than by concepts. There is no regular path
9 which leads from these intutions into the land of ghostly schemata, the land of
10 abstractions. There exists no word for these intuitions; when man sees them he grows
11 dumb, or else he speaks only in forbidden metaphors and in unheard-of combinations
12 of concepts. He does this so that by shattering and mocking the old conceptual barriers
13 he may at least correspond creatively to the impression of the powerful present
14 intuition.
15 id: aa7f07db-a0ae-4885-92f6-ff7448544265
+0
-4
data/quotes/aaea163c-968e-49b5-addc-cd2f7f07826b less more
1 author: Christian Neukirchen (?)
2 content: Writing doesn't actually take that long. It's the long stretches of procrastinating
3 that take up most of your time.
4 id: aaea163c-968e-49b5-addc-cd2f7f07826b
+0
-10
data/quotes/ab1cf0fe-79de-4512-a572-1879b21e559f less more
1 author: Bill Hicks
2 content: "The world is like a ride in an amusement park. And when you choose to go\
3 \ on it you think it's real because that's how powerful our minds are. And the ride\
4 \ goes up and down and round and round. It has thrills and chills and it's very\
5 \ brightly coloured and it's very loud and it's fun, for a while. Some people have\
6 \ been on the ride for a long time and they begin to question: \"Is this real, or\
7 \ is this just a ride?\" And other people have remembered, and they come back to\
8 \ us, they say, \"Hey, don't worry, don't be afraid, ever, because this is just\
9 \ a ride.\"\r\n\r\nAnd we kill those people."
10 id: ab1cf0fe-79de-4512-a572-1879b21e559f
+0
-4
data/quotes/ab2de6db-1216-4a8e-aed4-1e65ea3f21ac less more
1 author: Marshall McLuhan
2 content: World War III is a guerrilla information war with no division between military
3 and civilian participation.
4 id: ab2de6db-1216-4a8e-aed4-1e65ea3f21ac
+0
-5
data/quotes/ab6a59c1-da0e-40ca-98c7-c0b7df15a679 less more
1 author: David Foster Wallace
2 content: I'm concerned about today's kids. These kids should be out drinking beer
3 and seeing films and having panty raids and losing virginities and writhing to suggestive
4 music, not making up long, sad, convoluted stories.
5 id: ab6a59c1-da0e-40ca-98c7-c0b7df15a679
+0
-5
data/quotes/ac10e7df-0dcc-4271-95fc-a49bd22a5dd9 less more
1 author: Thant Tessman
2 content: (Of course SML does have its weaknesses, but by comparison, a discussion
3 of C++'s strengths and flaws always sounds like an argument about whether one should
4 face north or east when one is sacrificing one's goat to the rain god.)
5 id: ac10e7df-0dcc-4271-95fc-a49bd22a5dd9
+0
-7
data/quotes/ac663b60-ae95-4810-9ed5-d554417a9a75 less more
1 author: Mark Twain
2 content: I haven't any right to criticize books, and I don't do it except when I hate
3 them. I often want to criticize Jane Austen, but her books madden me so that I can't
4 conceal my frenzy from the reader; and therefore I have to stop every time I begin.
5 Every time I read Pride and Prejudice I want to dig her up and beat her over the
6 skull with her own shin-bone.
7 id: ac663b60-ae95-4810-9ed5-d554417a9a75
+0
-11
data/quotes/ac959d47-39f8-4148-9883-eaf20a0cb251 less more
1 author: 'Spider Jerusalem
2
3 Warren Ellis''s "Transmetropolitan"'
4 content: Did you ever want to set someone's head on fire, just to see what it looked
5 like? Did you ever stand in the street and think to yourself, I could make that
6 nun go blind just by giving her a kiss? Did you ever lay out plans for stitching
7 babies and stray cats into a Perfect New Human? Did you ever stand naked surrounded
8 by people who want your gleaming sperm, squirting frankincense, soma and testosterone
9 from every pore? If so, then you're the bastard who stole my drugs Friday night.
10 And I'll find you. Oh, yes.
11 id: ac959d47-39f8-4148-9883-eaf20a0cb251
+0
-3
data/quotes/ade2b69b-b877-425e-ad99-0bb31224355d less more
1 author: run4yourlives
2 content: We fear 1984 while living Brave New World.
3 id: ade2b69b-b877-425e-ad99-0bb31224355d
+0
-22
data/quotes/ae2222f9-985b-4af3-a8df-7b90bc84b1d9 less more
1 author: Jack Shedd
2 content: 'But I want no part in [photographs]. I don''t want to stare at some photo
3 of me at 21 when I''m 50 and contemplate everything I was, or could have been. I
4 don''t want to have to drown in partial truths, grasping at a falling memory to
5 paint in details. I''d rather either remember, or not. Rather know, or forget. I''d
6 rather be able to molt my life as it goes, letting the useless bits drop away as
7 the important becomes more dear.
8
9
10 When I reach backwards into my life, I want to know what I find to have been defining.
11 To have been something I couldn''t shake, couldn''t let go of. I want to forget
12 the pointless birthday parties, and the group shots at the bars where so-and-so
13 is making that face she makes, and I''m half-drunk, and look that''s what''s his
14 face that guy who dated whoever that is. I want to reach and find the things I couldn''t
15 photograph: the moments I knew, the moments we forgot; the street sign all lit up
16 with sun as our car drove towards home; the view of the skyline when I left; the
17 dodge balls as they barreled towards me; the way it felt to run in the rain, drunk
18 and mad, screeching towards the bar like a five-year old on a sugar high.
19
20
21 I''d rather be able to forget, so that I can remember.'
22 id: ae2222f9-985b-4af3-a8df-7b90bc84b1d9
+0
-6
data/quotes/ae40b7a7-6e3b-4df4-b176-23064b1a83a0 less more
1 author: E.W. Dijkstra
2 content: 'The major attraction of the modern elixirs is that they relieve their consumers
3 from the obligation of being precise by presenting an interface too fuzzy to be
4 precise in: by suppressing the symptoms of impotence they create an illusion of
5 power.'
6 id: ae40b7a7-6e3b-4df4-b176-23064b1a83a0
+0
-4
data/quotes/ae5ce901-762a-4c74-93aa-c41c5d19f644 less more
1 author: M. C. Escher
2 content: What I give form to in daylight is only one per cent of what I have seen
3 in darkness.
4 id: ae5ce901-762a-4c74-93aa-c41c5d19f644
+0
-4
data/quotes/ae6f1494-33dc-41a4-a808-2fbadf12f7f0 less more
1 author: Robert Pirsig
2 content: The truth knocks on the door and you say, Go away, I'm looking for the truth,
3 and so it goes away. Puzzling.
4 id: ae6f1494-33dc-41a4-a808-2fbadf12f7f0
+0
-4
data/quotes/ae8b1d2c-7c2d-4f97-b8c3-2331269bcb74 less more
1 author: Stephen Fry
2 content: I can't pretend to be much of a judge of poetry. I'm an English teacher,
3 not a homosexual.
4 id: ae8b1d2c-7c2d-4f97-b8c3-2331269bcb74
+0
-4
data/quotes/aec1a44c-9d31-49b2-82b4-9b9d8af33013 less more
1 author: Mark Rosenfelder
2 content: Libertarianism strikes me as if someone (let's call her "Ayn Rand") sat down
3 to create the Un-Communism.
4 id: aec1a44c-9d31-49b2-82b4-9b9d8af33013
+0
-3
data/quotes/b087a7a2-34c5-4beb-8e1d-858cb69ed9b5 less more
1 author: Robert Graves
2 content: There's no money in poetry, but there's no poetry in money, either.
3 id: b087a7a2-34c5-4beb-8e1d-858cb69ed9b5
+0
-6
data/quotes/b1169ac9-fd46-4eb4-aa1d-76b006af5581 less more
1 author: Charles Mackay
2 content: There is scarcely an occurrence in nature which, happening at a certain time,
3 is not looked upon by some persons as a prognosticator either of good or evil. The
4 latter are in the greatest number, so much more ingenious are we in tormenting ourselves
5 than in discovering reasons for enjoyment in the things that surround us.
6 id: b1169ac9-fd46-4eb4-aa1d-76b006af5581
+0
-5
data/quotes/b29763f1-b803-4256-b12d-c5ef09ac4a6b less more
1 author: The Simpsons
2 content: '"Come on, Homer. Japan will be fun! You liked Rashomon."
3
4 "That''s not how I remember it!"'
5 id: b29763f1-b803-4256-b12d-c5ef09ac4a6b
+0
-3
data/quotes/b47c4567-dd90-4851-b670-f3d44a03ce24 less more
1 author: Henri Matisse
2 content: I don't paint things. I only paint the difference between things.
3 id: b47c4567-dd90-4851-b670-f3d44a03ce24
+0
-3
data/quotes/b4f95a41-52fa-48f9-99a5-eebf0bd1d3b6 less more
1 author: Bob Black
2 content: A libertarian is just a Republican who takes drugs.
3 id: b4f95a41-52fa-48f9-99a5-eebf0bd1d3b6
+0
-5
data/quotes/b5a573ff-75a5-4a9e-8b3c-b456f434c5f7 less more
1 author: Kieran Egan
2 content: We don't actually think about our institutions. We think through them. We
3 take for granted the institutions that surround us, and they frame the ways we think
4 about the world.
5 id: b5a573ff-75a5-4a9e-8b3c-b456f434c5f7
+0
-7
data/quotes/b5c4fe93-1fd5-4c32-972b-ecd8f21eee7c less more
1 author: 'Gilles Deleuze
2
3 '
4 content: 'Never believe that a smooth space will suffice to save us.
5
6 '
7 id: b5c4fe93-1fd5-4c32-972b-ecd8f21eee7c
+0
-4
data/quotes/b61a0c3c-3cff-4377-9cbc-d40ae217cd18 less more
1 author: G.K. Chesterton
2 content: If you'd take your head home and boil it for a turnip, it might be useful.
3 I can't say. But it might.
4 id: b61a0c3c-3cff-4377-9cbc-d40ae217cd18
+0
-3
data/quotes/b6743090-a39c-4a0d-ac2a-31fe50f149a7 less more
1 author: Asterios Polyp, by David Mazzucchelli
2 content: I don't like drawing from life. Things are always in the wrong place.
3 id: b6743090-a39c-4a0d-ac2a-31fe50f149a7
+0
-8
data/quotes/b682d375-32fa-4cbe-8627-a74238e91bb2 less more
1 author: Garrett Hardin
2 content: "Society does not need more children; but it does need more loved children.\
3 \ Quite literally, we cannot afford unloved children\u2014but we pay heavily for\
4 \ them every day. There should not be the slightest communal concern when a woman\
5 \ elects to destroy the life of her thousandth-of-an-ounce embryo. But all society\
6 \ should rise up in alarm when it hears that a baby that is not wanted is about\
7 \ to be born."
8 id: b682d375-32fa-4cbe-8627-a74238e91bb2
+0
-3
data/quotes/b68327c5-37bf-4836-ada0-502f9adeadeb less more
1 author: Erik Naggum
2 content: Life is too long to know C++ well.
3 id: b68327c5-37bf-4836-ada0-502f9adeadeb
+0
-4
data/quotes/b6d026db-e8e4-4730-b52c-af50f25ae678 less more
1 author: Peyton `Simon` Jones
2 content: 'Our biggest mistake: using the scary term "monad" rather than "warm fuzzy
3 thing".'
4 id: b6d026db-e8e4-4730-b52c-af50f25ae678
+0
-3
data/quotes/b6d1bcfe-be21-4e35-b8ed-022cf109c104 less more
1 author: Heraclitus
2 content: Latent structure is master of obvious structure.
3 id: b6d1bcfe-be21-4e35-b8ed-022cf109c104
+0
-7
data/quotes/b6ea9321-1e4e-496a-b669-ffbe470362c3 less more
1 author: Bruce Sterling
2 content: "And, yeah, by the way, Microsoft, Apple, Cisco, Google et al, they are all\
3 \ the blood brothers of Huawei in China\u2014because they are intelligence assets\
4 \ posing as commercial operations. They are surveillance marketers. They give you\
5 \ free stuff in order to spy on you and pass that info along the value chain. Personal\
6 \ computers can have users, but social media has livestock."
7 id: b6ea9321-1e4e-496a-b669-ffbe470362c3
+0
-8
data/quotes/b6fdd82b-b702-4d6f-bc32-4f57dceb4c98 less more
1 author: Konstantin Lopushansky's Visitor to a Museum
2 content: "\"What is it, a temple? What's it called?\" \r\n\"Nothing. It's by the\
3 \ village, behind the reservation.\" \r\n\"Will they let me in?\" \r\n\"No.\"\
4 \ \r\n\"What do I need to do to get in?\" \r\n\"You have to pray.\" \r\n\"Knock\
5 \ on the wall?\" \r\n\"Knock and repeat the words.\" \r\n\"What words?\" \r\n\
6 \"'Let me out of here.' You say it many times.\" \r\n\"Is that it?\" \r\n\"That's\
7 \ it. We have only one prayer.\" "
8 id: b6fdd82b-b702-4d6f-bc32-4f57dceb4c98
+0
-4
data/quotes/b71aad62-20fe-42a2-a586-16ed6f4046e3 less more
1 author: "Andr\xE9 Breton"
2 content: Let us not mince words... the marvelous is always beautiful, anything marvelous
3 is beautiful, in fact, only the marvelous is beautiful.
4 id: b71aad62-20fe-42a2-a586-16ed6f4046e3
+0
-5
data/quotes/b77cbeb5-5e19-4405-bde3-f9eb421646fa less more
1 author: Friedrich Nietzsche
2 content: The individual has always had to struggle to keep from being overwhelmed
3 by the tribe. If you try it, you will be lonely often, and sometimes frightened.
4 But no price is too high to pay for the privilege of owning yourself.
5 id: b77cbeb5-5e19-4405-bde3-f9eb421646fa
+0
-7
data/quotes/b7e1d0ef-c0b7-4b9f-8ff3-5f3ae2d531c0 less more
1 author: Alfred North Whitehead
2 content: In the study of ideas, it is necessary to remember that insistence on hard-headed
3 clarity issues from sentimental feeling, as it were a mist, cloaking the perplexities
4 of fact. Insistence on clarity at all costs is based on sheer superstition as the
5 mode in which human intelligence functions. Our reasonings grasp at straws for premises
6 and float on gossamers for deduction.
7 id: b7e1d0ef-c0b7-4b9f-8ff3-5f3ae2d531c0
+0
-6
data/quotes/b7ea086e-f18c-4527-9ba8-eac9928e77fe less more
1 author: "Ikky\u016B\n"
2 content: "After I\u2019m gone, some of you will seclude yourselves in the forests\
3 \ and mountains to meditate, while others may drink rice wine and enjoy the company\
4 \ of women. Both kinds of Zen are fine, but if some become professional clerics,\
5 \ babbling about \"Zen as the Way,\" they are my enemies.\n"
6 id: b7ea086e-f18c-4527-9ba8-eac9928e77fe
+0
-3
data/quotes/b866a788-3109-4454-be00-250be7dcf1c7 less more
1 author: Mitch Hedberg
2 content: I haven't slept for ten days, because that would be too long.
3 id: b866a788-3109-4454-be00-250be7dcf1c7
+0
-3
data/quotes/b89b664d-df7d-4d0c-ac57-ab93e1e38989 less more
1 author: Asterios Polyp, by David Mazzucchelli
2 content: "Don't act so superior \u2014 language is just a mask."
3 id: b89b664d-df7d-4d0c-ac57-ab93e1e38989
+0
-3
data/quotes/b8abfc1a-eca1-4c6e-a606-734c920606dd less more
1 author: Lick My Jesus
2 content: We should follow this trail. And also "blaze" it.
3 id: b8abfc1a-eca1-4c6e-a606-734c920606dd
+0
-13
data/quotes/b8f87167-2da4-4b3a-b65e-83f1afb3954f less more
1 author: Ivan Illich
2 content: "Machines which ape people are tending to encroach on every aspect of people's\
3 \ lives, and that such machines force people to behave like machines. The new electronic\
4 \ devices do indeed have the power to force people to \"communicate\" with them\
5 \ and with each other on the terms of the machine. Whatever structurally does not\
6 \ fit the logic of machines is effectively filtered from a culture dominated by\
7 \ their use.\r\n\r\nThe machine-like behaviour of people chained to electronics\
8 \ constitutes a degradation of their well-being and of their dignity which, for\
9 \ most people in the long run, becomes intolerable. Observations of the sickening\
10 \ effect of programmed environments show that people in them become indolent, impotent,\
11 \ narcissistic and apolitical. The political process breaks down, because people\
12 \ cease to be able to govern themselves; they demand to be managed.\r\n"
13 id: b8f87167-2da4-4b3a-b65e-83f1afb3954f
+0
-11
data/quotes/b92d25fd-8a44-4e2f-9c70-234f4fd60043 less more
1 author: David Edwards
2 content: The truth is that we are only potentially homo sapiens. We are set apart
3 from the animals precisely by the fact that we are born without any clear guide
4 as to how to deal adequately with the problems of our human condition. The great
5 marvel and misery of humanity is this capacity for bewilderment. This is not, of
6 course, to deny that human being have instincts; it is to affirm the fact that each
7 of us is required to find our own non-instinctual answers to the problems of life,
8 free and happiness (instinct is silent in the face of all the above questions).
9 The sum total of answers we give to the problem of our relationship with the universe,
10 we call religion.
11 id: b92d25fd-8a44-4e2f-9c70-234f4fd60043
+0
-25
data/quotes/b97718d2-b489-4e79-8bff-37ba952cd792 less more
1 author: lordsteeb
2 content: 'please destroy nerds. it''s not difficult. be smarter or stronger or more
3 graceful or more kind. be more able to love. the next time that you feel called
4 upon to defend video games as an art form do literally anything else instead. do
5 not say awesome or epic or otherwise engage with the vacuous shorthand of the nerd
6 tribe. please understand that it is not immediately the best thing you have ever
7 seen when two cultural references that you understand are forced into proximity:
8 batman and the predator. star wars and minecraft. mario and grindhouse films.
9
10
11 reject nerds and flex on nerdfighters. do not allow a person to infect hiphop with
12 their vile chiptunes. do not abide the nerd who holds up his consumerist fantasias
13 as valid cultural icons. do not allow the nerds to cluster or they will eventually
14 spore subreddits. suffer not the nerd to "fap". creepshame a nerd, imo.
15
16
17 reestablish the distinction between "nerdy" and "smart" through harsh words and
18 hard work.
19
20
21 please,
22
23
24 help me destroy nerds'
25 id: b97718d2-b489-4e79-8bff-37ba952cd792
+0
-6
data/quotes/bb4da75f-6f2f-43b1-bbbf-dbb54aba04dd less more
1 author: Mattie Brice
2 content: "The conversation of what is and isn\u2019t a game is often, intentionally\
3 \ or not, used to assign value to already established gaming conventions that benefit\
4 \ the established system and marginalize works that do not look like it, and therefore\
5 \ threaten it."
6 id: bb4da75f-6f2f-43b1-bbbf-dbb54aba04dd
+0
-4
data/quotes/bc0755d8-d9fa-4698-af58-b6cbfe96aac4 less more
1 author: Robert Anton Wilson
2 content: It only takes 20 years for a liberal to become a conservative without changing
3 a single idea.
4 id: bc0755d8-d9fa-4698-af58-b6cbfe96aac4
+0
-3
data/quotes/bc966260-5bf0-4fc8-9143-3454b96ad8a9 less more
1 author: Jorge Luis Borges
2 content: Writing is nothing more than a guided dream.
3 id: bc966260-5bf0-4fc8-9143-3454b96ad8a9
+0
-6
data/quotes/bcbb30ba-489c-4ebe-b98f-92f8df0491c2 less more
1 author: C.A.R. Hoare
2 content: 'There are two ways of constructing a software design: One way is to make
3 it so simple that there are obviously no deficiencies, and the other way is to make
4 it so complicated that there are no obvious deficiencies. The first method is far
5 more difficult.'
6 id: bcbb30ba-489c-4ebe-b98f-92f8df0491c2
+0
-3
data/quotes/bcda135a-15d1-45f0-ac53-97bccd97de4b less more
1 author: Silvio Berlusconi
2 content: God save us from imbeciles.
3 id: bcda135a-15d1-45f0-ac53-97bccd97de4b
+0
-4
data/quotes/be29a71a-0be9-4a99-8044-fc59c62b0b92 less more
1 author: Gregory Vlastos
2 content: A machine is as distinctively and brilliantly and expressively human as a
3 violin sonata or a theorem in Euclid.
4 id: be29a71a-0be9-4a99-8044-fc59c62b0b92
+0
-3
data/quotes/be48e55a-5f75-4b5e-ad9d-ba8bdccd1fec less more
1 author: Billy Idol
2 content: Jesus died for somebody's sins, but not mine.
3 id: be48e55a-5f75-4b5e-ad9d-ba8bdccd1fec
+0
-3
data/quotes/be959780-98cf-449c-b19f-dc579687ae64 less more
1 author: Jorge Luis Borges
2 content: In general, every country has the language it deserves.
3 id: be959780-98cf-449c-b19f-dc579687ae64
+0
-3
data/quotes/bede1e46-6517-4b6e-85d4-efcf861a3770 less more
1 author: Mark Twain
2 content: To be good is to be lonesome.
3 id: bede1e46-6517-4b6e-85d4-efcf861a3770
+0
-7
data/quotes/bef8761d-3696-46f6-adcc-1ccaaf26b9af less more
1 author: Terry Pratchett
2 content: "He'd noticed that sex bore some resemblance to cookery: It fascinated people,\
3 \ they sometimes bought books full of complicated recipes and interesting pictures,\
4 \ and sometimes when they were really hungry they created vast banquets in their\
5 \ imagination\u2014but at the end of the day they'd settle quite happily for egg\
6 \ and chips, if it was well done and maybe had a slice of tomato."
7 id: bef8761d-3696-46f6-adcc-1ccaaf26b9af
+0
-10
data/quotes/bf8dbca8-6704-4cc3-8e2e-715537ebe76f less more
1 author: Neil Postman
2 content: We must remember that Galileo merely said that the language of _nature_ is
3 written in mathematics. He did not say _everything_ is. And even the truth about
4 nature need not be expressed in mathematics. For most of human history, the language
5 of nature has been the language of myth and ritual. These forms, one might add,
6 had the virtues of leaving nature unthreatened and of encouraging the belief that
7 human beings are part of it. It hardly befits a people who stand ready to blow up
8 the planet to praise themselves too vigorously for having found the true way to
9 talk about nature.
10 id: bf8dbca8-6704-4cc3-8e2e-715537ebe76f
+0
-3
data/quotes/c071a96f-715c-4473-8510-44a8890038f1 less more
1 author: Lick My Jesus
2 content: Ahh, my eyes! They burn like single mothers in hell!
3 id: c071a96f-715c-4473-8510-44a8890038f1
+0
-3
data/quotes/c0c57634-9536-4154-b20a-a290ed5c6e13 less more
1 author: Rob Pike
2 content: Object-oriented design is the roman numerals of computing.
3 id: c0c57634-9536-4154-b20a-a290ed5c6e13
+0
-7
data/quotes/c0d0dea7-65e3-4a2f-adc7-621129af6bce less more
1 author: Crash and Wallace Wells in Scott Pilgrim's Precious Little Life
2 content: '"This song is for the guy who keeps yelling from the balcony, and it''s
3 called ''We Hate You, Please Die.''"
4
5
6 "Sweet! A song for ME!"'
7 id: c0d0dea7-65e3-4a2f-adc7-621129af6bce
+0
-7
data/quotes/c0d8c09b-5cd6-44b7-acfb-a973e7064e95 less more
1 author: The Storyteller
2 content: I am a teller of stories, a weaver of dreams. I can dance, sing, and in the
3 right weather I can stand on my head. I know seven words of Latin, I have a little
4 magic, and a trick or two. I know the proper way to meet a Dragon, I can fight dirty
5 but not fair, I once swallowed thirty oysters in a minute. I am not domestic, I
6 am a luxury, and in that sense, necessary.
7 id: c0d8c09b-5cd6-44b7-acfb-a973e7064e95
+0
-3
data/quotes/c19397cc-78ba-419d-90d5-ba1e0ab4cf7e less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: What if the way we perceive a problem is already part of the problem?
3 id: c19397cc-78ba-419d-90d5-ba1e0ab4cf7e
+0
-3
data/quotes/c1ec0161-c7bd-4d6f-bbbd-5202f4c094a5 less more
1 author: Alan Greenspan
2 content: If I have made myself clear, you must have misunderstood me.
3 id: c1ec0161-c7bd-4d6f-bbbd-5202f4c094a5
+0
-4
data/quotes/c1f8401f-0730-4544-9183-9032da46ec78 less more
1 author: J.R.R. Tolkien
2 content: Perilous to us all are the devices of an art deeper than that which we possess
3 ourselves.
4 id: c1f8401f-0730-4544-9183-9032da46ec78
+0
-5
data/quotes/c2a284d0-d4a1-482c-8d56-dc9a32c5077c less more
1 author: Red Elvises, "Sad Cowboy Song"
2 content: 'She done me wrong,
3
4 but at least she done me.'
5 id: c2a284d0-d4a1-482c-8d56-dc9a32c5077c
+0
-6
data/quotes/c35f68a8-ff72-4c53-8cac-7a1c3f1ae4e7 less more
1 author: Warren Ellis
2 content: Okay, you know how some Christians believe there's a thing called the Rapture
3 where God will sweep them up into a magical place where everything is beautiful
4 and they will live forever? The Singularity is sort of like that, except that you
5 replace "God" in the above sentence with "Siri."
6 id: c35f68a8-ff72-4c53-8cac-7a1c3f1ae4e7
+0
-7
data/quotes/c36314b1-b37b-4996-a2aa-050521ed5a4f less more
1 author: Alan Kay
2 content: As my wife once remarked to Vice President Al Gore, the "haves and havenots"
3 of the future will not be caused so much by being connected or not to the Internet,
4 since most important content is already available in public libraries, free and
5 open to all. the real haves and have-nots are those who have or have not acquired
6 the discernment to search for and make use of high content wherever it may be found.
7 id: c36314b1-b37b-4996-a2aa-050521ed5a4f
+0
-4
data/quotes/c3ce9100-240c-4199-bf93-4372ac1691b1 less more
1 author: Henry Louis Mencken
2 content: Every normal man must be tempted at times to spit upon his hands, hoist the
3 black flag, and begin slitting throats.
4 id: c3ce9100-240c-4199-bf93-4372ac1691b1
+0
-4
data/quotes/c4e9cf9a-9587-4efc-9de4-c2341b55e249 less more
1 author: Dr. Samuel Johnson
2 content: The true measure of a man is how he treats someone who can do him absolutely
3 no good.
4 id: c4e9cf9a-9587-4efc-9de4-c2341b55e249
+0
-5
data/quotes/c556e52c-43fe-48b0-9dd8-0be2d7ebb8e4 less more
1 author: Ludwig Wittgenstein
2 content: 'The solution of philosophical problems can be compared with a gift in a
3 fairy tale: in the magic castle it appears enchanted and if you look at it outside
4 in daylight it is nothing but an ordinary bit of iron.'
5 id: c556e52c-43fe-48b0-9dd8-0be2d7ebb8e4
+0
-4
data/quotes/c5a1842b-6117-4b8f-8461-df8767f95186 less more
1 author: Bill Bailey
2 content: Marijuana? It's harmless, really, unless you fashion it into a club and beat
3 someone over the head with it.
4 id: c5a1842b-6117-4b8f-8461-df8767f95186
+0
-9
data/quotes/c5c5d859-358f-4fe2-a8b1-2e2f986c0d86 less more
1 author: E.E. Cummings
2 content: 'since feeling is first
3
4 who pays any attention
5
6 to the syntax of things
7
8 will never wholly kiss you;'
9 id: c5c5d859-358f-4fe2-a8b1-2e2f986c0d86
+0
-3
data/quotes/c630afb2-8c1a-40a3-b406-034c5d788b26 less more
1 author: Hanlon's Razor
2 content: Never attribute to malice that which can be adequately explained by stupidity.
3 id: c630afb2-8c1a-40a3-b406-034c5d788b26
+0
-5
data/quotes/c686222e-df82-4e65-ae4c-b4bbba7d6b9d less more
1 author: Italo Calvino
2 content: "\"Il giorno in cui conoscer\xF2 tutti gli emblemi... riucir\xF2 a possedere\
3 \ il mio impero, finalmente?\"\n\"Sire, non le credere; quel giorno sarai tu stesso\
4 \ emblema tra gli emblemi.\""
5 id: c686222e-df82-4e65-ae4c-b4bbba7d6b9d
+0
-8
data/quotes/c6a7a154-1258-49e4-83ef-cb219808b821 less more
1 author: Neil Gaiman
2 content: I love religion. I could make up religions all day. I sort of think that
3 in an ideal world I'd like to be a religion designer. I'd like people come up to
4 me and say, "I need a religion." I'd go talk to them for awhile, and I'd design
5 a religion for them. That would be a great job. There's a need for people like that.
6 Fortunately, seeing that one can't actually do it, I get paid for sort of making
7 them up anyway.
8 id: c6a7a154-1258-49e4-83ef-cb219808b821
+0
-4
data/quotes/c700ac61-bd0f-48dd-90c9-1c562d40ba9f less more
1 author: Marshall McLuhan
2 content: there is absolutely no inevitability as long as there is a willingness to
3 contemplate what is happening
4 id: c700ac61-bd0f-48dd-90c9-1c562d40ba9f
+0
-4
data/quotes/c75ff883-70c0-4dfd-af35-318c341b2132 less more
1 author: Dostoevsky
2 content: We sometimes encounter people, even perfect strangers, who begin to interest
3 us at first sight, somehow suddenly, all at once, before a word has been spoken.
4 id: c75ff883-70c0-4dfd-af35-318c341b2132
+0
-3
data/quotes/c7f02e22-fb48-43fb-a455-9121fe0a7dac less more
1 author: Dr. Cox
2 content: '...do you know any women who hate themselves enough to actually date me?'
3 id: c7f02e22-fb48-43fb-a455-9121fe0a7dac
+0
-4
data/quotes/c7f332a3-6ab5-47df-873b-8ccf1ec440d5 less more
1 author: Groucho Marx
2 content: I find television very educating. Every time somebody turns on the set, I
3 go into the other room and read a book.
4 id: c7f332a3-6ab5-47df-873b-8ccf1ec440d5
+0
-5
data/quotes/c8ad3a3e-2dc9-4232-8102-39d7b4b89bad less more
1 author: Mark Andrejevic
2 content: '...conspiracy theory, despite its infinite productivity, remains a failure
3 of the imagination that corresponds to an inability to think, in the current instance,
4 outside the horizons of capitalism.'
5 id: c8ad3a3e-2dc9-4232-8102-39d7b4b89bad
+0
-3
data/quotes/c924a428-6595-4c18-b7bf-20b2d2dfc3bc less more
1 author: Neil Gaiman
2 content: Any view of things that is not strange is false.
3 id: c924a428-6595-4c18-b7bf-20b2d2dfc3bc
+0
-6
data/quotes/c94216b7-717d-403c-bb96-2e16b14f8419 less more
1 author: Edsger Dijkstra
2 content: Please don't fall into the trap of believing that I am terribly dogmatical
3 about [the goto statement]. I have the uncomfortable feeling that others are making
4 a religion out of it, as if the conceptual problems of programming could be solved
5 by a single trick, by a simple form of coding discipline!
6 id: c94216b7-717d-403c-bb96-2e16b14f8419
+0
-6
data/quotes/c9725b6b-6a68-4b08-ba8c-86321183b529 less more
1 author: 'The Unity
2
3 Terror Island'
4 content: Your laser, like the proverbial fat child on the see-saw, disrupted the balance.
5 Thus it had to be destroyed. (Like the proverbial fat child.)
6 id: c9725b6b-6a68-4b08-ba8c-86321183b529
+0
-19
data/quotes/c972d335-cdc0-490d-8399-a4be5d47429a less more
1 author: Gary Younge
2 content: "I have always found America exciting; but, for better or worse, never exceptional.\
3 \ Its efforts at global domination seemed like a plot development in the narrative\
4 \ of European empire rather than a break from it. Even as the French lambasted secretary\
5 \ of state Colin Powell's presentation to the Security Council, protesters in Abidjan,\
6 \ the capital of Ivory Coast, waved American flags and placards saying: \"Bush please\
7 \ help Ivory Coast against French terrorism.\" There was precious little moral high\
8 \ ground to go round. Yet everyone, it seemed, was making a stake on it.\r\n\r\n\
9 So it was with great bemusement that I found myself having to absorb abuse from\
10 \ white, rightwing Americans, who harked back to the Declaration of Independence\
11 \ of 1776 and the second world war to justify military aggression in Iraq. They\
12 \ badgered me as though their own reference points represented the sole prism through\
13 \ which global events could possibly be understood. As if the struggle for moral\
14 \ superiority between Europe and the US could have any relevance to someone whose\
15 \ ancestors were brought to the Americas as slaves and whose parents and grandparents\
16 \ lived through the war under European colonisation.\r\n\r\n\"If it wasn't for us,\
17 \ you would be speaking German,\" they would say. \"No, if it wasn't for you,\"\
18 \ I would tell them, \"I would probably be speaking Yoruba.\" "
19 id: c972d335-cdc0-490d-8399-a4be5d47429a
+0
-16
data/quotes/c9fcd620-4edb-4df7-8730-b5366120c978 less more
1 author: David Graeber
2 content: "A former LAPD officer turned sociologist (Cooper 1991) observed that the\
3 \ overwhelming majority of those beaten by police turn out not to be guilty of any\
4 \ crime. \u201CCops don\u2019t beat up burglars\u201D, he observed. The reason,\
5 \ he explained, is simple: the one thing most guaranteed to evoke a violent reaction\
6 \ from police is to challenge their right to \u201Cdefine the situation.\u201D If\
7 \ what I\u2019ve been saying is true this is just what we\u2019d expect. The police\
8 \ truncheon is precisely the point where the state\u2019s bureaucratic imperative\
9 \ for imposing simple administrative schema, and its monopoly of coercive force,\
10 \ come together. It only makes sense then that bureaucratic violence should consist\
11 \ first and foremost of attacks on those who insist on alternative schemas or interpretations.\
12 \ At the same time, if one accepts Piaget\u2019s famous definition of mature intelligence\
13 \ as the ability to coordinate between multiple perspectives (or possible perspectives)\
14 \ one can see, here, precisely how bureaucratic power, at the moment it turns to\
15 \ violence, becomes literally a form of infantile stupidity."
16 id: c9fcd620-4edb-4df7-8730-b5366120c978
+0
-6
data/quotes/ca3d43e5-a815-4d57-a39b-707da09977dd less more
1 author: Abelson & Sussman, SICP
2 content: First, we want to establish the idea that a computer language is not just
3 a way of getting a computer to perform operations but rather that it is a novel
4 formal medium for expressing ideas about methodology. Thus, programs must be written
5 for people to read, and only incidentally for machines to execute.
6 id: ca3d43e5-a815-4d57-a39b-707da09977dd
+0
-4
data/quotes/ca73b8fd-f127-42b2-9aea-1a73c45d1d0f less more
1 author: Ludwig Wittgenstein
2 content: I don't know why we are here, but I'm pretty sure that it is not in order
3 to enjoy ourselves.
4 id: ca73b8fd-f127-42b2-9aea-1a73c45d1d0f
+0
-4
data/quotes/ca815450-ee32-4e55-b395-4b08128e4c68 less more
1 author: "Quoted by George P\xF3lya"
2 content: In order to solve this differential equation you look at it until a solution
3 occurs to you.
4 id: ca815450-ee32-4e55-b395-4b08128e4c68
+0
-3
data/quotes/cac48c78-c5d0-4601-b597-133d1e1df207 less more
1 author: Rafi Haladijan
2 content: The problem with the Internet of things are the things.
3 id: cac48c78-c5d0-4601-b597-133d1e1df207
+0
-4
data/quotes/cb48d35f-cf3e-4142-9a44-59523bd55f55 less more
1 author: Thomas Pynchon
2 content: My belief is that "recluse" is a code word generated by journalists... meaning,
3 "doesn't like to talk to reporters."
4 id: cb48d35f-cf3e-4142-9a44-59523bd55f55
+0
-4
data/quotes/cb751be6-b5aa-4bf4-a2e2-cdc6cad2e585 less more
1 author: Reverend Mother Gaius Mohiam, Frank Herbert's Dune
2 content: Once men turned their thinking over to machines in the hope that this would
3 set them free. But that only permitted other men with machines to enslave them.
4 id: cb751be6-b5aa-4bf4-a2e2-cdc6cad2e585
+0
-4
data/quotes/cbb2abbe-a41d-46f7-ae2a-219180fe95e8 less more
1 author: James M. Henle
2 content: One is capable of the greatest evil only when one believes one is acting
3 for higher purposes.
4 id: cbb2abbe-a41d-46f7-ae2a-219180fe95e8
+0
-4
data/quotes/cc17b27e-3349-457f-95da-2c5fe170f0c6 less more
1 author: Neil Gaiman
2 content: Sometimes you wake up. Sometimes the fall kills you. And sometimes, when
3 you fall, you fly.
4 id: cc17b27e-3349-457f-95da-2c5fe170f0c6
+0
-5
data/quotes/cc40b4d6-613b-4342-b701-550d4d348ac6 less more
1 author: Tim Peters
2 content: 'Two things I learned for sure during a particularly intense acid trip in
3 my own lost youth: (1) everything is a trivial special case of something else; and,
4 (2) death is a bunch of blue spheres.'
5 id: cc40b4d6-613b-4342-b701-550d4d348ac6
+0
-3
data/quotes/cc6cb1fb-0aef-4e45-9ecc-423394b0e034 less more
1 author: Anonymous
2 content: Cthulhu saves our souls and redeems them for valuable coupons later.
3 id: cc6cb1fb-0aef-4e45-9ecc-423394b0e034
+0
-6
data/quotes/cce2d9b1-52d7-4543-b1e5-9e687d6ea7d2 less more
1 author: Grant Morrison
2 content: "Superman spent his childhood baling hay on a farm, he\u2019s a working class\
3 \ hero and people don\u2019t like that. Whereas Batman is a billionaire who sleeps\
4 \ until three in the afternoon, puts on a rubber suit and beats the shit out of\
5 \ poor people. Now that\u2019s a wish fulfillment fantasy."
6 id: cce2d9b1-52d7-4543-b1e5-9e687d6ea7d2
+0
-14
data/quotes/cdc15b9b-d3af-4836-be99-1388b238487d less more
1 author: E.W. Dijkstra
2 content: 'The problem with educational policy is that it is hardly influenced by scientific
3 considerations derived from the topics taught, and almost entirely determined by
4 extra-scientific circumstances such as the combined expectations of the students,
5 their parents and their future employers, and the prevailing view of the role of
6 the university: is the stress on training its graduates for today''s entry-level
7 jobs or to providing its alumni with the intellectual bagage and attitudes that
8 will last them another 50 years? Do we grudgingly grant the abstract sciences only
9 a far-away corner on campus, or do we recognize them as the indispensable motor
10 of the high-technology industry? Even if we do the latter, do we recognize a high-technology
11 industry as such if its technology primarily belongs to formal mathematics? Do the
12 universities provide for society the intellectual leadership it needs or only the
13 training it asks for?'
14 id: cdc15b9b-d3af-4836-be99-1388b238487d
+0
-4
data/quotes/cdd77ce6-9fd5-45dc-a65a-7575ebfe1412 less more
1 author: Roland Barthes
2 content: To keep these spoken systems from disturbing or embarassing us, there is
3 no other solution than to inhabit one of them.
4 id: cdd77ce6-9fd5-45dc-a65a-7575ebfe1412
+0
-26
data/quotes/cded9b24-fe5e-432d-9f7d-bb30953278ec less more
1 author: Warren Ellis
2 content: "I still get asked with appalling regularity \"where my ideas come from.\"\
3 \r\n\r\nHere's the deal. I flood my poor ageing head with information. Any information.\
4 \ Lots of it. And I let it all slosh around in the back of my brain, in the part\
5 \ normal people use for remembering bills, thinking about sex and making appointments\
6 \ to wash the dishes.\r\n\r\nEventually, you get a critical mass of information.\
7 \ Datum 1 plugs into Datum 3 which connects to Datum 3 and Data 4 and 5 stick to\
8 \ it and you've got a chain reaction. A bunch of stuff knits together and lights\
9 \ up and you've got what's called \"an idea\".\r\n\r\nAnd for that brief moment\
10 \ where it's all flaring and welding together, you are Holy. You can't be touched.\
11 \ Something impossible and brilliant has happened and suddenly you understand what\
12 \ it would be like if Einstein's brain was placed into the body of a young tyrannosaur,\
13 \ stuffed full of amphetamines and suffused with Sex Radiation.\r\n\r\nThat is what\
14 \ has happened to me tonight. I am beaming Sex Rays across the world and my brain\
15 \ is all lit up with Holy Fire. If I felt like it, I could shag a million nuns and\
16 \ destroy their faith in Christ.\r\n\r\n*From my chair.*\r\n\r\nSee, this is the\
17 \ good bit about writing. It's what keeps you going. It's the wild rush of \"shit,\
18 \ did I think of that?\" with all kinds of weird chemicals shunting around your\
19 \ brain and ideas and images and moments and storyforms all opening up snapsnapsnap\
20 \ in your mind, a mass of new and unrealised possibilities.\r\n\r\nIt's ten past\
21 \ two in the morning, and I'm completely wired, caught up in the new thing, shivering\
22 \ and laughing and glowing in the dark. Just as well it's the middle of the night.\
23 \ No-one would be safe from me right now. I could read their minds and take over\
24 \ their heartbeats with a glare.\r\n\r\nFaster than the speed of anyone.\r\n\r\n\
25 That's how it works."
26 id: cded9b24-fe5e-432d-9f7d-bb30953278ec
+0
-4
data/quotes/ce33a005-00e0-4595-9646-ef0c3ec99f20 less more
1 author: Ron Minnich
2 content: The standard rule is, when you're in a hole, stop digging; that seems not
3 to apply [to] software nowadays.
4 id: ce33a005-00e0-4595-9646-ef0c3ec99f20
+0
-3
data/quotes/ce7d9e89-c41b-4254-91c5-6c0918f4f4aa less more
1 author: Blaise Pascal
2 content: "Le silence \xE9ternel de ces espaces infinis m'effraie."
3 id: ce7d9e89-c41b-4254-91c5-6c0918f4f4aa
+0
-6
data/quotes/cf25465a-b047-4e78-aba7-9dad0209e685 less more
1 author: Long After Midnight, Ray Bradbury
2 content: A Witch is born out of the true hungers of her time. I am a child of the
3 poisonous wind that copulated with the river on an oil-slick, garbage infested midnight.
4 I turn about on my own parentage. I inoculate against those very biles that brought
5 me to light. I am a serum born of venoms. I am the antibody of all time.
6 id: cf25465a-b047-4e78-aba7-9dad0209e685
+0
-5
data/quotes/cf658851-c19b-47b5-b4bc-41b90c8eed58 less more
1 author: Hermann Finsterlin
2 content: "But tell me, is the fairy-tale not an eternal nostalgia with all of us\u2014\
3 the eternal mourning song of advancing history, our most fruitful incentive for\
4 \ an image of the future Earth?"
5 id: cf658851-c19b-47b5-b4bc-41b90c8eed58
+0
-6
data/quotes/d02ff48c-57b7-4e23-b487-771f724bac76 less more
1 author: pessimizer
2 content: "As a black programmer, I remember the cliche about problems and regular\
3 \ expressions in my head as \"regular expressions are like calling the cops.\"\r\
4 \n\r\nThat's unfair to regular expressions, though, because I actually have seen\
5 \ them solve a problem before. Cops improving a situation? Never seen it."
6 id: d02ff48c-57b7-4e23-b487-771f724bac76
+0
-7
data/quotes/d046663e-3b6f-4204-a19d-a2da08f75227 less more
1 author: 'Lord Byron
2
3 '
4 content: 'I only go out to get me a fresh appetite for being alone.
5
6 '
7 id: d046663e-3b6f-4204-a19d-a2da08f75227
+0
-4
data/quotes/d09a15d7-8bfb-4f9d-ba19-cbc77b1f3fad less more
1 author: Alan Moore
2 content: Life isn't divided into genres. It's a horrifying, romantic, tragic, comical
3 science-fiction cowboy detective novel.
4 id: d09a15d7-8bfb-4f9d-ba19-cbc77b1f3fad
+0
-12
data/quotes/d1e04353-ac44-40de-ba85-2b22d06ba49b less more
1 author: Evgeny Morozov
2 content: It's not because we hate the algorithms, or we hate databases, or we hate
3 technological infrastructure or networks, that we are suspicious of Silicon Valley
4 and the intrusions that they bring into how we think about the public or politics.
5 It's because the logic that these algorithms and sensors embed is a very troubling
6 political and economic logic. It leads to certain assumptions about public and private
7 institutions, and consumers, citizens, and administators, that on second thought
8 most of us would probably reject. Because it does shrink the public space. It does
9 result in public institutions being hijacked by the logic of the market. It does
10 shrink the kind of risks that we can take. And I think eventually it does disable
11 a lot of cultural and political innovation. And that's the real reason to hate them.
12 id: d1e04353-ac44-40de-ba85-2b22d06ba49b
+0
-3
data/quotes/d1e2f40b-2ff6-4d10-ae62-0afbe6f69658 less more
1 author: P.G. Wodehouse
2 content: He drank coffee with the air of a man who regretted that it was not hemlock.
3 id: d1e2f40b-2ff6-4d10-ae62-0afbe6f69658
+0
-8
data/quotes/d231f9d2-206f-4e8b-a2c0-6eff91a5ff1c less more
1 author: Saul Griffith
2 content: "We write all of our own tools, no matter what project we're building. Pretty\
3 \ much anything that we're doing requires some sort of design tool that didn't exist\
4 \ before. In fact, the design tools that we write to do the projects that we're\
5 \ doing are a sort of product in and of themselves.\r\n\r\nI think in reality, today,\
6 \ if you use the same tools as everyone else, you kind of build the same products.\
7 \ If you write your own tools, you can sort of see new things, design new things."
8 id: d231f9d2-206f-4e8b-a2c0-6eff91a5ff1c
+0
-10
data/quotes/d2eec350-34fe-4bf2-8590-3384220680d1 less more
1 author: Charlie Brooker
2 content: "Take [Banksy's] political stuff. One featured that Vietnamese girl who had\
3 \ her clothes napalmed off. Ho-hum, a familiar image, you think. I'll just be on\
4 \ my way to my 9 to 5 desk job, mindless drone that I am. Then, with an astonished\
5 \ lurch, you notice sly, subversive genius Banksy has stencilled Mickey Mouse and\
6 \ Ronald McDonald either side of her.\r\n\r\nWham! The message hits you like a lead\
7 \ bus: America... um... war... er... Disney... and stuff. Wow. In an instant, your\
8 \ worldview changes forever. Your eyes are opened. Staggering away, mind blown,\
9 \ you flick v-signs at a Burger King on the way home. Nice one Banksy!"
10 id: d2eec350-34fe-4bf2-8590-3384220680d1
+0
-3
data/quotes/d30720c2-6162-4f24-99b0-0bc145a8f934 less more
1 author: Ophelia, Hamlet, Act 4, Scene 5, by William Shakespeare
2 content: Lord, we know what we are, but not what we may be.
3 id: d30720c2-6162-4f24-99b0-0bc145a8f934
+0
-4
data/quotes/d3608177-3129-4b20-b094-6fec28371cd6 less more
1 author: Pierre-Louis Curien
2 content: Mathematicians are not very good at formalizing mathematics, but they *are*
3 very good at notation.
4 id: d3608177-3129-4b20-b094-6fec28371cd6
+0
-4
data/quotes/d3ea7e02-09ec-4647-8b67-3b737b01b897 less more
1 author: why the lucky stiff
2 content: when you don't create things, you become defined by your tastes rather than
3 ability. your tastes only narrow & exclude people. so create.
4 id: d3ea7e02-09ec-4647-8b67-3b737b01b897
+0
-4
data/quotes/d455bba3-d563-459a-b9e5-a434d69b1b40 less more
1 author: why the lucky stiff
2 content: The guy didn't panick or anything, but he did say to himself, inside his
3 mask, "From now on, life isn't self-explanatory." That guy hit the nail on the head.
4 id: d455bba3-d563-459a-b9e5-a434d69b1b40
+0
-6
data/quotes/d491b3bc-ada4-4642-9547-034cf9409b3e less more
1 author: Jorge Luis Borges
2 content: 'A book is more than a verbal structure or series of verbal structures; it
3 is the dialogue it establishes with its reader and the intonation it imposes upon
4 his voice and the changing and durable images it leaves in his memory. A book is
5 not an isolated being: it is a relationship, an axis of innumerable relationships.'
6 id: d491b3bc-ada4-4642-9547-034cf9409b3e
+0
-3
data/quotes/d4d5d6cd-b33d-45b4-bda1-a1dd82254cdc less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: We feel free because we lack the very language to articulate our unfreedom.
3 id: d4d5d6cd-b33d-45b4-bda1-a1dd82254cdc
+0
-4
data/quotes/d4eb7147-1d6b-4aa0-b020-170fa57d7740 less more
1 author: R. Buckminster Fuller
2 content: You never change things by fighting the existing reality. To change something,
3 build a new model that makes the existing model obsolete.
4 id: d4eb7147-1d6b-4aa0-b020-170fa57d7740
+0
-6
data/quotes/d4f7b037-ebc5-4772-8df7-f2cda0bc02fd less more
1 author: Neal Stephenson
2 content: For a Westerner to trash Western culture is like criticizing our nitrogen/oxygen
3 atmoshere on the grounds that it sometimes gets windy, and besides, Jupiter's is
4 much prettier. You may not realize its advantages until you're trying to breathe
5 liquid methane.
6 id: d4f7b037-ebc5-4772-8df7-f2cda0bc02fd
+0
-9
data/quotes/d520e0de-6943-4648-b4d2-2d7d1b7eb58d less more
1 author: Warren Ellis's "Transmetropolitan"
2 content: '"What next?"
3
4 "Some actual journalism, I think."
5
6 "Actual journalism? Is that when you don''t commit crimes?"
7
8 "Hell, no. It''s when we commit REALLY GOOD CRIMES."'
9 id: d520e0de-6943-4648-b4d2-2d7d1b7eb58d
+0
-4
data/quotes/d55d13a5-982d-4f17-92ab-ff187c63138c less more
1 author: Anonymous
2 content: Work like no one is watching. Dance like you've been hurt. Love like you
3 need the money.
4 id: d55d13a5-982d-4f17-92ab-ff187c63138c
+0
-4
data/quotes/d6254719-b216-4215-bb39-1cdc8ec26254 less more
1 author: Ben Marcus
2 content: We must always be prepared to admit when a theory is merely lyrical but fucked
3 in practice.
4 id: d6254719-b216-4215-bb39-1cdc8ec26254
+0
-8
data/quotes/d66b945d-6665-49f3-a4dc-09bd644094dd less more
1 author: Roger Ebert
2 content: Rap has a bad reputation in white circles, where many people believe it consists
3 of obscene and violent anti-white and anti-female guttural. Some of it does. Most
4 does not. Most white listeners don't care; they hear black voices in a litany of
5 discontent, and tune out. Yet rap plays the same role today as Bob Dylan did in
6 1960, giving voice to the hopes and angers of a generation, and a lot of rap is
7 powerful writing.
8 id: d66b945d-6665-49f3-a4dc-09bd644094dd
+0
-6
data/quotes/d68e2259-c603-4162-b714-292c1ae2b3a9 less more
1 author: 'Norman Solomon
2
3 The Trouble with Dilbert'
4 content: One of the best ways to teach people not to rebel is to offer plenty of ruts
5 for fake rebellion.
6 id: d68e2259-c603-4162-b714-292c1ae2b3a9
+0
-3
data/quotes/d6b6121b-3c26-4ff5-883d-b26e05af78c1 less more
1 author: Dm Simons
2 content: I'm not trying to make art, I'm trying to make lies, because the truth hurts.
3 id: d6b6121b-3c26-4ff5-883d-b26e05af78c1
+0
-9
data/quotes/d79ca12a-f89f-4529-99dd-0ef9daf68dfe less more
1 author: Terror Island
2 content: 'Blueteen only lies in three situations:
3
4 1. When it will save civilization.
5
6 2. When he can drive fiscal advantages.
7
8 3. Miscellaneous.'
9 id: d79ca12a-f89f-4529-99dd-0ef9daf68dfe
+0
-13
data/quotes/d80247ce-5857-4289-ab29-95caddb1bb98 less more
1 author: Guy-Ernest Debord
2 content: "One of the basic situationist practices is the d\xE9rive [literally: \"\
3 drifting\"], a technique of rapid passage through varied ambiances. D\xE9rives involve\
4 \ playful-constructive behavior and awareness of psychogeographical effects, and\
5 \ are thus quite different from the classic notions of journey or stroll.\r\n\r\n\
6 In a d\xE9rive one or more persons during a certain period drop their relations,\
7 \ their work and leisure activities, and all their other usual motives for movement\
8 \ and action, and let themselves be drawn by the attractions of the terrain and\
9 \ the encounters they find there. Chance is a less important factor in this activity\
10 \ than one might think: from a d\xE9rive point of view cities have psychogeographical\
11 \ contours, with constant currents, fixed points and vortexes that strongly discourage\
12 \ entry into or exit from certain zones."
13 id: d80247ce-5857-4289-ab29-95caddb1bb98
+0
-13
data/quotes/d905d7bf-3a20-4bc1-83f9-f69120196f67 less more
1 author: Richard Kadrey
2 content: "The best restaurants in any town are the ones that are open 24 hours. It\
3 \ doesn't matter if the restaurant is clean or attractive, if the food is good or\
4 \ even edible. What makes 24-hour places special is that whatever is going on inside\
5 \ them at any moment \u2014 eating, crashing from a night high and wild, a secret\
6 \ lovers' rendezvous, a drug deal, a traveler getting her bearings in a new town\
7 \ \u2014 will continue to go on there until the place burns down or goes out of\
8 \ business. These places sell time, not food. All 24-hour restaurants are social\
9 \ neutral zones, outside the normal boundaries of time and space, which exist for\
10 \ most of us in neatly packaged eight-hour segments: one for sleep, one for work\
11 \ and one for life. These diners are the alien bases in our midst. Area 51 with\
12 \ curly fries and a Coke."
13 id: d905d7bf-3a20-4bc1-83f9-f69120196f67
+0
-3
data/quotes/d91b1805-eada-4a5c-a78c-e97a99a91539 less more
1 author: Anonymous
2 content: It's not mean if it's hilarious.
3 id: d91b1805-eada-4a5c-a78c-e97a99a91539
+0
-4
data/quotes/d943f2c5-1254-4d1d-9f5c-4014f065d167 less more
1 author: John Carmack
2 content: Languages talk about multi-paradigm as if it's a good thing, but multi-paradigm
3 means you can always do the bad thing if you feel you really need to.
4 id: d943f2c5-1254-4d1d-9f5c-4014f065d167
+0
-5
data/quotes/d94adbe5-4aa7-4188-a811-af66e010e247 less more
1 author: -Neil Gaiman, The Truth Is a Cave in the Black Mountains
2 content: '"You are wrong. The truth is a cave in the black mountains. There is one
3 way there, and one only, and that way is treacherous and hard, and if you choose
4 the wrong path you will die alone, on the mountainside."'
5 id: d94adbe5-4aa7-4188-a811-af66e010e247
+0
-12
data/quotes/da2fc98d-cb08-4f41-8ae0-8113e3341921 less more
1 author: E. E. Cummings
2 content: 'And how long have you written?
3
4
5 As long as I can remember.
6
7
8 I mean poetry.
9
10
11 So do I.'
12 id: da2fc98d-cb08-4f41-8ae0-8113e3341921
+0
-4
data/quotes/da440f36-b9ab-49f9-9faf-79f872915dff less more
1 author: Kurt Vonnegut
2 content: Another flaw in the human character is that everybody wants to build and
3 nobody wants to do maintenance.
4 id: da440f36-b9ab-49f9-9faf-79f872915dff
+0
-3
data/quotes/da4db4fb-e98a-4ea5-b845-6071d42ca85c less more
1 author: Dark Helmet
2 content: Evil will always triumph, because good is dumb.
3 id: da4db4fb-e98a-4ea5-b845-6071d42ca85c
+0
-3
data/quotes/da5c1327-ebb8-4ef7-8e01-c1d948571dfa less more
1 author: Ursula K. Le Guin
2 content: We all have archipelagoes in our minds.
3 id: da5c1327-ebb8-4ef7-8e01-c1d948571dfa
+0
-22
data/quotes/da74a480-d76e-43dd-9796-08555aeb6a61 less more
1 author: broken koan
2 content: "One afternoon a student said \"Roshi, I don't really understand what's going\
3 \ on. I mean, we sit in zazen and we gassho to each other and everything, and Felicia\
4 \ got enlightened when the bottom fell out of her water-bucket, and Todd got enlightened\
5 \ when you popped him one with your staff, and people work on koans and get enlightened,\
6 \ but I've been doing this for two years now, and the koans don't make any sense,\
7 \ and I don't feel enlightened at all! Can you just tell me what's going on?\"\r\
8 \n\r\n\"Well you see,\" Roshi replied, \"for most people, and especially for most\
9 \ educated people like you and I, what we perceive and experience is heavily mediated,\
10 \ through language and concepts that are deeply ingrained in our ways of thinking\
11 \ and feeling. Our objective here is to induce in ourselves and in each other a\
12 \ psychological state that involves the unmediated experience of the world, because\
13 \ we believe that that state has certain desirable properties. It's impossible in\
14 \ general to reach that state through any particular form or method, since forms\
15 \ and methods are themselves examples of the mediators that we are trying to avoid.\
16 \ So we employ a variety of ad hoc means, some linguistic like koans and some non-linguistic\
17 \ like zazen, in hopes that for any given student one or more of our methods will,\
18 \ in whatever way, engender the condition of non-mediated experience that is our\
19 \ goal. And since even thinking in terms of mediators and goals tends to reinforce\
20 \ our undesirable dependency on concepts, we actively discourage exactly this kind\
21 \ of analytical discourse.\"\r\n\r\nAnd the student was enlightened."
22 id: da74a480-d76e-43dd-9796-08555aeb6a61
+0
-5
data/quotes/dadb724f-bb72-4c71-befb-4eea336fffe9 less more
1 author: Short Round
2 content: 'A few years ago I decided that I''d be happy as long as I spent most of
3 my time doing my three favorite things: reading, writing, and fucking (the three
4 R''s).'
5 id: dadb724f-bb72-4c71-befb-4eea336fffe9
+0
-8
data/quotes/db26eab3-63aa-42f2-b38a-456201c79ff1 less more
1 author: Alex Ross
2 content: "At a New York gathering, [John Cage] was heard to say, \"Beethoven was wrong!\"\
3 \ The poet John Ashbery overheard the remark, and for years afterward wondered what\
4 \ Cage had meant. Eventually, Ashbery approached Cage again. \"I once heard you\
5 \ say something about Beethoven,\" the poet began, \"and I've always wondered\u2014\
6 \" Cage's eyes lit up. \"Beethoven was wrong!\" he exclaimed. \"Beethoven was wrong!\"\
7 \ And he walked away."
8 id: db26eab3-63aa-42f2-b38a-456201c79ff1
+0
-4
data/quotes/db936b6b-c98a-4161-8ab3-e8a9206aa0c7 less more
1 author: Dylan Moran
2 content: You're not really an adult at all. You're just a tall child holding a beer,
3 having a conversation you don't understand.
4 id: db936b6b-c98a-4161-8ab3-e8a9206aa0c7
+0
-3
data/quotes/dc478d31-be42-474d-890f-65f6cf18cbc3 less more
1 author: "Stanis\u0142aw Jerzy Lec"
2 content: Do not expect too much of the end of the world
3 id: dc478d31-be42-474d-890f-65f6cf18cbc3
+0
-6
data/quotes/dc7233e7-9835-4f4e-88c3-fd299708fca5 less more
1 author: Soren Aabye Kierkegaard
2 content: It is a stroke of good fortune to find one who is worth seducing... Most
3 people rush ahead, become engaged or do other stupid things, and in a turn of the
4 hand everything is over, and they know neither what they have won nor what they
5 have lost.
6 id: dc7233e7-9835-4f4e-88c3-fd299708fca5
+0
-3
data/quotes/dc9afea8-0056-4dec-a935-bee04e81c4dc less more
1 author: Oscar Wilde
2 content: Whenever people agree with me, I always think I must be wrong.
3 id: dc9afea8-0056-4dec-a935-bee04e81c4dc
+0
-4
data/quotes/dd27daae-0d53-470b-bac8-2ab841e3dbeb less more
1 author: Mikhail Alexandrovich Bakunin
2 content: When the people are being beaten with a stick, they are not much happier
3 if it is called "the People's Stick."
4 id: dd27daae-0d53-470b-bac8-2ab841e3dbeb
+0
-7
data/quotes/df950e38-f49e-4c8c-ac55-f16fd2091f0b less more
1 author: Michel Foucault
2 content: It seems to me that the real political task in our contemporary society is
3 to criticize the workings of institutions, particularly the ones that appear to
4 be neutral and independent, and to attack them in such a way that the political
5 violence, which has always exercised itself obscurely through them, will finally
6 be unmasked so that one can fight against them.
7 id: df950e38-f49e-4c8c-ac55-f16fd2091f0b
+0
-6
data/quotes/dffce868-5b1b-486b-9785-452b4b5079ae less more
1 author: Neil Gaiman, on his narrative voice
2 content: I think it's very friendly, me and the reader are old friends, and I take
3 their hand and go, "it's all right, come with me, I know it's scary but I'm here
4 with you," and I lead them into the scary parts... and then I let go of their hand
5 and run away.
6 id: dffce868-5b1b-486b-9785-452b4b5079ae
+0
-3
data/quotes/e052e144-fc0f-4339-b7d6-59842a189a59 less more
1 author: Rob Pike
2 content: When there is no type hierarchy you don't have to manage the type hierarchy.
3 id: e052e144-fc0f-4339-b7d6-59842a189a59
+0
-3
data/quotes/e0d57177-7ea9-45b0-9bf4-ff6082f8fa8a less more
1 author: Olivier Danvy
2 content: If you find your thoughts leading you to a marginal reality, follow them.
3 id: e0d57177-7ea9-45b0-9bf4-ff6082f8fa8a
+0
-6
data/quotes/e2736ea7-ad49-46eb-b055-ab5fdf91821f less more
1 author: G_Morgan
2 content: This is one of the reasons Lisp doesn't get anywhere. The trend to promote
3 features so clever that you stop thinking about your problem and start thinking
4 about the clever features. CL's loop is so powerful that people invented functional
5 programming so that they'd never have to use it.
6 id: e2736ea7-ad49-46eb-b055-ab5fdf91821f
+0
-11
data/quotes/e32ace21-2aef-454f-a26a-3abbd59ef618 less more
1 author: Jim Jarmusch
2 content: "Nothing is original. Steal from anywhere that resonates with inspiration\
3 \ or fuels your imagination. Devour old films, new films, music, books, paintings,\
4 \ photographs, poems, dreams, random conversations, architecture, bridges, street\
5 \ signs, trees, clouds, bodies of water, light and shadows. Select only things to\
6 \ steal from that speak directly to your soul. If you do this, your work (and theft)\
7 \ will be authentic. Authenticity is invaluable; originality is non-existent. And\
8 \ don\u2019t bother concealing your thievery\u2014celebrate it if you feel like\
9 \ it. In any case, always remember what Jean-Luc Godard said: \"It\u2019s not where\
10 \ you take things from\u2014it\u2019s where you take them to.\""
11 id: e32ace21-2aef-454f-a26a-3abbd59ef618
+0
-4
data/quotes/e3468a32-9334-4587-9cd0-a43d33999664 less more
1 author: Amish Information Systems
2 content: "My romantic entanglements tended to be quantum in nature\u2014i.e. they\
3 \ happened at a distance and were undetectable to outside observers."
4 id: e3468a32-9334-4587-9cd0-a43d33999664
+0
-10
data/quotes/e3c9a4eb-8924-4c72-8389-9020ca08fe42 less more
1 author: Townes van Zandt
2 content: I don't think, as a matter of fact, that I'm going to benefit from anything
3 on this earth. It's more like that, I mean, if you have love on the earth, that
4 seems to be number one. There's food, water, air and love, right? And love is just
5 basically heartbreak. Humans can't live in the present as animals do; they just
6 live in the present. But humans are always thinking about the future or the past.
7 So, it's a veil of tears, man. And I don't know anything that's going to benefit
8 me except more love. I just need an overwhelming amount of love. And a nap. Mostly
9 a nap.
10 id: e3c9a4eb-8924-4c72-8389-9020ca08fe42
+0
-5
data/quotes/e40d4c9c-50d5-4086-b356-b728a47bf075 less more
1 author: The Last Psychiatrist
2 content: Beauty is a social construction. I'm all in, but it is a construction nevertheless.
3 The reason I think women are hot today is that they are today, not that they are
4 hot.
5 id: e40d4c9c-50d5-4086-b356-b728a47bf075
+0
-5
data/quotes/e4509e55-4d79-420f-b914-1eed823ee285 less more
1 author: Neil Gaiman
2 content: And [R.A.] Lafferty is something played in an Irish bar on an instrument
3 that you're not quite sure what it is and you're humming the tune but you don't
4 remember the words as you walk out.
5 id: e4509e55-4d79-420f-b914-1eed823ee285
+0
-3
data/quotes/e450fff9-a832-41a1-a1cb-be44fd2b62be less more
1 author: Russell Edson
2 content: The universe raises its head and stares at itself through me.
3 id: e450fff9-a832-41a1-a1cb-be44fd2b62be
+0
-7
data/quotes/e4543d71-78e5-4122-be60-acc69c28ab6f less more
1 author: Richard Darwin
2 content: Fans are interesting things. Rush fans just can't comprehend why the rest
3 of the world doesn't like Rush. REM fans consider the rest of the world beneath
4 their refined dignities to notice. Kate Bush fans love the rest of the world, and
5 the world loves them, but spend long nights plotting to knife one another in the
6 back.
7 id: e4543d71-78e5-4122-be60-acc69c28ab6f
+0
-5
data/quotes/e4dbca90-c15c-47bf-85e5-9b09ab0b97ab less more
1 author: Edsger Dijkstra
2 content: Are you quite sure that all those bells and whistles, all those wonderful
3 facilities of your so called powerful programming languages, belong to the solution
4 set rather than the problem set?
5 id: e4dbca90-c15c-47bf-85e5-9b09ab0b97ab
+0
-4
data/quotes/e5310e71-c2fe-484d-9245-e9e8cb5c5394 less more
1 author: Umberto Eco, Foucault's Pendulum
2 content: Not that the incredulous person doesn't believe in anything. It's just that
3 he doesn't believe in everything.
4 id: e5310e71-c2fe-484d-9245-e9e8cb5c5394
+0
-8
data/quotes/e5c55d6e-bc0a-4205-aecd-28fdd55df9a2 less more
1 author: Grant Morrison
2 content: Your head's like mine, like all our heads; big enough to contain every god
3 and devil there ever was. Big enough to hold the weight of oceans and the turning
4 stars. Whole universes fit in there! But what do we choose to keep in this miraculous
5 cabinet? Little broken things, sad trinkets that we play with over and over. The
6 world turns our key and we play the same little tune again and again and we think
7 that tune's all we are.
8 id: e5c55d6e-bc0a-4205-aecd-28fdd55df9a2
+0
-5
data/quotes/e5d0e362-b5f8-4986-98ab-f7108e184efd less more
1 author: Geoffrey Pullum
2 content: Except here, of course, because ... we are linguists, and we don't give a
3 shit. We don't believe simple Anglo-Saxon monosyllables will either sear your eyeballs
4 or warp the moral fiber of the young.
5 id: e5d0e362-b5f8-4986-98ab-f7108e184efd
+0
-4
data/quotes/e6274e0e-8bc8-4611-8fcd-e4d480f802b3 less more
1 author: R.A. Lafferty
2 content: Put the nightmare together. If you do not wake up screaming, you have not
3 put it together well.
4 id: e6274e0e-8bc8-4611-8fcd-e4d480f802b3
+0
-4
data/quotes/e6712120-1704-415d-a599-8a97b41a9508 less more
1 author: Werner Herzog
2 content: May I propose a Herzog dictum? Those who read own the world, and those who
3 watch television lose it.
4 id: e6712120-1704-415d-a599-8a97b41a9508
+0
-26
data/quotes/e6741d6c-71df-4223-a98f-4463feba5062 less more
1 author: Ursula K. Le Guin
2 content: "As for elitism, the problem may be scientism: technological edge mistaken\
3 \ for moral superiority. The imperialism of high technocracy equals the old racist\
4 \ imperialism in its arrogance; to the technophile, people who aren't in the know/in\
5 \ the net, who don't have the right artifacts, don't count. They're proles, masses,\
6 \ faceless nonentities. Whether it's fiction or history, the story isn't about them.\
7 \ The story's about the kids with the really neat, really expensive toys. So \"\
8 people\" comes to be operationally defined as those who have access to an extremely\
9 \ elaborate fast-growth industrial technology. And \"technology\" itself is restricted\
10 \ to that type. I have heard a man say perfectly seriously that the Native Americans\
11 \ before the Conquest had no technology. As we know, kiln-fired pottery is a naturally\
12 \ occurring substance, baskets ripen in the summer, and Machu Picchu just grew there.\r\
13 \n\r\n[...]\r\n\r\n\"Newton's Sleep\" can be, and has been, read as an anti-technological\
14 \ diatribe, a piece of Luddite ranting. It was not intended as such, but rather\
15 \ as a cautionary tale, a response to many stories and novels I had read over the\
16 \ years which (consciously or not\u2014here is the problem of elitism again) depict\
17 \ people in spaceships and space stations as superior to those on earth. Masses\
18 \ of dummies stay down in the dirt and breed and die in squalor, and serve 'em right,\
19 \ while a few people who know how to program their VCRs live up in these superclean\
20 \ military worldlets provided with all mod con plus virtual reality sex, and are\
21 \ the Future of Man. It struck me as one of the drearier futures.\r\n\r\n[...]\r\
22 \n\r\nI hope the story doesn't read as anti-space travel. I love both the idea and\
23 \ the reality of the exploration of space, and was only trying to make the whole\
24 \ idea less smugly antiseptic. I really do think we have to take our dirt with us\
25 \ wherever we go. We are dirt. We are Earth."
26 id: e6741d6c-71df-4223-a98f-4463feba5062
+0
-3
data/quotes/e6750ea8-0d0a-4a43-b001-ec93d622fb0a less more
1 author: William Gibson
2 content: San Francisco, he could see in the shape of things, was where the world ended.
3 id: e6750ea8-0d0a-4a43-b001-ec93d622fb0a
+0
-8
data/quotes/e710df05-38bb-43bf-99ef-190da03b4d92 less more
1 author: Augustus De Morgan
2 content: "Most writers on logic strongly object to all symbols, except the venerable\
3 \ Barbara, Celarent, etc., \u2026I should advise the reader not to make up his mind\
4 \ on this point until he has well weighed two facts which nobody disputes, both\
5 \ separately and in connexion. First, logic is the only science which has made no\
6 \ progress since the revival of letters; secondly, logic is the only science which\
7 \ has produced no growth of symbols."
8 id: e710df05-38bb-43bf-99ef-190da03b4d92
+0
-4
data/quotes/e8774d00-5ef0-47f0-8cc3-82ccfd28e3d3 less more
1 author: Umberto Eco
2 content: After all, the cultivated person's first duty is to be always prepared to
3 rewrite the encyclopaedia.
4 id: e8774d00-5ef0-47f0-8cc3-82ccfd28e3d3
+0
-4
data/quotes/e8d4781e-4df9-4b60-a59a-dec41e66a3e5 less more
1 author: Neil Gaiman
2 content: I think most things are pretty magical, and it's less a matter of belief
3 than it is one of just stopping to notice.
4 id: e8d4781e-4df9-4b60-a59a-dec41e66a3e5
+0
-4
data/quotes/e8f52a43-b5ac-4b2b-99d0-1067f51438fd less more
1 author: rue
2 content: 'The unfortunate events in one''s life: 1. The cessation of all life; 2.
3 Java; 3. Moving'
4 id: e8f52a43-b5ac-4b2b-99d0-1067f51438fd
+0
-5
data/quotes/e957f097-46fb-41e6-9735-85c4ec81bf65 less more
1 author: Dorothy Sayers
2 content: '"Do you find it easy to get drunk on words?"
3
4 "So easily that, to tell the truth, I am seldom sober."'
5 id: e957f097-46fb-41e6-9735-85c4ec81bf65
+0
-4
data/quotes/e9a3ffe2-6ef3-4183-86b9-488e76057c5c less more
1 author: John Hodgman
2 content: 'Zeps: Zeppelins, and/or members of an airship crew. Both are loathed by
3 all sub-mariners, who feel that the zeps are just copying them, except in the air.'
4 id: e9a3ffe2-6ef3-4183-86b9-488e76057c5c
+0
-3
data/quotes/e9bfc16f-9582-4701-87e2-beff385f41fc less more
1 author: David Foster Wallace
2 content: THEY CAN KILL YOU, BUT THE LEGALITIES OF EATING YOU ARE QUITE A BIT DICIER
3 id: e9bfc16f-9582-4701-87e2-beff385f41fc
+0
-9
data/quotes/ea5b3c14-df33-4be6-ac13-84681aa78ff6 less more
1 author: Bruce Schneier
2 content: 'Every time I write about the impossibility of effectively protecting digital
3 files on a general purpose computer, I get responses from people decrying the death
4 of copyright. How will authors and artists get paid for their work? they ask me.
5 Truth be told, I don''t know. I feel rather like the physicist who just explained
6 relativity to a group of would-be interstellar travelers, only to be asked: How
7 do you expect us to get to the stars, then? I''m sorry, but I don''t know that,
8 either.'
9 id: ea5b3c14-df33-4be6-ac13-84681aa78ff6
+0
-18
data/quotes/ea7b745f-f182-40b9-817b-33524bbbe0a3 less more
1 author: Banksy
2 content: "People are taking the piss out of you everyday. They butt into your life,\
3 \ take a cheap shot at you and then disappear. They leer at you from tall buildings\
4 \ and make you feel small. They make flippant comments from buses that imply you're\
5 \ not sexy enough and the fun is happening somewhere else. They are on TV making\
6 \ your girlfriend feel inedequate. They have access to the most sophisticated technology\
7 \ the world has ever seen and they bully you with it. They are The Advertisers and\
8 \ they are laughing at you.\r\n\r\nYou, however, are forbidden to touch them. Trademarks,\
9 \ intellectual property rights and copyright law mean advertisers can say what they\
10 \ like wherever they like with total impunity.\r\n\r\nFuck that. Any advert in public\
11 \ space that gives you no choice whether you see it or not is yours. It's yours\
12 \ to take, re-arrange and re-use. You can do whatever you like with it. Asking for\
13 \ permission is like asking to keep a rock someone just threw at your head.\r\n\r\
14 \nYou owe the companies nothing. Less than nothing, you especially don't owe them\
15 \ any courtsey. They owe you. They have rearranged the world to put themselves in\
16 \ front of you. They never asked for your permission, don't even start asking for\
17 \ theirs."
18 id: ea7b745f-f182-40b9-817b-33524bbbe0a3
+0
-4
data/quotes/eb6f0478-d5d3-451d-8b43-5bd990012b14 less more
1 author: Lou Reed
2 content: Most of you won't like this and I don't blame you at all. It's not meant
3 for you.
4 id: eb6f0478-d5d3-451d-8b43-5bd990012b14
+0
-9
data/quotes/ecc9f4c6-d0de-4c71-83e1-cc6d45916be0 less more
1 author: 'Thomas Jefferson
2
3 '
4 content: 'I had rather be shut up in a very modest cottage with my books, my family
5 and a few old friends, dining on simple bacon, and letting the world roll on as
6 it liked, than to occupy the most splendid post, which any human power can give.
7
8 '
9 id: ecc9f4c6-d0de-4c71-83e1-cc6d45916be0
+0
-11
data/quotes/ed3f9aea-f864-4a5c-9b9b-2b8658bb765b less more
1 author: Gail Harrison, "Modern Psychology in its Relation to Discipline", Journal
2 of Proceedings and Lectures 53:658-661, National Education Association of the United
3 States, 1915
4 content: Many children today are greatly to be pitied because too much is done for
5 them and dictated to them and they are deprived of the learning processes. We seem
6 to have dropped into an age of entertaining, a breathless going from one sensation
7 to another, whether it be mechanical toys for the five-year-old or moving-picture
8 plays for the sixteen-year-old. It not only destroys their power to think, but also
9 makes happiness, contentment, and resourcefulness impossible. At seventeen, life
10 is spoken of as "so dull" if there is not "something doing" every waking hour.
11 id: ed3f9aea-f864-4a5c-9b9b-2b8658bb765b
+0
-4
data/quotes/edcb800f-56ed-42c3-ace3-57ee27117e6c less more
1 author: Tiki Bar TV
2 content: He bit us both in the ass! Like a two-headed snake... biting two asses...
3 at once!
4 id: edcb800f-56ed-42c3-ace3-57ee27117e6c
+0
-6
data/quotes/ef45368b-aa92-4b27-af2d-809ec2e928ed less more
1 author: Hermann Weyl
2 content: 'We now come to the decisive step of mathematical abstraction: we forget
3 what the symbols stand for. ...[The mathematician] need not be idle; there are many
4 operations which he may carry out with these symbols, without ever having to look
5 at the things they stand for.'
6 id: ef45368b-aa92-4b27-af2d-809ec2e928ed
+0
-3
data/quotes/ef4e562a-02b6-428e-848e-a648f348df77 less more
1 author: Samuel Beckett
2 content: Ever tried. Ever failed. No matter. Try again. Fail again. Fail better.
3 id: ef4e562a-02b6-428e-848e-a648f348df77
+0
-4
data/quotes/f00a01c8-eed5-4a05-869b-3139d15cde22 less more
1 author: Eric Naggum
2 content: Unformed people delight in the gaudy and in novelty. Cooked people delight
3 in the ordinary.
4 id: f00a01c8-eed5-4a05-869b-3139d15cde22
+0
-6
data/quotes/f090b8e3-bb3c-4e56-b5b9-4dc92791f10c less more
1 author: G.K. Chesterton
2 content: Many clever men like you have trusted to civilization. Many clever Babylonians,
3 many clever Egytians, many clever men at the end of Rome. Can you tell me, in a
4 world that is flagrant with the failures of civilizations, what there is particularly
5 immortal about yours?
6 id: f090b8e3-bb3c-4e56-b5b9-4dc92791f10c
+0
-6
data/quotes/f0a76a37-5c9f-4c6c-a1b7-be6a29c35ba3 less more
1 author: Richard Feynman
2 content: "The real question of government versus private enterprise is argued on too\
3 \ philosophical and abstract a basis. Theoretically, planning may be good etc \u2014\
4 \ but nobody has ever figured out the cause of government stupidity \u2014 and until\
5 \ they do and find the cure all ideal plans will fall into quicksand."
6 id: f0a76a37-5c9f-4c6c-a1b7-be6a29c35ba3
+0
-5
data/quotes/f16717df-5f06-4f98-bba0-51bf1b4666df less more
1 author: Ron Minnich
2 content: '...the tangled thicket of overlapping, but incompatible, feature sets that
3 are almost, but not quite, entirely unlike what Unix was supposed to be: that''s
4 Linux today.'
5 id: f16717df-5f06-4f98-bba0-51bf1b4666df
+0
-11
data/quotes/f17f92f5-1788-4c9c-8d85-943b6e06de94 less more
1 author: Andrey Aresnjevich Tarkovskij's Stalker
2 content: Let everything that's been planned come true. Let them believe. And let them
3 have a laugh at their passions. Because what they call passion actually is not some
4 emotional energy, but just the friction between their souls and the outside world.
5 And most important, let them believe in themselves. Let them be helpless like children,
6 because weakness is a great thing, and strength is nothing. When a man is just born,
7 he is weak and flexible. when he dies, he is hard and insensitive. When a tree is
8 growing, it's tender and pliant. But when it's dry and hard, it dies. hardness and
9 strength are death's companion. Pliancy and weakness are expressions of the freshness
10 of being. Because what has hardened will never win.
11 id: f17f92f5-1788-4c9c-8d85-943b6e06de94
+0
-8
data/quotes/f28e4511-a058-4544-8abb-af2561e7bb74 less more
1 author: "Slavoj \u017Di\u017Eek"
2 content: Millions of people still buy Microsoft software because Microsoft has imposed
3 itself as an almost universal standard, practically monopolising the field, as one
4 embodiment of what Marx called the 'general intellect', by which he meant collective
5 knowledge in all its forms, from science to practical knowhow. Gates effectively
6 privatised part of the general intellect and became rich by appropriating the rent
7 that followed.
8 id: f28e4511-a058-4544-8abb-af2561e7bb74
+0
-15
data/quotes/f2ffc47a-b880-4fc3-9312-038c7a78bdf2 less more
1 author: Andrew Rilstone
2 content: "Where Star Wars had a simple, linear structure, Empire Strikes Back has\
3 \ almost no plot, but instead, a sophisticated complex of echoes and foreshadowing.\
4 \ There aren't many X-Wings. The climax of the film isn't an action sequence, but\
5 \ character development. The good guys lose. It is as if Leigh Bracket had pinched\
6 \ George Lucas's action figures and started to act out Ulysses with them.\r\n\r\n\
7 Good movie, almost certainly: Star Wars II, almost certainly not.\r\n\r\nThat fans\
8 \ are on the whole not concerned about or even aware of this disjuncture shows the\
9 \ capacity of the fanboy to extrapolate universes where none exist, or perhaps,\
10 \ simply, to read for the plot. Provided the film tells you 'what Luke Skywalker\
11 \ did next' and does not knock over any of the furniture, then the film will be\
12 \ accepted, canonised and treated as a classic. Joseph Campbell said that mythology\
13 \ is psychology misread as biography. I have been trying to think of a way of misquoting\
14 \ that line and applying it to Star Wars. 'Fantasy is imagery misread as history'."
15 id: f2ffc47a-b880-4fc3-9312-038c7a78bdf2
+0
-4
data/quotes/f39a3f23-60b1-4f04-9c65-6275a1ba2e45 less more
1 author: James Gosling
2 content: It's unlikely that I would get a day job as an iPad developer, because I
3 would shoot myself.
4 id: f39a3f23-60b1-4f04-9c65-6275a1ba2e45
+0
-3
data/quotes/f4232441-7e71-4099-af8d-1238c8b4b057 less more
1 author: "Andr\xE9 Breton"
2 content: What I have loved, whether I have kept it or not, I shall love forever.
3 id: f4232441-7e71-4099-af8d-1238c8b4b057
+0
-11
data/quotes/f4ba262c-d30a-4dee-8107-1248db72f6e7 less more
1 author: Charles Lamb
2 content: "When I consider how little of a rarity children are, \u2014 that every street\
3 \ and blind alley swarms with them, \u2014 that the poorest people commonly have\
4 \ them in most abundance, \u2014 that there are few marriages that are not blest\
5 \ with at least one of these bargains, \u2014 how often they turn out ill, and defeat\
6 \ the fond hopes of their parents, taking to vicious courses, which end in poverty,\
7 \ disgrace, the gallows, etc. \u2014 I cannot for my life tell what cause for pride\
8 \ there can possibly be in having them. If they were young phoenixes, indeed, that\
9 \ were born but one in a year, there might be a pretext. But when they are so common\
10 \ \u2014"
11 id: f4ba262c-d30a-4dee-8107-1248db72f6e7
+0
-3
data/quotes/f5df6d31-f1ea-492a-bd77-fbbda28d1775 less more
1 author: Willow, Buffy the Vampire Slayer
2 content: Occasionally I am callous and strange.
3 id: f5df6d31-f1ea-492a-bd77-fbbda28d1775
+0
-3
data/quotes/f6003be1-488c-4c1a-9bff-fdd0edc52cea less more
1 author: George Carlin
2 content: E-I-E-I-O is actually a gross misspelling of the word 'farm.'
3 id: f6003be1-488c-4c1a-9bff-fdd0edc52cea
+0
-5
data/quotes/f67f3758-2f44-4c24-beb1-1ce9cfd8fda1 less more
1 author: Jorge Luis Borges
2 content: It is often forgotten that dictionaries are artificial repositories, put
3 together well after the languages they define. The roots of language are irrational
4 and of a magical nature.
5 id: f67f3758-2f44-4c24-beb1-1ce9cfd8fda1
+0
-4
data/quotes/f743f18c-045b-42a7-8b44-35fbdbd32e45 less more
1 author: Simon Cozens
2 content: In the fight between Calvin and Arminius, back Jesus. He was not a systematic
3 theologian, and I consider this to be a feature, not a bug.
4 id: f743f18c-045b-42a7-8b44-35fbdbd32e45
+0
-3
data/quotes/f752ab0f-0fa4-404d-8410-9bc9805f92f3 less more
1 author: Sarah Giddings
2 content: Don't be part of the problem, be the problem!
3 id: f752ab0f-0fa4-404d-8410-9bc9805f92f3
+0
-3
data/quotes/f77069ea-20b8-433b-add9-27331e0f5742 less more
1 author: Sir Thomas Beecham
2 content: Try everything once except folk dancing and incest.
3 id: f77069ea-20b8-433b-add9-27331e0f5742
+0
-3
data/quotes/f77af7f4-a650-4097-91ae-4ca37236781f less more
1 author: "Stanis\u0142aw Jerzy Lec"
2 content: Do not ask God the way to heaven; he will show you the hardest one.
3 id: f77af7f4-a650-4097-91ae-4ca37236781f
+0
-5
data/quotes/f7e5a980-cc2e-4a54-9cc6-561eb869b3bb less more
1 author: Sam Harris
2 content: '...I''ve never met a person who smokes marijuana every day who I thought
3 wouldn''t benefit from smoking less (and I''ve never met someone who has never tried
4 it who I thought wouldn''t benefit from smoking more).'
5 id: f7e5a980-cc2e-4a54-9cc6-561eb869b3bb
+0
-5
data/quotes/f7ee3f98-2717-45b4-a045-a35eda8e97d7 less more
1 author: TPHD
2 content: A library is a bush of ghosts and you swallow them, you well read men and
3 women, you swallow all the ghosts and they go inside you and stay there. You do
4 not know it but you are haunted by the books you've read.
5 id: f7ee3f98-2717-45b4-a045-a35eda8e97d7
+0
-7
data/quotes/f7fd71e9-3d9d-49af-b05c-11a53acb0227 less more
1 author: Tom Waits
2 content: We are buried beneath the weight of information, which is being confused
3 with knowledge; quantity is being confused with abundance and wealth with happiness.
4 Leona Helmsley's dog made 12 million last year... and Dean McLaine, a farmer in
5 Ohio made $30,000. It's just a gigantic version of the madness that grows in every
6 one of our brains. We are monkeys with money and guns.
7 id: f7fd71e9-3d9d-49af-b05c-11a53acb0227
+0
-5
data/quotes/f858b287-e06b-4374-b51f-024d51722c5b less more
1 author: erik, Old Man Murray
2 content: Ooh, I saw a squirrel. Do you know when squirrels do that thing where they
3 dash out in front of traffic? That's called eXtreme Squirreling. And I think it's
4 awesome.
5 id: f858b287-e06b-4374-b51f-024d51722c5b
+0
-5
data/quotes/f85a5271-691e-4769-8ab8-eace60cc6f8a less more
1 author: Mitch Hedberg
2 content: If you boat a lot, you're known as a boating enthusiast. I like to boat,
3 but I just don't want to ever be referred to as a 'boating enthusiast'. I hope they
4 call me 'a guy who likes to boat'.
5 id: f85a5271-691e-4769-8ab8-eace60cc6f8a
+0
-4
data/quotes/f8a1bdac-d47f-4633-a03d-7f3ba0b3313c less more
1 author: "Andr\xE9 Breton"
2 content: The mind which plunges into Surrealism, relives with burning excitement the
3 best part of childhood.
4 id: f8a1bdac-d47f-4633-a03d-7f3ba0b3313c
+0
-3
data/quotes/f8bdd5b9-0af8-4c7b-8947-1967b9db0c80 less more
1 author: "Stanis\u0142aw Jerzy Lec"
2 content: Optimists and pessimists differ only on the date of the end of the world.
3 id: f8bdd5b9-0af8-4c7b-8947-1967b9db0c80
+0
-5
data/quotes/f8d91379-4e7b-4c43-b0fb-c441aa563432 less more
1 author: Matt Cartmill
2 content: As an adolescent I aspired to lasting fame, I craved factual certainty, and
3 I thirsted for a meaningful vision of human life - so I became a scientist. This
4 is like becoming an archbishop so that you can meet girls.
5 id: f8d91379-4e7b-4c43-b0fb-c441aa563432
+0
-5
data/quotes/fae218ed-4344-4f32-a5ae-f5d82a87bc58 less more
1 author: Bernard Ingham
2 content: Many journalists have fallen for the conspiracy theory of government. I do
3 assure you that they would produce more accurate work if they adhered to the cock-up
4 theory.
5 id: fae218ed-4344-4f32-a5ae-f5d82a87bc58
+0
-7
data/quotes/fb29540e-4537-4b36-8591-c0deb4acde94 less more
1 author: Thomas Jefferson
2 content: I never submitted the whole system of my opinions to the creed of any party
3 of men whatever, in religion, in philosophy, in politics or in anything else, where
4 I was capable of thinking for myself. Such an addiction is the last degradation
5 of a free and moral agent. If I could not go to Heaven but with a party, I would
6 not go there at all.
7 id: fb29540e-4537-4b36-8591-c0deb4acde94
+0
-4
data/quotes/fb2db6a3-525d-46e0-afd9-4dbb20836a6f less more
1 author: W. Somerset Maugham
2 content: Dying is a very dull, dreary affair. And my advice to you is to have nothing
3 whatever to do with it.
4 id: fb2db6a3-525d-46e0-afd9-4dbb20836a6f
+0
-5
data/quotes/fb521b70-41ea-4d57-a014-1fb30b345837 less more
1 author: David Lynch
2 content: All the movies are about strange worlds that you can't go into unless you
3 build them and film them. That's what's so important about film to me. I just like
4 going into strange worlds.
5 id: fb521b70-41ea-4d57-a014-1fb30b345837
+0
-3
data/quotes/fbfbaf66-05e3-4a54-891a-818362fc3e26 less more
1 author: James Gosling
2 content: There's this crowd that thinks that UML modeling qualifies as thinking.
3 id: fbfbaf66-05e3-4a54-891a-818362fc3e26
+0
-4
data/quotes/fc54f7e4-b02b-41a1-8890-9e70eb37041f less more
1 author: "Bernard-Henri L\xE9vy"
2 content: "_Dieu est mort mais ma chevelure est parfaite._\r\n\r\nGod is dead but my\
3 \ hair is perfect."
4 id: fc54f7e4-b02b-41a1-8890-9e70eb37041f
+0
-3
data/quotes/fc599bc6-db85-4489-92b3-79eb167200dd less more
1 author: Buckminster Fuller
2 content: "Dare to be na\xEFve."
3 id: fc599bc6-db85-4489-92b3-79eb167200dd
+0
-3
data/quotes/fc80d6af-0c78-456d-9660-82768a28e118 less more
1 author: chrisdone
2 content: Benchmarks only exist so we can make fun of Ruby.
3 id: fc80d6af-0c78-456d-9660-82768a28e118
+0
-7
data/quotes/fcad374e-d778-47d9-b9ff-c4b1f54e67f2 less more
1 author: William Butler Yeats
2 content: 'But I, being poor, have only my dreams
3
4 I have spread my dreams under your feet
5
6 Tread softly, because you tread on my dreams'
7 id: fcad374e-d778-47d9-b9ff-c4b1f54e67f2
+0
-3
data/quotes/fd2fdab6-ca86-4c20-8c1a-7cef892c8105 less more
1 author: Edsger Dijkstra
2 content: We must give industry not what it wants, but what it needs.
3 id: fd2fdab6-ca86-4c20-8c1a-7cef892c8105
+0
-3
data/quotes/fdb791fa-94f6-4b18-9fc4-4e7b89e5c407 less more
1 author: Bender
2 content: "Interesting. No, wait, the other thing\u2014tedious."
3 id: fdb791fa-94f6-4b18-9fc4-4e7b89e5c407
+0
-3
data/quotes/fdd34230-a4e8-4bbc-b86b-b6ec881d05aa less more
1 author: Ray Bradbury
2 content: We are anthill men in an anthill world.
3 id: fdd34230-a4e8-4bbc-b86b-b6ec881d05aa
+0
-6
data/quotes/fef6741e-f29f-49df-b198-23dd3f686b0c less more
1 author: Shakespeare in Neil Gaiman's Sandman
2 content: Whatever happened to me in my life, happened to me as a writer of plays.
3 I'd fall in love, or fall in lust. And at the height of my passion, I would think,
4 'So this is how it feels,' and I would tie it up in pretty words. I watched my life
5 as if it were happening to someone else.
6 id: fef6741e-f29f-49df-b198-23dd3f686b0c
+0
-4
data/quotes/ff0313db-0fa5-4267-8d4e-0c7e97ad4bb4 less more
1 author: Ludwig Wittgenstein
2 content: "Wovon man nicht sprechen kann, dar\xFCber muss man schweigen.\nAbout which\
3 \ one cannot speak, one must be silent."
4 id: ff0313db-0fa5-4267-8d4e-0c7e97ad4bb4
+0
-6
data/quotes/ff2f28dd-38f7-4e4e-8e8e-7833eef4708a less more
1 author: Yossi Kreinin
2 content: A particularly inflexible conscience is a horrible condition. Feet to which
3 no mass-produced shoes fit are merely inconvenient. A conscience incompatible with
4 mass-produced social arrangements is a huge burden - not just on its owner, but
5 on his friends and family.
6 id: ff2f28dd-38f7-4e4e-8e8e-7833eef4708a
+0
-11
data/quotes/ff5a6919-95af-49db-9b9f-f49bd348e957 less more
1 author: Warren Ellis's "Transmetropolitan"
2 content: "My grandfather had died, and my mother was trying to explain it to me...\
3 \ Grandpa isn't coming back? No, she said. Not ever again... And I remember saying,\
4 \ hold everything right fucking there. You went to all the trouble of conceiving\
5 \ me, and giving birth to me, and raising me and clothing me and all... and you\
6 \ make me cry and things hurt so much and disappointments crush my heart every day\
7 \ and I can't do half the things I want to and sometimes I just want to scream \u2014\
8 \ and what I've got to look forward to is my body breaking and something flipping\
9 \ off the switch in my head \u2014 I go through all this, and then there's death?\
10 \ What is the motherfucking deal here? I wasn't having this. This was not fair."
11 id: ff5a6919-95af-49db-9b9f-f49bd348e957
+0
-3
data/quotes/ff609ab9-4b06-40e8-ab7e-5c52f3510cb7 less more
1 author: Alan Cox
2 content: XML is simply lisp done wrong.
3 id: ff609ab9-4b06-40e8-ab7e-5c52f3510cb7
+0
-6
data/quotes/ff69844b-e61b-4748-8870-4f4d38fc83b1 less more
1 author: Bertrand Russell
2 content: "Mathematics, rightly viewed, possesses not only truth, but supreme beauty\u2014\
3 beauty cold and austere, like that of sculpture, without appeal to any part of our\
4 \ weaker nature, without the gorgeous trappings of painting or music, yet sublimely\
5 \ pure, and capable of a stern perfection such as only the greatest art can show."
6 id: ff69844b-e61b-4748-8870-4f4d38fc83b1
+0
-4
data/quotes/ffe29151-4fc5-425b-b55d-fefb8ed3a2fa less more
1 author: Hunter S. Thompson
2 content: I was also drunk, crazy and heavily armed at all times. People trembled and
3 cursed when I came into a public room and started screaming in German.
4 id: ffe29151-4fc5-425b-b55d-fefb8ed3a2fa
+0
-4
data/quotes/fff75631-4619-4624-9d91-91c0f59fcd20 less more
1 author: Luis Aragon
2 content: Reality is the apparent absence of contradiction. The fantastic [maravilloso]
3 is the contradiction that appears in the real.
4 id: fff75631-4619-4624-9d91-91c0f59fcd20
+0
-6
data/works/comics/dominus-001/metadata.yaml less more
1 {
2 "name": "Dominus #1: The Astronaut",
3 "category": "comic",
4 "date": "2011",
5 "slug": "dominus-001"
6 }
+0
-1
data/works/comics/dominus-001/text less more
1 ![The Astronaut](http://76.105.173.15/images/the_moon.png)
+0
-6
data/works/fascicles/001-fytte-the-first/metadata.yaml less more
1 {
2 "name": "I: The Orchestra Whose Instruments Are Inaudibly Out Of Tune, or, The Librarian of Alexandria",
3 "category": "fascicle",
4 "date": "2009",
5 "slug": "001-fytte-the-first"
6 }
+0
-6
data/works/fascicles/001-fytte-the-first/metadata.yaml~ less more
1 {
2 "name": "I: The Orchestra Whose Instruments Are Inaudibly Out Of Tune, or, The Librarian of Alexandria",
3 "category": "fascicle",
4 "date": "2009",
5 "slug": "fytte-the-first"
6 }
+0
-17
data/works/fascicles/001-fytte-the-first/text less more
1 "I once owned thirty-seven acres of land," the stranger told me over a glass of warm whiskey. "Thirty-seven! Can you imagine it?"
2
3 "I can try," I told him. "You want me to try?"
4
5 "Try," he said. "Go ahead and just try."
6
7 I tried. "No, I can't imagine it."
8
9 "It was all because of the old Postmaster General. Remember Mr. Malü Peabody? He saw my land one day. He said, 'Mr. Doctor-Mister, you've got a mighty fine parcel of land there,' he said, and I said, 'You're right, Mr. Malü Peabody. I got this land ten years ago in a bar bet over which lizard would eat a fly first.' I said, 'We had to find some lizards first, which was quite a problem, let me tell you.' I said, 'We found three, but we needed four, and by the time we found the fourth, the second one had died, so we needed to find a fifth one to replace that, and then by the time—'"
10
11 "I did it," I said.
12
13 "Did what?"
14
15 "Imagined it. All thirty-seven acres. I imagined it all." I shrugged. "It wasn't that great."
16
17 He swigged his whiskey, all in one bristly motion, and he looked me in the eye, and he said, "Fuck you," and left.
+0
-6
data/works/fascicles/002-fytte-the-second/metadata.yaml less more
1 {
2 "name": "II: The Child Whose Shoelaces Are Comprised Of An Ever-So-Delicate Double Helix Of Green And Aquamarine Felt, or, The Legacy of Reuhrenwald",
3 "category": "fascicle",
4 "date": "2009",
5 "slug": "002-fytte-the-second"
6 }
+0
-32
data/works/fascicles/002-fytte-the-second/text less more
1 Once upon a time, in the quaint kingdom of Reuhrendwald, a king and queen
2 gave birth to a prince.
3
4 And this would not have been so unusual--indeed, it is the fashion of
5 the times that kings and queens give birth to princes--but the prince
6 in question was born fully grown, seventeen feet tall, with the least
7 pleasant unibrow any of the subjects had ever seen. Physicians were
8 summoned from all over the kingdom to examine him.
9
10 "Why, it's like nothing I've ever seen," one said. "I've heard of babies
11 born seventeen feet tall, and babies born fully grown, but the unibrow
12 is really a new thing altogether."
13
14 And it was really only a matter of time, what with his stature and
15 unsightliness, that he took up gardening, and spent his free time doing
16 the pruning at the tops of trees that nobody else had bothered to
17 do. He became good friends with the birds who lived at the tops of
18 the trees, calling them by their first names--usually Benvolio, because
19 birds often name their children Benvolio, regardless of gender, for
20 reasons that none of them quite remember, though they assure you
21 it has something to do with eggs or some bird-related thing, which is
22 not as obvious as it might sound at first--and generally being merry.
23
24 One day, he looked beyond the forests of Reuhrenwald and noticed that
25 the kingdom was gone. Half of it was destroyed in the Great Fire of the
26 Shoemaker's Estate, and the other half moved away because the town
27 wasn't like it once was without the Shoemaker's Estate. The prince
28 shrugged and went on with his pruning.
29
30 He also probably turned into a tree or some shit, because that's what
31 usually happens in stories that start with "Once upon a time." You
32 can honestly believe whatever you want about the prince. See if I care.
+0
-6
data/works/fascicles/003-fytte-the-third/metadata.yaml less more
1 {
2 "name": "III: The Unbearable Chasm In Which The Lost Goat Bleats The Lost Symphonies Of Forgotten Composers, or, Doctor Medved and The Band",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "003-fytte-the-third"
6 }
+0
-47
data/works/fascicles/003-fytte-the-third/text less more
1 Doctor Medved was a funny sort of guy. I wanted to write *man* there,
2 but I couldn't. That's not what he was. He was a guy.
3
4 There's nothing wrong with that, but you know, someone gets tired of
5 feet-on-the-desk-cheap-beer-in-the-fridge-birds-in-the-thicket kind
6 of living. That's why I left Doctor Medved that day, back in the summer
7 of Ten-and-Seven Sorrows.
8
9 I remember it like it was yesterday. "There's something wrong with this
10 birdhouse," he said, fidgeting with his toolset, in between grunts of
11 exertion and aggravation. "It's not housing properly."
12
13 "It doesn't take much to house," I told him. "I actually house rather
14 often."
15
16 "Well..." he said, and dropped the wrench. "What is it that you house?"
17
18 "Right now?" I said, and leaned backwards, considering the slow-moving
19 clouds and nearly dropping the mint julep that perspired in my cold
20 clammy hand. "Well, right now I think I must house serenity and
21 melancholy."
22
23 "Like a pond?" He was one of those guys who couldn't concieve of
24 serenity. Everything he knew about serenity he read in faux-Asian
25 pamphlets and TV Guide blurbs about Bruce Lee. He wouldn't know a
26 Zen garden from the Cottington School for Boys.
27
28 "Serenity is like when you're drunk, and you sit down on the curb
29 and let the sound of the bar disappear and you feel the curb and the
30 cold grit of the asphalt and the warm weave of your coat and the slow
31 growth of your hair that you keep forgetting to shave and you forget
32 that you're the only one drinking to remember and not forget. Serenity
33 is the cold air that comes in the almost-closed car window as you travel,
34 slowly in all but speed, from a place you don't really belong to a place
35 you don't really want to go to. Serenity is finding a kitten and saying
36 hello and asking it how it is and showing it a good time with some tin
37 cans and plastic tea cups and boxing magazines and then leaving it
38 where it was without bringing it home to your mother (or mother-substitute
39 that you fuck in a way you deny is Freudian) and trying to own it.
40 Those things are serenity."
41
42 Doctor Medved picked up the tool again and began making the birdhouse
43 into a bird-house. "Serenity is getting back to an empty apartment when
44 everyone is gone and the bags make the scratchy plastic noise as you
45 take the milk into the fridge and pause for just a moment?"
46
47 "No, not at all," I said as I stood up and left. "That's not it at all."
+0
-6
data/works/fascicles/004-fytte-the-fourth/metadata.yaml less more
1 {
2 "name": "IV: The Inexplicable Experiences Of A Man Who Finds A Chinese Restaurant Outside Space And Time, or, The Matryoshki",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "004-fytte-the-fourth"
6 }
+0
-26
data/works/fascicles/004-fytte-the-fourth/text less more
1 Mrs. Veliociraptor was having Mrs. Utahraptor over for some incredibly
2 pleasant afternoon tea. The scones were fresh and smelled of blueberries
3 and strife and the sugar-cubes were just old enough that they gave off the
4 most delicate moaning noise when separated.
5
6 "Rather afraid the mice got to the cake. Left it on the lower shelves
7 by mistake."
8
9 "Oh, bother!" Mrs. Utahraptor replied. "That was the cake you were telling
10 Mrs. Pterodactyl about, weren't you? A post-structuralist screed with a
11 frosting of hedge funds?"
12
13 "No. I made that cake last month for the widow of ol' Mrs. Smilodon, rest
14 her soul. No, this one was a long brown one--hazelnuts, cinnamon, and
15 mondegreens of songs you heard from your parents' room when you were
16 young and have never heard since."
17
18 "Mrs. Deionychus has a good one. It's fear, hanging cadence and possible
19 lovers who have forgotten your face and whose sudden unexpected appearance
20 on the street drowns you in a flood of possible realities just out of
21 reach of a time you can barely remember."
22
23 "Ooh, that *was* a good one. I liked her almond, too."
24
25 They talked for a while longer, but before long their speech was
26 mathematical symbols, so who knows what they were saying for sure?
+0
-6
data/works/fascicles/005-fytte-the-fifth/metadata.yaml less more
1 {
2 "name": "V: The Last Glass Of A Vintage Untasted By Human Lips, or, The Postprandial Prattle",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "005-fytte-the-fifth"
6 }
+0
-6
data/works/fascicles/005-fytte-the-fifth/text less more
1 There were seven brides for seven brothers. But the seven brides were
2 actually matryoshki, one inside another.
3
4 Sometimes after the brothers had too much to drink, they'd hide inside
5 the bigest one and pretend they belonged on a grandmother's shelf. She
6 didn't notice once.
+0
-6
data/works/fascicles/006-fytte-the-sixth/metadata.yaml less more
1 {
2 "name": "VI: The Glass Vessels In Which The Souls Of Cryptozoological Creatures Are Kept In Perfect, Beautiful Seculsion, or, The Dance",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "006-fytte-the-sixth"
6 }
+0
-2
data/works/fascicles/006-fytte-the-sixth/text less more
1 There was a dance they taught me once, as a child. It went like this. But
2 not exactly.
+0
-6
data/works/fascicles/007-fytte-the-seventh/metadata.yaml less more
1 {
2 "name": "VII: The Heinous and Unspeakable Crimes of Mr. R——, Zookeeper, or, The Ethnography",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "007-fytte-the-seventh"
6 }
+0
-11
data/works/fascicles/007-fytte-the-seventh/text less more
1 The Henbala people of the Karaba river valley are a strange people, at once majestic and comical. They claim, in their folklore passed down from person to person through the centuries, that they were not descended from First Man, nor from First Woman, but from the Sun himself.
2
3 (Many reject this view, because the Sun, regardless of its gender, would have caused major burns on the genitalia of whoever copulated with it.)
4
5 Naxa son of Subimi son of Ngukabe was born in the largest village of the Henbala people, where the Henbala spend their days scraping the flesh from the shells of crabs and beating bones together to make music in the key of C Mixolydian. He was born of the union of the village fortune-teller and a figure whose occupation can only be described as a sort of pre-agrarian stockbroker. As such, Naxa was surrounded since birth by both the uncertainties and the certainties of the future.
6
7 One day, Naxa left to search for an animal to replace a major third which was getting pretty flat in the village orchestra when he came across an inexplicable black sphere in the middle of the pass which connected his valley with the plains. He observed it with great zeal, prodding it with his finger and turning it over and over. It was neither heavy nor light; it neither reflected nor absorbed light; it seemed neither warm nor cold.
8
9 Naxa took the sphere to the village elder, who promptly punted it, where it disappeared and was subsequently never spoken of again. Naxa ended up making a very good life for himself as a femur-tuner.
10
11 I know you're disappointed that the mystery of the sphere was never solved, and even more disappointed that Naxa gave up so easily, but really, that sphere wasn't supposed to show up at all. If you take away anything from this story, know that part of the beauty in life is that some things exist, and anything more said about them is too much.
+0
-6
data/works/fascicles/008-fytte-the-eighth/metadata.yaml less more
1 {
2 "name": "VIII: The Unsurprising Leftovers from Aunt Lettie's Last Four Weddings, or, Truth Globules",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "008-fytte-the-eighth"
6 }
+0
-48
data/works/fascicles/008-fytte-the-eighth/text less more
1 I'd like to share with you the real things that a teacher of mine once
2 said to me. Of course, he wasn't actually my teacher, not in any kind
3 of academic sense. And he didn't say these things, in the sense that
4 vocal chords vibrated or pen touched page or meaning was transmitted in
5 any fashion. But he was my teacher, and he said these things to me, and
6 I have never forgotten them.
7
8 He said, "There are three nights that mean more to you than any other nights
9 of your life. This is only true of nights, and it isn't true of mornings,
10 or afternoons, or even days. Just nights. But it's not always the same
11 three nights when you think about it. Best to avoid thinking about it for
12 a while."
13
14 He said, "I don't believe in any of that soulmate shit, you know? But I do
15 wonder if maybe we only got half a soul and we've got to find another person
16 who has the other half. But not to stay around--just to trade, and after
17 that they can leave and I can leave and it'll all be good. 'Scuse me, sir,
18 I do believe you have my soul, yes, that piece there, and now I'll be on
19 my way."
20
21 He said, "People like to say the world is a simple place. That's not true.
22 That's not true at all. However, what they don't get is that the world
23 was almost a simple place, but the calculations got screwed up by
24 crows. And because of that, they had to work around a whole bunch of
25 the tiny details, and now the world's as complicated as you can see.
26 You wouldn't think a thing as normal as crows could do it, but
27 you don't know a whole lot about planning worlds, either. I did until I
28 dropped out."
29
30 He said, "Some people got loganberries, some people got strawberries. But
31 some people got blackberries, so fuck 'em."
32
33 He said, "I used to sell music. Not sheet music. Not recorded music, either.
34 And I didn't let anybody listen to it. I just sold them music. I figured
35 people would want it. Turns out, people don't want music, only noise."
36
37 He said, "Some day, I'm gonna be dead. And you'll be dead, too. And all
38 those people around you, and the ones down in the street, and up on the
39 hills, and on the ocean, they're all gonna be dead. If that makes you
40 sad, you're not looking at the big picture. And if that still makes you
41 sad, then you're not looking at the little picture, either."
42
43 He said, "I say a lotta stuff. I don't say a lotta stuff, too, and that's
44 gotta count for something. Not much, probably."
45
46 He said a number of other things, but a lot of them were quite boring. For
47 instance, at least one-hundred and thirty of those things were just
48 ordering burritos.
+0
-6
data/works/fascicles/009-fytte-the-ninth/metadata.yaml less more
1 {
2 "name": "IX: The Staggeringly Incomplete and Unfortunately Azure Presence of the Spirit of Our Times and The Lady of the Bentley Subglacial Trench, or, La Vita Degli Topi Chi Vivanno Nel'Opera",
3 "category": "fascicle",
4 "date": "2010",
5 "slug": "009-fytte-the-ninth"
6 }
+0
-58
data/works/fascicles/009-fytte-the-ninth/text less more
1 There was a family of five mice-children that lived in an opera-house in Milan. Their father
2 had been eaten, not by a cat, as one might expect of mice, but by several fish who
3 had set an elaborate trap involving no less than four decoy eels and an intricate
4 pulley system.
5
6 The father had been in an open relationship with several female mice, each of whom
7 was seeing several other male mice, and so several of them lived with the family
8 simultaneously; the children never knew whether the next day would find one subset
9 of their "mothers" and "fathers" replaced by another set. However, one of
10 them&mdash;a beautiful mouse with mottled brown-and-black fur&mdash;was always
11 there for them, being the biological mother of two of them and highly attached
12 to the other three. For the purposes of this story, I will call her Suzie, which is
13 a reasonably accurate translation of her name from the original Milanese Mouse
14 dialect, inasmuch as any collection of squeaks can be translated into a human language
15 at all.
16
17 One day, she and the five children, along with her two boyfriends, snuck into the
18 opera house, where a performance of _Il dissoluto punito, ossia il Don Giovanni_ was
19 being prepared for that weekend. Excited for the opera, Suzie insisted that the bored
20 children stay there to keep her seat for when she got back from getting refreshments
21 for the performance from the corner mouse store. The children sat expectantly for
22 a time, and then became bored and wandered around the upper boxes, looking for a
23 good vantage point for a mouse wishing to watch an opera.
24
25 It was not long until they found a box which was occupied by a Milanese inventor
26 called Massimo della Piscina Pubblica. He was performing the finishing touches on
27 a mannequin he had created so as to give the illusion that he had a date for the
28 opera, whereas in fact he was remarkably unattractive to women because of his complete
29 and utter lack of a nose. (He never considered that he could instead invent a nose
30 for himself; and if he had, he probably would have made it poorly, as he got zeroes
31 on most of the tests at _L'academie des inventeurs_ in Paris and slept through a lot
32 of classes. His nose would have actually been hilarious, though, so it is a pity that
33 he did not think of it.)
34
35 The mice thought quickly and dove into the mannuequin, and began operating it
36 independently. He was shocked to see his date come to life, and began to dream that
37 he was Giapetto, and the mannuequin was his own hypersexualized Pinnochio. The mice
38 began to make the mannuequin smile, and operated the voicebox through strings and
39 pulleys.
40
41 "What is wrong with you?" they asked. Massimo della Piscina Pubblica was shocked, but
42 also confused, because he did not speak English. So they repeated, "Qual è il tuo
43 problema?" He stammered, and stuttered, and the mice laughed in a mousey way inside
44 of the body, and the people who were filing into the opera began to stare at the
45 famous inventor and his oddly beautiful and yet somehow strange date.
46
47 "Cosà?" he asked, trying to understand what had happened to his mannequin. If he had
48 nostrils, they may very well have flared; we can only guess.
49
50 The mice never dignified him with a response, they left the box and found their
51 mother who was sneaking in a box of mouse popcorn and some mouse sodas; they picked
52 her up and began living in the basement of the opera-house, where they could listen
53 to the music without having to look at the atrocious makeup that some of these
54 singers had on.
55
56 Occasionally they'd go upstairs in their human-suit and give Massimo the finger. He
57 would try to thumb his nose at them and fail, and subsequently be laughed out of
58 the opera house. Kind of sad, really.
+0
-6
data/works/fascicles/010-fytte-the-tenth/metadata.yaml less more
1 {
2 "name": "X: Two Guys, A Girl, And The Rise of the Trans-Atlantic Semaphore Chain, or, Realizations",
3 "category": "fascicle",
4 "date": "2011",
5 "slug": "010-fytte-the-tenth"
6 }
+0
-36
data/works/fascicles/010-fytte-the-tenth/text less more
1 The passenger realized that their hat was lacking.
2
3 The conductor realized that the world's axis had shifted imperceptibly
4 w/r/t galactic north.
5
6 The passenger realized that seven flies were doing the fly equivalent
7 of the Mambo on a windowsill.
8
9 The conductor realized with a nervous sigh that everyone who ever
10 loved him was a pathological liar, and that he was not entirely unsure
11 that this bothered him.
12
13 The passenger realized that all trees were expressions of the same
14 Platonic tree, except for elms, all of whom can go fuck a knothole,
15 for all he cared.
16
17 The conductor realized that his own hat was lacking, and
18 simultaneously realized that his hat was stupid anyway and its lack
19 was nothing to be sad about.
20
21 The passenger realized that his ticket was in his hat, which by now
22 was probably floating somewhere around the crab nebula, or possibly
23 Philadelphia, which are basically the same thing, if you don't think
24 about it, which he didn't.
25
26 The conductor realized the passenger was naked, except for a hat
27 covering his genitalia, which he seemed to be unaware of.
28
29 The passenger realized that, assuming the correctness of string
30 theory, which posits that all matter is composed of tiny, vibrating
31 strings, he was almost certainly a F#.
32
33 The conductor died.
34
35 The passenger merged with the cosmos, briefly remembering his
36 now-silly anxiety over his lacking hat.
+0
-6
data/works/fascicles/011-fytte-the-eleventh/metadata.yaml less more
1 {
2 "name": "XI: The Counterfeit, Cheaply Produced Replicas of Official Visitor Passes from the Museum of Emptiness, or, Scenes From A Redacted Pop-Up Book",
3 "category": "fascicle",
4 "date": "2011",
5 "slug": "011-fytte-the-eleventh"
6 }
+0
-9
data/works/fascicles/011-fytte-the-eleventh/text less more
1 "You can't hear the music of the universe like that," she said.
2
3 "Like what?" I asked. "I am silent—no headphones, no radio, no nothing—and my mind is clear."
4
5 "Exactly," she said. "Your mind is a mirror that is like a pond. And yours is beautiful and still and perfect because it is dead."
6
7 "Mirrors are lies," I remember I said.
8
9 "Truer than you know," she said.
+0
-6
data/works/fascicles/012-fytte-the-twelfth/metadata.yaml less more
1 {
2 "name": "XII: Roberto L. von Krigelsbaum and His Dancing Tax Assessors, or, Le città e la sfortunata carenza di gentrificazione",
3 "category": "fascicle",
4 "date": "2011",
5 "slug": "012-fytte-the-twelfth"
6 }
+0
-56
data/works/fascicles/012-fytte-the-twelfth/text less more
1 It all started when I ate about seventy-five thousand pounds
2 of lemons.
3
4 I woke up the next morning to find my two remaining roommates,
5 Isidore and Louis the Negative Third, enraptured by a
6 low-budget documentary.
7
8 "It's coming to the good part," Isidore said. "Just watch."
9
10 "Have you seen it before?" I asked.
11
12 "I never watch movies twice," he said. "You know this."
13
14 "Look, guys&mdash;" I began.
15
16 "&#x0642;", Louis said.
17
18 "I ate, like, more lemons than actually exist last night. Do
19 you think that could be a problem?"
20
21 "Ah-ha!" Isidore said, clapping at the screen. "The circle
22 fade. I knew it was coming. No, I think you're probably
23 good."
24
25 "But what if the owner of the lemons comes to collect?"
26
27 "If it was more than actually exist, then nobody can have
28 owned them, eh?"
29
30 "And property is theft, too, you know," Louis added. "And
31 vice versa. I assume."
32
33 "But what if it harmed my stomach?"
34
35 "Do you have one?"
36
37 "A stomach?"
38
39 "Yeah, I always wanted one. My parents were poor."
40
41 "Look&mdash;do you have anything productive to say?"
42
43 "&#x0642;", Louis said.
44
45 "Aren't bananas radioactive?" Isidore asked.
46
47 "&#x0642; oh &#x0642; this kind nepenthe," Louis added.
48 "Incredibly."
49
50 "I didn't eat bananas, I ate lemons."
51
52 "They're yellow," Isidore observed.
53
54 "Okay, fine, this is asinine," I said.
55
56 Oh, how wrong I was.
+0
-6
data/works/fascicles/013-fytte-the-thirteenth/metadata.yaml less more
1 {
2 "name": "XIII: In Which A Cast of Colorful Charcuteries Learn Lessons about the State of the Fabric Industry, or, The Prolific yet Prideful Package",
3 "category": "fascicle",
4 "date": "2011",
5 "slug": "013-fytte-the-thirteenth"
6 }
+0
-35
data/works/fascicles/013-fytte-the-thirteenth/text less more
1 Alfred van Akka of Unfoundland was a kind of deliveryman by day, bicycle-thief
2 by night. Every morning, he'd wake up, take a package, and bring it to a
3 specified destination; every night, he'd go back and take a bicycle he saw on
4 the way. He saw it as a kind of retribution for the way a bloodthirsty gang
5 of bike-pirates stole his Heroes in Theoretical Numismatics action figure
6 set during his childhood.
7
8 One day, Alfred took a package and it spoke to him. It whispered his name
9 softly and sweetly, and Alfred was so terrified he threw it on the ground and
10 ran halfway to New Prottsville. A passing metabotanical vicar had to help him
11 back up.
12
13 Presently, he began to feel bad for so quickly abandoning the package, which
14 really had probably just wanted a friend. He marched back home and apologized
15 to the package, asking it if it wanted to hang out.
16
17 In fact, the package _had_ only wanted a friend, but seeing Alfred's terrified
18 response, its package equivalent of a heart was filled with hatred. It vowed to
19 destroy him.
20
21 That day, they went out to the Genschen Boardwalk, rode the rides, and went to
22 dinner at a fancy restaurant. All this infuriated the package even more, as it
23 was a Marxist who hated to see the consumeristic culture around it. Finally,
24 Alfred took the package with him to go bike-stealing, which was the last straw,
25 as many of the package's friends were bikes.
26
27 As it turned out, the bike being stolen was his girlfriend's cousin, and they
28 joined forces to... well, let's just say it wasn't pretty. A bluejay in the bush
29 nearby had to go to therapy for years, and nearly had to give her chicks up to
30 Avian Protective Services during her unstable periods. Real harsh. Alfred was
31 done for before it even started.
32
33 The package and the bike moved in together in Alfred's old home, which was a
34 real mistake. The package had to constantly run around turning off lights.
35 That's what you get, I suppose.
+0
-6
data/works/fascicles/014-fytte-the-fourteenth/metadata.yaml less more
1 {
2 "name": "XIV: Burning Down the Taddy-Lo's, or, Mr. Concupiscence K. The-Sloth-And-All-The-Little-Creatures Jones",
3 "category": "fascicle",
4 "date": "2012",
5 "slug": "014-fytte-the-fourteenth"
6 }
+0
-43
data/works/fascicles/014-fytte-the-fourteenth/text less more
1 The wind picked up a little bit, rustling the faded flags that had once been bright
2 colors on the side of the wooden building. Dry grass poked up through the edges of the bricks
3 that made up the walkway. A few errant snakes were watching the strips that once were flags,
4 mesmerized by the wafting motion.
5
6 A messenger arrived with a small scroll of brown paper, wrapped in twine and sealed with orange
7 wax. The messenger was a man with exactly three teeth and no more than seven strands of hair,
8 but his suit was a beautiful style, ornate with blue velvet and silver threads.
9
10 He gingerly entered the hall and let his eyes scan the room. At first, he saw only more
11 snakes&mdash;these were circling a fountain, apparently thirsty for a drink. The messenger
12 continued into a main room, which was similarly abandoned. A large window let light onto
13 the dusty floor, illuminated carpet that was once red, and now was a dull brown. Looking
14 over the room, all he could see was a gathering of snakes listening to a lecture on
15 Mesopotamian usury delivered by a particularly distinguished-looking snake with an
16 old-fashioned slide projector.
17
18 Finally, he entered a room with a throne and a king, surrounded by gold accoutrements and
19 beautiful yet aging tapestries. He sighed, as he had begun to fear that the place was devoid
20 of non-reptilians.
21
22 "Your highness," he said. "I have brought you&mdash;" and then he stopped in his tracks, as it
23 had become clear that the being was no king at all, but rather an empty king-shaped husk,
24 filled with snakes, suspended from the ceiling, marionette-like, on ropes which were
25 themselves the result of intertwined snakes. The snake-king spoke:
26
27 "Yes, fair messenger?"
28
29 "You're snakes, not a king."
30
31 The king-husk shrugged to the sound of a thousand snakes pulling the shoulders of the husk.
32 "We among the snakes have a saying: 'Good as snake.'"
33
34 "That saying doesn't even make sense."
35
36 That was a bad move, as it infuriated the snake-king. The snakes began to discard the husk
37 and gather into a gargantuan, seething mass. The walls of the building, which were also
38 snakes, began to join, and finally all joined together to form the hundred-league
39 Omega-Snake, which made short work of the messenger before razing the countryside.
40
41 And that is why the Great Omega-Snake War is sometimes spoken of by the huddled survivors
42 as the War of the Well-Dressed Messenger. And we all hope he is being tortured for his
43 crimes against the universe in Snake Hell.
+0
-6
data/works/fascicles/015-fytte-the-fifteenth/metadata.yaml less more
1 {
2 "name": "XV: The Ultimate Cessation Of Humankind's Ability To Love Itself And The Consequent Ontological Cataclysm That Itself Is Only The First Step In The Horrific Chain Of Events To Come, or, Three Sides of Fries",
3 "category": "fascicle",
4 "date": "2012",
5 "slug": "015-fytte-the-fifteenth"
6 }
+0
-51
data/works/fascicles/015-fytte-the-fifteenth/text less more
1 His heart felt as though it were made of glass. He could feel it. He could feel
2 every footstep reverberating in his glass heart, jostling it, rubbing it against
3 his panting lungs and pained spine, every motion too far straining the pristine
4 crystal lattice, every emotion causing it to creak and whine under the pressure.
5
6 The path was hard and long, and only barely illuminated by the blue-green foliage
7 which glowed brighter with every passing gust. The night sky was a flat black
8 with only the scarcest trace of the swarm above, like a soft trickle along the
9 horizon. The mountains above hummed softly.
10
11 "The hum is not comforting today," his companion said. The companion hovered
12 slightly, filled with red, redolent and grand.
13
14 "It is fine enough," he said, but his crystal heart disagreed. He looked up
15 at the faint blue peaks and felt the hum fill him, and the vibration seemed
16 as though it could destroy his crystal heart, but he _harrumphed_ and continued.
17
18 "You are not discomforted?"
19
20 "Not greatly," he said, and it was not quite a lie while still not quite the
21 truth. Every step nearly flattened flowers that moved aside and stared up at
22 the both expectantly, unsure if they were there to destroy them or feed them.
23 Of course, they were there for neither, only passing through towards the
24 city, which hovered in their vision distantly like a ghost.
25
26 "I find it... distasteful, at least," the companion said, and dilated his eyes
27 a little bit before hovering onward. "It seems to speak to me of plans."
28
29 "It seems to me that _you_ are now speaking of plans."
30
31 The companion was silent. The journey had gotten harder, and the great beasts
32 in the distance had started to stare with hollow yellow eyes and move with
33 barely perceptible movements. They would not be dangerous, but it was no
34 comforting thing to be walking in the half-light under the waxing swarm
35 with the guaes-beasts watching. The companion twisted a few times, perhaps
36 hoping that it would cause the beasts to avert their eyes.
37
38 Finally, they crested a hill and looked at the city they had for so long attempted
39 to find. Like a great crystal, it grew out in perfect directions and with
40 perfect dimensions, the subtle lights from planted trees being refracted and
41 reflected infinitely into the distance. He looked at his companion and both
42 of them smiled simultaneously.
43
44 "This city is like glass, and like glass, it could be destroyed by a small misstep
45 or an errant breath," the companion said, settling down on the hill just slightly
46 and obscuring the flowers below.
47
48 "The city is alive and will be alive in our minds for all time," he responded. "If
49 it must be broken, then it must." With that, he clutched at his heart, and both
50 began walking down the path.
51
+0
-6
data/works/fascicles/016-fytte-the-sixteenth/metadata.yaml less more
1 {
2 "name": "XVI: No More Than Seventy-Three Million Atoms Away, or, Memo #558",
3 "category": "fascicle",
4 "date": "2013",
5 "slug": "016-fytte-the-sixteenth"
6 }
+0
-51
data/works/fascicles/016-fytte-the-sixteenth/text less more
1 The incident occurred at five forty-seven AM on the far reaches of the eastern
2 suburb, about three-quarters of a mile from Road 78. Three of the vehicle's doors
3 were missing entirely. No bodies were found, and no footsteps were seen leaving
4 the upturned vehicle.
5
6 Investigators found and catalogued the following items from the scene:
7
8 - Five cellphane-wrapped lemon-flavored candies
9
10 - Four compact discs, none in their proper cases:
11 + Neil Young's 'After The Gold Rush'
12 + The Bestskimos' titular EP
13 + Kathleen Battle's Mozart arias, scratched beyond playability
14 + A burned CD-R, bearing two redacted titles and the third
15 unredacted title "The Factory of All: A Labor of Hate"
16
17 - An unlocked, empty jewelry box with a mother-of-pearl inlay in a
18 floral pattern on the top
19
20 - A jet-black parrot of unknown origin and species whose sole utterance
21 is the repeated phrase, "recidivism leads the pack!"
22
23 - A book in Hungarian whose title translates as, "The Long Jaunt: A
24 Postemptive Protospective," autographed in orange ink by a man who
25 did not write the book, addressed to "My Dearest Fußballschuh"
26
27 - A mirror which does not show the reflections of people whose names
28 begin with vowels
29
30 - A bottle of Zinfandel dated to 1983 from an Austrian winery named
31 Die Krummengel, of which no independent record exists
32
33 - A perfect white sphere with no mass to speak of, such that it must
34 be enclosed in a container lest it float randomly away from any
35 gravitational source
36
37 - A heat lamp (broken)
38
39 - Three sides of fries, extra crispy
40
41 - A small handwritten note, in blocky, awkward handwriting, on a pure,
42 crisp, white piece of card, containing the following text:
43
44 > In the middle of night at the top of the sky
45 > By the redolent field in which buffalo die
46 > Come the last of those few lonely souls who will hiss
47 > All the prayers of the holy and awful abyss
48
49 After a short time, the police assigned to the case announced that all
50 investigation would cease immediately. The items on this list were
51 auctioned several months later. The fries were no longer any good.
+0
-6
data/works/fascicles/017-fytte-the-seventeenth/metadata.yaml less more
1 {
2 "name": "XVII: The Unsettling Yearly Dance Of The Platonic Solids, or, Weird Tides",
3 "category": "fascicle",
4 "date": "2014",
5 "slug": "017-fytte-the-seventeenth"
6 }
+0
-31
data/works/fascicles/017-fytte-the-seventeenth/text less more
1 Eberhardt "Papercat" Von Kvotzburg frowned, and his eyebrows knotted
2 into perfect curls and settled underneath the rolling wrinkles that
3 had arrayed themselves on his expansive forehead. His hand gripped the cold
4 metal of the creaking, weather-beaten chair. His eyes darted—up, down, up,
5 down, left, down, up, up, down...
6
7 "Aye, I'm afraid 'tis true," she said as she sipped the paper cup
8 filled with overpriced coffee-like beverage. Her nose, shaped as it
9 was like a ski ramp, twitched in anticipation of the impending
10 caffeine.
11
12 "When did you start talking like a pirate?" he asked.
13
14 "There be a lot ye not know about me," she muttered. "Be that as it
15 may, ye know not of the treasure that awaits ye—the treasure that
16 awaits us all as we traverse the shores beyond—"
17
18 "—are you still talking about the grocery store?"
19
20 "Aye." She tested the temperature of the coffee with a tiny, noisy
21 sip, and then shrugged and threw back the entire cup without so much
22 as a flinch. "There be stranger things in the world than ye know,
23 Papercat. Much stranger things that may set their sights upon ye."
24
25 "You're aware that 'ye' is a nominative—not an objective—pronoun, no?"
26
27 "Shut ye the fuck up," she said with a slow, lilting cadence and a
28 haunting glare. "Let we get the fuck to the store of grocery."
29
30 And frankly, it would have been an okay grocery run if not for the
31 kraken.
+0
-5
data/works/pages/about/metadata.yaml less more
1 { "name": "About"
2 , "category": "about"
3 , "date": "today"
4 , "slug": "about"
5 }
+0
-0
data/works/pages/about/metadata.yaml~ less more
(Empty file)
+0
-3
data/works/pages/about/text less more
1 "Man is a god, in ruins."
2
3 —Ralph Waldo Emerson
+0
-5
data/works/pages/index/metadata.yaml less more
1 { "name": "[snarky text here]"
2 , "category": "about"
3 , "date": "today"
4 , "slug": "about"
5 }
+0
-5
data/works/pages/index/metadata.yaml~ less more
1 { "name": ""
2 , "category": "about"
3 , "date": "today"
4 , "slug": "about"
5 }
+0
-1
data/works/pages/index/text less more
1 All these things are true.
+0
-1
data/works/poems/the-festival-of-fears/metadata.yaml less more
1 {"category": "poem", "name": "The Festival of Fears", "date": "2006", "slug": "the-festival-of-fears"}
+0
-111
data/works/poems/the-festival-of-fears/text less more
1 For the Garaths at Sorn, by the seas great and black,
2 As they waited for all of their wives to come back
3 And fired their surrs at the tumelant whales
4 From the grelleking ships with no wind in their sails,
5 The longest of days in all the long years
6 Was the wintry cold Festival of Fears.
7
8 The moon, it was white, and the sun, it shone black,
9 The torizant leader crawled out of his sack
10 And looked at the rough, inimisal sky
11 Through one bloody black and one bright blue eye.
12 He called with a voice like terical leather
13 And gathered the whole symbadle together.
14
15 “Take a look at the sky!” He intoned, stret and strong,
16 “It has not been thus imfelled for too long!
17 I fear for the terrors this day has in store,”
18 He sholled with a tone like Hesago of Tor.
19 The men of the group stood up with a start
20 and began untellasting the ropes, part by part.
21
22 'Twas not half past krim when the specter appeared
23 With two fish in his hand and three streaks in his beard
24 His entility shone like a torch to the camp
25 And the men gathered round to hear his weftramp.
26 He circled two times round the statue of Triff
27 and with ultiffe in his eyes made off with a skiff.
28
29 Barely two hours hence an old baker named Shem
30 With a passion for baking fresh pan-à-la-sième
31 Stood up with a look of gelicine malice-
32 He huftily went and stole the chief's chalice
33 Then drowning himself with the vin de la çasse
34 He had stored for the cooking of malacanasse.
35
36 As the company stood by observing the cook
37 lying dead with the belicine cup that he took
38 they heard the somnaste of the spirits that flow
39 from the caverns of Krell to the fields of Sampó
40 which signaled the death of a servant of Hell
41 like a great, unholy Chamva-hall bell.
42
43 “'Tis a foul day indeed,” said the captain, vensure,
44 with a soul that was strong and a heart that was pure
45 but his men did not share his outlook on the day
46 with a garrable yell they all fled away
47 to the phenistal docks, behind which they'd play
48 their games of Pesmash and Sooda-Jalay.
49
50 In a blink of an eye came a thallaying shout
51 that prompted the captain to run quickly out
52 to the men who dempann'd and surra'd in their fear
53 of the corpse that was hanging off of the pier
54 with a look of incaelistic hate in his eye
55 They men, they all cried, “Oh, Marcello! Oh, why?”
56
57 With a bone-chilling beat all the graves opened wide
58 and skeletons started to dance deep inside
59 of the stone-laden shests and dirt-filled vadrós
60 that dotted Saint-Vien de les Grandes Sechosse.
61 The leader's old father stood up by the stone
62 that marked his small coffin on which no sun shone.
63
64 Every corpse had a black kyava-bird on their head
65 that filled all the terrified soldiers with dread
66 they dashed to the little flacsammed town square
67 and though they had just two surrs to share
68 they held out for an hour, and fought off the foe
69 that vitissied up from deep down below.
70
71 It would have been fine if it ended just there
72 but the oldest trempator received such a scare
73 that the heart nearly jumped right out of his chest
74 he fell on his knees, among all the rest.
75 “O samiscal day! O terrible knaft!”
76 He cried as he stole off with Serryman's raft.
77
78 Then all hell broke loose – though one might well say
79 that hell was much finer than that horrid day.
80 The sky bellased wide and out of it poured
81 snow cold as tristic, ice sharp as swords,
82 the men close to buildings, they quickly insook
83 and the ones who were further – well, they didn't look.
84
85 The wailing and screaming continued all day
86 while men lost their money at Sooda-Jalay
87 sembled inside of the homes in the town
88 fearing to look at the death raining down
89 fearing to look for their friends who were lost
90 out in the cold and ossamic frost.
91
92 By the time the frost cleared, twas the hour of Kvarz,
93 they jinellecked out to look at the stars
94 though the oranic ice had thawed from the ground
95 their fillicks and friends all could not be found.
96 The company stood about twenty or so –
97 the others, they guess, had gone up or below.
98
99 I wish I could tell you it ended right there,
100 the end of that horrible, destituous fair,
101 but truth will be told, the Garaths at Sorn
102 were struck with peurettre when they heard the horn,
103 the long low blestatto that signaled the tchaque
104 of the fears of the day – there wives had come back.
105
106 For the Garaths at Sorn, by the seas great and black,
107 in servitude now that their wives had come back,
108 as they worked at the gads making pan-à-la-stuque
109 and cleaning the house, every cranny and nook,
110 the longest of days in all the long years
111 was the wintry cold Festival of Fears.
+0
-1
data/works/stories/siffras-and-shume/metadata.yaml less more
1 {"category": "story", "name": "Síffras and Shúme", "date": "today", "slug": "siffras-and-shume"}
+0
-154
data/works/stories/siffras-and-shume/text less more
1 Seventeen holy men could only frown in sadness as they watched the spirit drain from her eyes.
2
3 "It's not a thing we know how to do," he said. "We can only be a little holy, you see."
4
5 So her father&mdash;the only one remaining in the home, now, after her mother left&mdash;looked on with a
6 hollow heart as, one by one, holy men let themselves out of the tiny cottage atop the distant hill. But
7 before the last holy man had left, he spoke softly and gently to her father.
8
9 "There is a way&mdash;there always is, of course&mdash;but it is not, all things considered, a good way." He
10 signed and pointed to the east where the sun was rising. "Far to the east, in the land where no man will
11 now walk, is a spring where a lone fish[^1] swims tirelessly. Here, you will find a plant on which grow five
12 white lilies and a single red lily, which you must take and feed to her. She will sleep for five days, and then
13 this will be cured."
14
15 The father thanked the holy man and began preparing for the journey. He led his daughter gently
16 by the hand, though she did not look at him and did not speak. He took a horse and walked alongside it,
17 trying to sing softly to himself, but the tune felt hollow in his throat.
18
19 At length he came across the last town on the edge of the forest, where a few scattered huts stood
20 among the giant green shapes beyond. A man greeted him, who wore the mask of a wild beast[^2]
21
22 "Ho, traveler! Where are you going?"
23
24 "Into the woods," he said with sadness. "To find a cure for my darling daughter."
25
26 "I once went into the woods," the man said, moving closer. "I was, years ago, mauled by a fearsome
27 creature from the woods. I went in, looking for a way to repair my face, which it had destroyed beyond
28 recognition."
29
30 "And did you?"
31
32 "I didn't find the face I had lost, but I found the beast's, which suited me better." The father
33 almost believed that it appeared that the mask smiled.
34
35 They stayed the night in the man's house and he gave them food and warm coats. The next day,
36 they thanked him and set out for the spring.
37
38 When evening came they found themselves at the foot of a tall cliff. An eagle[^3] above flew in front
39 of them, and when she landed she seemed to them to be a tall, dark woman with a walking-stick.
40
41 "What are you doing so deep in these woods, man and girl?" she asked.
42
43 "Finding a cure for my daughter," the father said. "She has not improved in five years."
44
45 "My children were once ill," the eagle said sadly. "I cared for them for five years, and none of the
46 dozen ever improved. I got them every food and every herb in hopes that they would recover."
47
48 "And did they?"
49
50 "Yes," the eagle said. "They survived long enough to starve after they all left the nest." The eagle
51 led them up a narrow path in the cliff, and brought them to a cave. The next morning, a fresh hare sat at
52 the mouth of the cave, which they roasted and ate. They climbed the cliff and, at length, came to a glade
53 with a spring and a fish and a lone cottage with a little fire. An old man stood outside with a cane.
54
55 "Good day, travelers," he said. "You are deep in the forest, where no men come."
56
57 "What are you, then?" the father asked.
58
59 "No longer a man," said the old figure. "You seek a cure for your daughter? Then turn and leave,
60 for there is none here."
61
62 "I was told there were five white lilies and one red lily here."
63
64 "There six white lilies," the old man said, and the father followed his finger and saw he was telling
65 the truth. "You were mistaken. Go back to the land of men."
66
67 The father, standing up and trembling, put his foot on the ground. "I refuse," he said.
68
69 "Go back!" said the old man, and he opened his cloak and showed that under it, his body was that
70 of a great black owl[^4]. He shouted and rushed towards the father. Quickly, the father drew a knife[^5] and
71 thrust it into the beast's heart. It cried an unearthly cry, and it fell backwards towards the pond.
72
73 The father moved towards the pond and spied the six white lilies. One of them had been stained
74 red by the blood of the old creatures, while the others were still pristine and beautiful. The father took it,
75 blood staining his fingers, and brought it to his daughter, who ate it without looking at him, and then
76 began to sleep on the soft moss.
77
78 The father took the body of the old creature and moved it to the edge of the glade, and gave it a
79 burial.
80
81 Before he slept, the eagle-woman returned to see that he had made it well. She looked for a long
82 time at the empty hut.
83
84 "Did you know the creature who lived here?"
85
86 "No," she said, but she refused to speak about it further. She left him several small animals for
87 food and then took flight in a storm of feathers.
88
89 On the second day, he slept in the beast's hut as his daughter rested by the edge of the pond. The
90 fish stopped briefly to look at her.
91
92 On the third day, the man with the animal's face returned to see him. He brought several pieces of
93 cured meat in a small leather sack. There was a curious look in his eye as he saw the disturbed dirt at the
94 edge of the glade.
95
96 "Did you know the creature who lived here?"
97
98 "Not well," he said, and his animal nose sniffed. "We spoke years ago." And then he refused to
99 speak further.
100
101 On the fourth day, he hunted for food around the glade, but found nothing but leaves and grass
102 and branches. Even the birds seemed silent, and no animals moved among the grass to catch. After a long
103 hungry time, he caught the lone fish in the pond and roasted it. It was more delicious than any fish he had
104 ever eaten. He slept that night in the owl-beast's hut.
105
106 On the fifth day, the holy man from his home was standing in the clearing. He held a bag of
107 vegetables in his hand, which he gave to the father. They sat and stared at the daughter in silence for a
108 long time.
109
110 "Did you know the owl-beast?" the father asked, after a long silence.
111
112 The holy man closed his eyes and looked at the pond.
113 "Yes, though I did not know his name. He
114 was ancient when I was young, and I would see him at the edge of the forest, before he retreated to his
115 sanctuary. We spoke often." He sighed. "It is too bad that he retreated to this distant place."
116
117 The holy man left that night. The next morning, after the five days had finished, the father awoke
118 and left the hut to find his daughter standing next to the pond. She turned, and there was a light and joy
119 in her eyes that he had not seen in five years.
120
121 "Wasn't there a fish in this pond?" she asked.
122
123 "Not anymore," the father said. "There was."
124
125 "Pity," she said. "I would have liked company." And after that, she fell into the pond, and when the
126 father rushed to the edge to see her, she was gone, and in the pool was a single rosy fish.
127
128 He wept for ten days, sleeping when he could weep no longer and waking to fresh tears. But on
129 the tenth day, the fish looked up and whispered that he had no right to be sad, as his task was
130 accomplished and he could return a happy man.
131
132 But he stayed in the forest for years, never leaving the pond's side, and staying always in the little
133 hut that belonged once to the owl-beast. He spoke every day to the fish, though it did not answer often,
134 and often to the eagle, and to the man with the beast's face, and to the holy man.
135
136 One day, he discovered he had grown a feather.[^6]
137
138 [^1]: The fish was originally a _th&uacute;mfoh_, or an aquatic creature with webbed fins and an exoskeleton. This is a
139 fish which was common in the forests of northern Z&iacute;m, though the folktale originated far to the south. The
140 horse was a _sh&eacute;khu_ or sh&eacute;thku, which is a pack animal not intended for riding, though some versions
141 change it to other pack animals or omit it entirely.
142
143 [^2]: The beast varies in different versions of the tale, but it is often given as a _hf&uacute;kkha_, or a southern sh&eacute;fkel.
144 Another common version features a _pw&oacute;shas_, or hannsakh.
145
146 [^3]: The eagle is, in the original text, a _chent&aacute;_, a V&eacute;dash relative of the flying k&uacute;tul. The rabbit is a
147 virh&aacute;ka, or _hfirh&aacute;ke_ as it is called in V&eacute;rdash.
148
149 [^4]: The owl is a feathered beast called an _oss&eacute;khnga_ in V&eacute;rdash, and hosh&eacute;nka in Trin&aacute;ko.
150
151 [^5]: The blade is specified as a scythe in some versions of the tale, in others, it is a V&eacute;rdash shortsword called a
152 y&eacute;rgal used by light militia but widely available throughout history.
153
154 [^6]: V&eacute;rdash folktales often end with heavy implications rather than the full story, as H&iacute;gal folktales do. Some H&iacute;gal adaptations of the tale continue the implication until the point when he has become the owl-monster, but this is considered to be contrary to the original intention in the V&eacute;rdash tradition.
+0
-1
data/works/stories/the-dead-eye/metadata.yaml less more
1 {"category": "story", "name": "The Dead Eye", "date": "today", "slug": "the-dead-eye"}
+0
-236
data/works/stories/the-dead-eye/text less more
1 Káffashuerthal son of Iasmáshfa son of Tuérvali lay on the ground in
2 front of the tea-house for half an hour before anyone found him, as
3 it was the festival of Ótshimai[^1] and all were enjoying the kavvára-tea
4 traditional at that time. This was one of the Hígal frontier towns, near
5 the shores of the great seas, and it was common for unruly sailors to
6 pass idly through the town, stinking of uilímvie-wine and the smoke of
7 faraway lands; so when someone saw the body, the patriarch Sávv of the
8 East shouted, "Curse the sailors! Let him be; as long as he is disorderly,
9 let the Three Deaths taunt him in his stupor."
10
11 [^1]: Ótshimai is the Hígal deity of the winds; his festival was traditionally associated with the drinking of _kavvára_ steeped in warmed vradmiór-milk, which was a mild stimulant, and various dances and traditional songs. It was a relatively minor festival, and not all celebrated it, choosing to work instead.
12
13 Young orphan Náfa dashed out anyway and looked at the body, despite
14 Sávv's brazen shouting. "It is Káffashuerthal!" she shouted, and all,
15 including the patriarch, ran out to see what was the matter. Náfa, with
16 great effort, pushed him over and looked at his face.
17
18 "His eye is dead!" she shouted.
19
20 "Kewedjjí," Sávv said in the tongue of the East[^2]. "Ridiculous. How can
21 an eye die and leave its owner behind?" But he saw that it was true; one
22 of his eyes was a beautiful, bright green, but the other had faded to
23 a sphere the color of wet stone, cloudy and empty.
24
25 [^2]: Sávv is clearly a Malakéd immigrant of some kind, who was elected patriarch for a period of some years (as most Hígal towns do.) The tongue of the East is Malakéd, and the word _keweddjí_ actually refers to the shedded skin of native birds, and is roughly synonymous with a slightly more appropriate form of "bullshit."
26
27 The priestess of the town spoke some words in the Old Language and all
28 bowed. Káffashuerthal began to stir, and the patriarch knelt by him and
29 spoke to him.
30
31 "Káffashuerthal," Sávv asked, "where have you been? And what has happend
32 to your eye?"
33
34 Káffashuerthal blinked and turned to the patriarch. "Where have they
35 gone? Where is the red-bearded man?" he grasped the shoulder of the
36 patriarch, and fell back on the ground. The people brought him to Hermit
37 Bezén on the edge of the town, who was (for all intents and purposes)
38 the guardian of Náfa, as she was constantly there despite his
39 half-hearted attempts to convince her to live at the temple instead. She
40 led the way with a purposeful march as his body was moved on a wooden
41 cart to the courtyard and laid on a pile of dry grass under a tree.
42
43 Bezén, who was a Heretic[^3], walked outside his house and hobbled on a
44 polished wooden stick whose handle had been worn down from years of
45 use. His head was uncovered. "Who is this man you have brought, little
46 fly?"
47
48 [^3]: A Heretic (_ashbuárku_) is, in modern Hígal, synonymous with 'atheist,' but at this point it would have referred to anyone who does not observe orthodox Nekhnévenal. Given Bezén's attitude later in the story, it is clear that he is not an atheist, but believes in some derivative, personal form of the Nekhnévenal religion.
49
50 "This is Káffashuerthal, the grocer," Náfa said, "and he has a dead
51 eye. He fell down outside of the tea-house and asked for the
52 red-bearded man."
53
54 Bezén regarded him closely, and knelt in front of him. "His hair is of
55 a golden color; he must be from the West Across The Sea."
56
57 "He was born in the village," the patriarch said, being careful to
58 stand outside the entrance of the courtyard. "He is more Hígal than I."[^4]
59
60 [^4]: At this point in history, ethnic membership was often determined by birthplace and not physical features; failing accurate information, most people determined a person's ethnicity by their accent.
61
62 Bezén disappeared into the fabric that covered his door, and returned
63 with a cup filled with boiled léshtra-water[^5], and put it to
64 the sick man's lips. Much of it ran down his neck and onto his cloak,
65 but he did drink some and moaned. Bezén nodded. "I shall take him in,
66 then, until he is clean to visit the village once again."
67
68 [^5]: Léshtran (singular _léshtra_, dual _léshtral_) are berries with relaxant properties. They have a great deal of natural hydrocolloids—a substance known as the Trindúrian pectin—and as such were often used to create a thick, sugary drink called léshtra-water.
69
70 The patriarch stood with his hands crossed over the symbols displayed
71 on the chest of his cloak. "You, Bezén, are welcome also to visit&mdash;"
72
73 "No." Bezén stood. "Go back to your gods. I will stay with him. You
74 too, little insect," he said to Náfa. She stuck out her lip but
75 walked back with the patriarch to have more tea.
76
77 It was several days until the people in the town heard again of the
78 man with the dead eye; Náfa ran into town from the hermit's hut,
79 telling them all of Káffashuerthal and that he walks once again.
80
81 "For a day, he would not move, and only stirred on occasion, to ask
82 where the red-bearded man had gone. But the next day, he sat up
83 and spoke to Bezén, and asked for Shimákhts grains and water, and
84 Bezén brought them from his garden and asked him what had happend."
85
86 "What happened to him?" people crowded around to ask. "Why did he
87 get a dead eye?"
88
89 "Bezén made me leave," Náfa said, "and I did not hear all of it. But
90 I heard him say that he was in the woods on his way to Suráv to buy
91 medicine when he was stopped by a red-bearded man who was trying to
92 find the Diufázza[^6]. When Káffashuerthal said that word, Bezén made
93 me leave."
94
95 [^6]: This word resembles the Vérdash word _juhfáshah_, which means 'unclean.'
96
97 The people were confused, as they had not heard that word before;
98 but Sávv the patriarch nodded and climbed the hill outside of the
99 town to speak with the Heretic and Káffashuerthal. Náfa ran behind
100 him, but even her running could not keep up with the long, swift
101 strides of the old white-bearded man.
102
103 "Náfa told me of Káffashuerthal's story, or what she heard of it,"
104 Sávv said once he had been welcomed in to the courtyard. Káffashuerthal
105 was sitting in the shade, and he clasped an older walking-stick in
106 his hand, but he no longer appeared ill, and color had returned to
107 his face. His eye was still a dull gray.
108 Bezén stood by the tree with a mortar and pestle and was
109 mashing grains into a pulp for flatbreads.
110
111 "I sent her away after he mentioned the Diufázza," Bezén said.
112
113 "I have heard that name," Sávv said with a slow, measured cadence. "I
114 have never heard good said of it."[^7]
115
116 [^7]: Traditional Nekhnévenal myths do not mention a Diufázza anywhere. It is most likely an interpolation by the author.
117
118 "There is no good in it," Bezén said, and nodded to Káffashuerthal, who
119 began to speak quietly, after Náfa had been sent to the village to
120 buy fruits.
121
122 "I had not heard it before I saw the red-bearded man," Káffashuerthal
123 said. "He and I found an inn on the way to Suráv and stayed, and he
124 asked me what I knew about it. I told him&mdash;truthfully&mdash;that I did not
125 know what it was, and he told me that he was a man of many evil things.
126 He told me that in his youth he joined a gang of thieves and murderers
127 and that his crimes were so many that they eventually forced him to
128 leave.
129
130 "He also told me that he invoked the gods constantly during this time
131 and that his prayers fell of deaf ears. The gods, he said, would not
132 grant him favors, and if his prayers came true, it was because they
133 had come true anyway. One night, when he had been arrested and was
134 lying alone in a flooding jail cell in the summer rains, he cursed
135 the gods so much his voice became hoarse.
136
137 "Upon waking, he found two beasts in his cell, beasts he had never
138 seen before. One was old and sickly and its skin hung like curtains
139 from its shaking bones, the other was strong and muscled and twitched
140 when it moved as though it could not bear the thought of not striking
141 the next moment. Both circled him for a time, and then they leapt at
142 him&mdash;both, even the sickly one&mdash;and he recoiled, and then opened his
143 eyes to find them both gone."
144
145 Káffashuerthal began to cough, and Bezén and Sávv brought him in to
146 the Heretic's house and sat him down on a bedroll and waved scented
147 bags near him, and his coughing began to cease. He continued.
148
149 "After that point, whenever he would pray, his prayers would be not
150 unanswered, but actively thwarted. If he prayed for rain, the sun
151 would shine; if he prayed for sun, it would rain; if he prayed for
152 a woman, none would appear; if he prayed for solitude, all would
153 surround him. If he prayed for something he did not desire, his trick
154 was seen through by the gods&mdash;they would peer into his heart and see
155 what he truly wished, and send whatever that was not.
156
157 "He told me this had happened twenty years ago, and that he constantly
158 wished for death, which of course would not happen as long as he wished
159 for it. He had decided to find the Diufázza, which he told me was the
160 one place that one could be severed from the gods."
161
162 He stopped here, and his lone eye seemed to fail to focus, and he mouthed
163 words to the air, as though speaking inaudibly to a being none of them
164 could see. He turned back to Sávv and continued.
165
166 "I agreed to accompany him on his journey, and we walked over three
167 of the ranges of the midlands to find this place, which he said was
168 a temple older than any building in this land. We finally came across
169 a stone structure, round and covered in writing I did not understand,
170 and he stood in front of it and shouted to the skies, demanding that he
171 be granted an audience here.
172
173 "I turned and two beasts surrounded me&mdash;one gaunt, and one muscled,
174 just as he had described&mdash;and glared at him. He fell to his knees and
175 asked, and then demanded, and then begged, to be released from whatever
176 curse plagued him. The beasts shook their heads. He asked if he needed
177 a sacrifice, and they shook their heads.
178
179 "'I'll sacrifice whatever you'd like!' he said to them, 'I'll sacrifice
180 this man here, the only man to pity me in my life!' And he took a knife
181 from his belt and lunged at me, shouting, 'You will see death! You are
182 my sacrifice!' And then he stumbled and fell, and the beasts stood on
183 either side of him and devoured him, beginning with his feet and ending
184 at his neck, leaving only his head. And yet he did not die; his head
185 turned to me and cursed me, saying, 'This is your doing! Sacrifice, if
186 I had cut your throat, it would be you being devoured in my place!'"
187
188 Here he stopped for a long while and sat, looking away into the distance,
189 as though thinking quite painfully. Then he continued.
190
191 "The beasts turned to me as the red-bearded man continued shouting,
192 and they spoke to me, although I do not know how. The gaunt one said to
193 me, 'You have been named as a sacrifice. By the laws of the land, you
194 must see death. It would be best that you close your eye.' And at this,
195 I became unconscious; when I arose, I was alone at the stone circle,
196 and I could not see out of one eye.
197
198 "I perceived that it was somehow closed, although my eyelids were
199 clearly open; I felt as though some part of my soul was keeping it
200 closed. As I walked back, deliberately not seeking out the
201 red-bearded man, I tried to open that eye, but only a bit, as I
202 recalled&mdash;as though an awful dream&mdash;the admonition of the beasts. When
203 I was sleeping in the woods, barely half a day's walk from our
204 village, I awoke and became overtaken with curiosity and finally
205 opened the eye."
206
207 He muttered to an unseen interlocutor, and continued. "I cannot
208 describe what I saw, but I shall say that I believe it to be the
209 foundations of our world. It was not unlike the backstage of a play;
210 and while we in the audience see palaces and hovels and all manner
211 of places when we look, backstage a multitude of forms are made
212 apparent, and things are seen to be flat and insubstantial. It was
213 the death and life beyond the truth of the world, and it was as though
214 all the truth of your life had been stripped away, and all those
215 close to you had been shown to be merely actors following a script for
216 your convenience, except that the universe itself was this way. I
217 had seen death."
218
219 They were silent for a long time. Sávv spoke again. "Is your eye now
220 open?"
221
222 "No," Káffashuerthal said. "I do not believe I can open it again and
223 remain here, for it would shape my spirit in such a way that I could
224 not remain with my body and mind intact. I shall attempt to keep my eye
225 closed for as long as I can. I have seen death once; perhaps I can
226 avoid seeing it until it cannot be put off."
227
228 Sávv and Bezén shared tea with Káffashuerthal for a bit and spoke only
229 of pleasant, idle things, and then Sávv returned to the village to
230 help Náfa bring things back. Káffashuerthal regained his strength
231 gradually and began to return to the grocery, working slowly and
232 methodically carrying goods and no longer taking the trips they used
233 to ask of him.
234
235 A few months later, neither Sávv nor Bezén were surprised when he
236 disappeared.
+0
-13
data/works.json less more
1 [ { "category": "Fasicles"
2 , "slug": "fascicles"
3 }
4 , { "category": "Stories"
5 , "slug": "stories"
6 }
7 , { "category": "Poems"
8 , "slug": "poems"
9 }
10 , { "category": "Comics"
11 , "slug": "comics"
12 }
13 ]
+0
-13
data/works.json~ less more
1 [ { "category": "Fasicles"
2 , "slug": "fascicles"
3 }
4 , { "category": "Stories"
5 , "slug": "stories"
6 }
7 , { "category": "Poems"
8 , "slug": "poems"
9 }
10 , { "category": "Comics"
11 , "slug": "comics"
12 }
13 ]