Thursday, December 8, 2016

Wednesday, December 7, 2016

Tuesday, December 6, 2016

Hugh Davis: Microcosm: an open hypermedia system (1992)

Hugh Davis

Tim Brailsford: Computerphile: Origins of the Web

Tim Brailsford
Douglas Engelbart
Tim Berners-Lee
Ted Nelson


  • World Wide Web
  • Tim Berners-Lee
  • Vannevar Bush (ヴァネヴァー・ブッシュ)
  • As We May Think
  • Douglas Engelbart (ダグラス・エンゲルバート)
  • Augmentation system
  • Ted Nelson (テッド・ネルソン)
  • Literary Machines
  • Hypertext
  • Project Xanadu
  • Microcosm (hypermedia system)

Koji Seto (瀬戸弘司): 3Dアニメ寸劇: 第二話: 重力を操る女

Koji Seto

Koji Seto (瀬戸弘司): 3D寸劇: 第一話

Koji Seto

Monday, December 5, 2016

Holly Krieger: Numberphile: The Mandelbrot Set

Holly Krieger

Alex Dainis: Numberphile: What colour is 27?

Alex Dainis

Sarah Wiseman: Numberphile: Phone Buttons

Sarah Wiseman

Paul Smith (University of Nottingham): Numberphile: Problems with French Numbers

Paul Smith

Mike Pound: Computerphile: Bicubic Interpolation

Mike Pound

macOS Sierra: Haskell (programming language): Hello, World! Program

Command:

$ cat helloworld.hs


Result:

main = putStrLn "Hello, World!"


Command:

$ ghc helloworld.hs


Result:

[1 of 1] Compiling Main             ( helloworld.hs, helloworld.o )
Linking helloworld ...


Command:

$ ./helloworld


Result:

Hello, World!

macOS Sierra: Installing Haskell

Command:

$ brew install ghc cabal-install


Result:

==> Downloading https://homebrew.bintray.com/bottles/ghc-8.0.1_3.sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring ghc-8.0.1_3.sierra.bottle.tar.gz
==> Using the sandbox
==> /usr/local/Cellar/ghc/8.0.1_3/bin/ghc-pkg recache
🍺  /usr/local/Cellar/ghc/8.0.1_3: 5,775 files, 1G
==> Downloading https://homebrew.bintray.com/bottles/cabal-install-1.24.0.1.sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring cabal-install-1.24.0.1.sierra.bottle.tar.gz
==> Caveats
Bash completion has been installed to:
  /usr/local/etc/bash_completion.d
==> Summary
🍺  /usr/local/Cellar/cabal-install/1.24.0.1: 7 files, 27.7M

Laurence Day: Computerphile: Programming Paradigm: Imperative Programming & Functional Programming


  • sum [1..10]
  • sum::[Int]->Int