| Movie | Recommended by |
|---|---|
| Initial D | @dabunter |
| Coffee and Cigarettes | @borncamp |
| The Garbage Pail Kids Movie | @munchingzombie |
| Robo Vampire | @munchingzombie |
| Gymkata | @munchingzombie |
| Food Fight (?) | @munchingzombie |
| What Is It? | @munchingzombie |
| Watermelon Man | @fuzzleonard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /.yardoc | |
| /.yardopts | |
| /coverage | |
| /doc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns look-and-say) | |
| (defn- consecutive [string] | |
| (map first (re-seq #"(.)\1*" string))) | |
| (defn- say [chars] | |
| [(count chars) (first chars)]) | |
| (defn- get-next [string] | |
| (apply str (mapcat say (consecutive string)))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .rbenv-gemsets | |
| .yardopts | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| contrived value input = | |
| let parsed = read input in -- parsed implements Read | |
| -- read takes a String, therefore input must be String | |
| if parsed == value -- parsed & value are same type, which implements Eq | |
| then Just parsed | |
| else Nothing | |
| {- | |
| If type bindings are still ambiguous after the function is defined, it's | |
| preferred to leave them unresolved rather than forcing them. This keeps your |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ ghci | |
| GHCi, version 7.8.3: http://www.haskell.org/ghc/ :? for help | |
| Loading package ghc-prim ... linking ... done. | |
| Loading package integer-gmp ... linking ... done. | |
| Loading package base ... linking ... done. | |
| Prelude> show | |
| <interactive>:2:1: | |
| No instance for (Show (a0 -> String)) arising from a use of ‘print’ | |
| In a stmt of an interactive GHCi command: print it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 10 REM POSTAGE RATES | |
| 20 : | |
| 30 REM DETERMINES POSTAGE FEES | |
| 40 REM FOR EXPRESS, FIRST CLASS, | |
| 50 REM AND PRIORITY MAIL | |
| 60 REM V29/01/82 | |
| 70 REM BY JOHN SCRIBBLEMONGER | |
| 100 REM MENU OF POSTAGE CLASSES | |
| 110 HOME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Within an easy walk of the hotel: | |
| 1. Just south of you is Millennium Park | |
| <http://www.cityofchicago.org/city/en/depts/dca/supp_info/millennium_park_-artarchitecture.html>. | |
| Worth going to. You have to go and take a picture of yourself reflected in the | |
| Bean | |
| <http://www.cityofchicago.org/content/dam/city/depts/dca/Millennium%20Park/cloudgate800.jpg>. | |
| And you can admire the Pritzker Pavilion. Probably not the Buckingham | |
| Fountain in March, though... But maybe the "fountain | |
| <http://www.cityofchicago.org/content/dam/city/depts/dca/Millennium%20Park/crownfountain800.jpg>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns functor | |
| (:refer-clojure :exclude [map])) | |
| (defprotocol Functor | |
| "Defines functor/Functor" | |
| (map [functor f])) | |
| (defn each | |
| [functor f] | |
| (map functor f) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sleep: | |
| I know this -> Welcome Apartments: Welcome.is (This is where we stayed both | |
| times in the city center) | |
| People I talked to stayed here -> City Center Hotel (very popular) | |
| I've all the monies in the world -> Hotel Borg | |
| Swim or Soak: | |
| Laugardalslaug Geothermal Pools (Locals in the 101 swim here) | |
| Blue Lagoon (Beautiful but requires like a good half-day: it's 45 minutes from | |
| Reykjavik, takes 20 minutes to get in, and at least an in the water hour to |