Update all the things
1631925bbaacc8ecac99ab3cef3d59a531b0a67f
1 parent
979c4104
projects/empty.css → code/empty.css
renamed
+0 -0
code/index.html
added
+141 -0
| 1 | + | <!doctype html> |
|
| 2 | + | <html lang="en"> |
|
| 3 | + | <head> |
|
| 4 | + | <link rel="stylesheet" type="text/css" href="/css/base.css"> |
|
| 5 | + | <title>cloudhead.io</title> |
|
| 6 | + | <style> |
|
| 7 | + | body { |
|
| 8 | + | padding: 10px; |
|
| 9 | + | font-size: 14px; |
|
| 10 | + | } |
|
| 11 | + | ||
| 12 | + | h1 { |
|
| 13 | + | font-size: 16px; |
|
| 14 | + | } |
|
| 15 | + | ||
| 16 | + | h2 { |
|
| 17 | + | font-size: 20px; |
|
| 18 | + | text-decoration: underline; |
|
| 19 | + | } |
|
| 20 | + | ||
| 21 | + | h3 { |
|
| 22 | + | font-size: 20px; |
|
| 23 | + | } |
|
| 24 | + | ||
| 25 | + | section > header { |
|
| 26 | + | margin-bottom: 10px; |
|
| 27 | + | } |
|
| 28 | + | ||
| 29 | + | section > header > h2 { |
|
| 30 | + | font-size: 20px; |
|
| 31 | + | } |
|
| 32 | + | ||
| 33 | + | li { |
|
| 34 | + | list-style-position: inside; |
|
| 35 | + | margin: 10px 0; |
|
| 36 | + | } |
|
| 37 | + | ||
| 38 | + | section p { |
|
| 39 | + | margin: 15px 0 30px 0; |
|
| 40 | + | } |
|
| 41 | + | ||
| 42 | + | a:hover { |
|
| 43 | + | text-decoration: underline; |
|
| 44 | + | } |
|
| 45 | + | </style> |
|
| 46 | + | </head> |
|
| 47 | + | <body> |
|
| 48 | + | <header> |
|
| 49 | + | <h1><a href="/">cloudhead.io</a>/code</h1> |
|
| 50 | + | </header> |
|
| 51 | + | <section> |
|
| 52 | + | <br /> <br /> |
|
| 53 | + | <ul> |
|
| 54 | + | <li> |
|
| 55 | + | <a target="_blank" href="https://github.com/cloudhead/dotfiles">dotfiles</a> |
|
| 56 | + | - my dotfiles. |
|
| 57 | + | </li> |
|
| 58 | + | <li> |
|
| 59 | + | <a target="_blank" href="https://github.com/cloudhead/shady.vim">shady.vim</a> |
|
| 60 | + | - my shady vim colorscheme for late-night hacking. |
|
| 61 | + | </li> |
|
| 62 | + | <li> |
|
| 63 | + | <a target="_blank" href="https://github.com/cloudhead/neovim-ghcid">neovim-ghcid</a> |
|
| 64 | + | - neovim + haskell = <3. |
|
| 65 | + | </li> |
|
| 66 | + | <li> |
|
| 67 | + | <a target="_blank" href="https://github.com/cloudhead/neovim-fuzzy">neovim-fuzzy</a> |
|
| 68 | + | - a fuzzy file finder for neovim. |
|
| 69 | + | </li> |
|
| 70 | + | <li> |
|
| 71 | + | <a target="_blank" href="https://github.com/cloudhead/s3web">s3web</a> |
|
| 72 | + | - scripts I use to publish websites on Amazon S3. |
|
| 73 | + | </li> |
|
| 74 | + | <li> |
|
| 75 | + | <a href="https://github.com/cloudhead/monsv">monsv</a> |
|
| 76 | + | - a service runner inspired by <a href="http://smarden.org/runit/">runit</a>. |
|
| 77 | + | </li> |
|
| 78 | + | <li> |
|
| 79 | + | <a target="_blank" href="https://github.com/cloudhead/spinsv">spinsv</a> |
|
| 80 | + | - monsv in Haskell. |
|
| 81 | + | </li> |
|
| 82 | + | <li> |
|
| 83 | + | <a target="_blank" href="https://github.com/cloudhead/http-console">http-console</a> |
|
| 84 | + | - an intuitive HTTP REPL. |
|
| 85 | + | </li> |
|
| 86 | + | <li> |
|
| 87 | + | <a target="_blank" href="https://github.com/cloudhead/hijs">source</a> |
|
| 88 | + | - a simple & fast javascript syntax highlighter for the browser. |
|
| 89 | + | </li> |
|
| 90 | + | <li> |
|
| 91 | + | <a target="_blank" href="https://github.com/readmill/httputil">httputil</a> |
|
| 92 | + | - an http utility library for go. |
|
| 93 | + | </li> |
|
| 94 | + | <li> |
|
| 95 | + | <a target="_blank" href="https://github.com/readmill/metrics">metrics</a> |
|
| 96 | + | - a metrics library for go. |
|
| 97 | + | </li> |
|
| 98 | + | <li> |
|
| 99 | + | <a target="_blank" href="https://github.com/less/less.js">LESS</a> |
|
| 100 | + | - an attempt at building a better css. |
|
| 101 | + | </li> |
|
| 102 | + | <li> |
|
| 103 | + | <a target="_blank" href="https://github.com/cloudhead/node-static">node-static</a> |
|
| 104 | + | - rfc 2616 compliant HTTP static file server for node. |
|
| 105 | + | </li> |
|
| 106 | + | <li> |
|
| 107 | + | <a target="_blank" href="https://github.com/cloudhead/gogol">gogol</a> |
|
| 108 | + | - a bitmap drawing & animation library for go. |
|
| 109 | + | </li> |
|
| 110 | + | <li> |
|
| 111 | + | <a target="_blank" href="https://github.com/cloudhead/pixelog">pixelog</a> |
|
| 112 | + | - a simple pixel tracking server for measuring web traffic. |
|
| 113 | + | </li> |
|
| 114 | + | <li> |
|
| 115 | + | <a target="_blank" href="https://github.com/cloudhead/arbre">arbre</a> |
|
| 116 | + | - a dynamic functional language runtime and compiler experiment. |
|
| 117 | + | </li> |
|
| 118 | + | <li> |
|
| 119 | + | <a target="_blank" href="https://github.com/flatiron/vows">vows</a><strong></strong> |
|
| 120 | + | - a testing library for node.js. |
|
| 121 | + | </li> |
|
| 122 | + | <li> |
|
| 123 | + | <a target="_blank" href="https://github.com/cloudhead/nimbus">nimbus</a> |
|
| 124 | + | - a document database as a library for node.js, based on an append-only file model. |
|
| 125 | + | </li> |
|
| 126 | + | <li> |
|
| 127 | + | <a target="_blank" href="https://github.com/flatiron/cradle">cradle</a> |
|
| 128 | + | - a high-level javascript client for <a href="http://couchdb.apache.org/">couchdb</a>. |
|
| 129 | + | </li> |
|
| 130 | + | <li> |
|
| 131 | + | <a target="_blank" href="https://github.com/cloudhead/spell-correct">spell-correct</a> |
|
| 132 | + | - a spelling corrector in as few lines of code as possible. |
|
| 133 | + | </li> |
|
| 134 | + | </ul> |
|
| 135 | + | </section> |
|
| 136 | + | <footer> |
|
| 137 | + | <a href="mailto:hello@cloudhead.io">hello@cloudhead.io</a> |
|
| 138 | + | <p>© 2010-2013 Alexis Sellier</p> |
|
| 139 | + | </footer> |
|
| 140 | + | </body> |
|
| 141 | + | </html> |
css/base.css
+15 -2
| 3 | 3 | padding: 0; |
|
| 4 | 4 | } |
|
| 5 | 5 | ||
| 6 | 6 | body { |
|
| 7 | 7 | font-family: courier, monospace; |
|
| 8 | + | max-width: 960px; |
|
| 9 | + | margin: 0 auto; |
|
| 8 | 10 | } |
|
| 9 | 11 | ||
| 10 | 12 | body > header { |
|
| 11 | - | float: right; |
|
| 13 | + | float: right; |
|
| 12 | 14 | } |
|
| 13 | 15 | ||
| 14 | 16 | nav { |
|
| 15 | - | font-family: courier, monospace; |
|
| 16 | 17 | font-weight: bold; |
|
| 17 | 18 | padding: 10px; |
|
| 18 | 19 | font-size: 20px; |
|
| 19 | 20 | } |
|
| 20 | 21 |
| 23 | 24 | } |
|
| 24 | 25 | ||
| 25 | 26 | a { |
|
| 26 | 27 | text-decoration: none; |
|
| 27 | 28 | } |
|
| 29 | + | ||
| 30 | + | footer { |
|
| 31 | + | text-align: right; |
|
| 32 | + | position: fixed; |
|
| 33 | + | bottom: 10px; |
|
| 34 | + | right: 10px; |
|
| 35 | + | font-size: 11px; |
|
| 36 | + | } |
|
| 37 | + | ||
| 38 | + | footer a { |
|
| 39 | + | font-size: 17px; |
|
| 40 | + | } |
css/index.css
added
+44 -0
| 1 | + | * { |
|
| 2 | + | margin: 0; |
|
| 3 | + | padding: 0; |
|
| 4 | + | } |
|
| 5 | + | ||
| 6 | + | body { |
|
| 7 | + | background-image: url(/images/bg.png); |
|
| 8 | + | background-repeat: no-repeat; |
|
| 9 | + | background-attachment: fixed; |
|
| 10 | + | background-position: bottom center; |
|
| 11 | + | padding: 10px; |
|
| 12 | + | } |
|
| 13 | + | ||
| 14 | + | h1 { |
|
| 15 | + | font-size: 22px; |
|
| 16 | + | background-color: white; |
|
| 17 | + | } |
|
| 18 | + | ||
| 19 | + | body > header { |
|
| 20 | + | display: inline; |
|
| 21 | + | text-align: right; |
|
| 22 | + | float: right; |
|
| 23 | + | } |
|
| 24 | + | ||
| 25 | + | ul, li { |
|
| 26 | + | display: inline-block; |
|
| 27 | + | list-style-type: none; |
|
| 28 | + | background-color: white; |
|
| 29 | + | } |
|
| 30 | + | ||
| 31 | + | li { |
|
| 32 | + | margin: 5px 0; |
|
| 33 | + | font-size: 18px; |
|
| 34 | + | display: block; |
|
| 35 | + | } |
|
| 36 | + | ||
| 37 | + | a { |
|
| 38 | + | text-decoration: none; |
|
| 39 | + | } |
|
| 40 | + | ||
| 41 | + | a:hover:before { |
|
| 42 | + | content: "> "; |
|
| 43 | + | } |
|
| 44 | + |
index.html
+5 -4
| 1 | 1 | <!doctype html> |
|
| 2 | 2 | <html lang="en"> |
|
| 3 | 3 | <head> |
|
| 4 | - | <link rel="stylesheet" type="text/css" href="style.css"> |
|
| 4 | + | <link rel="stylesheet" type="text/css" href="css/base.css"> |
|
| 5 | + | <link rel="stylesheet" type="text/css" href="css/index.css"> |
|
| 5 | 6 | <title>cloudhead.io</title> |
|
| 6 | 7 | </head> |
|
| 7 | 8 | <body> |
|
| 8 | 9 | <header> |
|
| 9 | 10 | <nav> |
|
| 10 | 11 | <h1>cloudhead</h1> |
|
| 11 | 12 | <ul> |
|
| 12 | - | <li><a href="http://github.com/cloudhead">code</a></li> |
|
| 13 | + | <li><a href="/code">code</a></li> |
|
| 13 | 14 | <li><a href="http://twitter.com/cloudhead">tweets</a></li> |
|
| 14 | - | <li><a href="http://alexissellier.com">art</a></li> |
|
| 15 | 15 | <li><a href="http://mylifeofmusic.com">music</a></li> |
|
| 16 | - | <li><a href="/projects">stuff</a></li> |
|
| 16 | + | <li><a href="http://github.com/cloudhead">gits</a></li> |
|
| 17 | + | <li><a href="http://ello.co/cloudhead">drawings</a></li> |
|
| 17 | 18 | </ul> |
|
| 18 | 19 | </nav> |
|
| 19 | 20 | </header> |
|
| 20 | 21 | <footer> |
|
| 21 | 22 | <a href="mailto:hello@cloudhead.io">hello@cloudhead.io</a> |
projects/index.html
deleted
+0 -159
| 1 | - | <!doctype html> |
|
| 2 | - | <html lang="en"> |
|
| 3 | - | <head> |
|
| 4 | - | <title>cloudhead.io</title> |
|
| 5 | - | <style> |
|
| 6 | - | * { |
|
| 7 | - | margin: 0; |
|
| 8 | - | padding: 0; |
|
| 9 | - | } |
|
| 10 | - | ||
| 11 | - | body { |
|
| 12 | - | font-family: courier, monospace; |
|
| 13 | - | padding: 10px; |
|
| 14 | - | font-size: 20px; |
|
| 15 | - | } |
|
| 16 | - | ||
| 17 | - | h1 { |
|
| 18 | - | font-size: 20px; |
|
| 19 | - | } |
|
| 20 | - | ||
| 21 | - | h2 { |
|
| 22 | - | font-size: 20px; |
|
| 23 | - | text-decoration: underline; |
|
| 24 | - | } |
|
| 25 | - | ||
| 26 | - | h3 { |
|
| 27 | - | font-size: 20px; |
|
| 28 | - | } |
|
| 29 | - | ||
| 30 | - | body > header { |
|
| 31 | - | float: right; |
|
| 32 | - | } |
|
| 33 | - | ||
| 34 | - | section > header { |
|
| 35 | - | margin-bottom: 10px; |
|
| 36 | - | } |
|
| 37 | - | ||
| 38 | - | section > header > h2 { |
|
| 39 | - | font-size: 20px; |
|
| 40 | - | } |
|
| 41 | - | ||
| 42 | - | footer { |
|
| 43 | - | text-align: right; |
|
| 44 | - | position: fixed; |
|
| 45 | - | bottom: 10px; |
|
| 46 | - | right: 10px; |
|
| 47 | - | font-size: 11px; |
|
| 48 | - | } |
|
| 49 | - | ||
| 50 | - | footer a { |
|
| 51 | - | font-size: 17px; |
|
| 52 | - | } |
|
| 53 | - | ||
| 54 | - | li { |
|
| 55 | - | list-style-position: inside; |
|
| 56 | - | margin: 5px 0; |
|
| 57 | - | } |
|
| 58 | - | ||
| 59 | - | ul li { |
|
| 60 | - | list-style-type: none; |
|
| 61 | - | } |
|
| 62 | - | ||
| 63 | - | section p { |
|
| 64 | - | margin: 15px 0 30px 0; |
|
| 65 | - | } |
|
| 66 | - | ||
| 67 | - | a { |
|
| 68 | - | text-decoration: none; |
|
| 69 | - | } |
|
| 70 | - | </style> |
|
| 71 | - | </head> |
|
| 72 | - | <body> |
|
| 73 | - | <header> |
|
| 74 | - | <h1><a href="/">cloudhead.io</a>/projects</h1> |
|
| 75 | - | </header> |
|
| 76 | - | <section> |
|
| 77 | - | <br /> <br /> |
|
| 78 | - | <p>Projects I've authored throughout the years. They range from incomplete sketches to finished products.</p> |
|
| 79 | - | <ul> |
|
| 80 | - | <li> |
|
| 81 | - | <p><strong>shady.vim</strong> · [<a href="https://github.com/cloudhead/shady.vim">source</a>]</p> |
|
| 82 | - | <p>My shady vim colorscheme for late-night hacking.</p> |
|
| 83 | - | </li> |
|
| 84 | - | <li> |
|
| 85 | - | <p><strong>dotfiles</strong> · [<a href="https://github.com/cloudhead/dotfiles">source</a>]</p> |
|
| 86 | - | <p>My dotfiles.</p> |
|
| 87 | - | </li> |
|
| 88 | - | <li> |
|
| 89 | - | <p><strong>http-console</strong> · [<a href="https://github.com/cloudhead/http-console">source</a>]</p> |
|
| 90 | - | <p>An intuitive HTTP REPL.</p> |
|
| 91 | - | </li> |
|
| 92 | - | <li> |
|
| 93 | - | <p><strong>s3web</strong> · [<a href="https://github.com/cloudhead/s3web">source</a>]</p> |
|
| 94 | - | <p>Scripts I use to publish websites on Amazon S3.</p> |
|
| 95 | - | </li> |
|
| 96 | - | <li> |
|
| 97 | - | <p><strong>monsv</strong> · [<a href="https://github.com/cloudhead/monsv">source</a>]</p> |
|
| 98 | - | <p>A service runner inspired by <a href="http://smarden.org/runit/">runit</a>.</p> |
|
| 99 | - | </li> |
|
| 100 | - | <li> |
|
| 101 | - | <p><strong>spinsv</strong> · [<a href="https://github.com/cloudhead/spinsv">source</a>]</p> |
|
| 102 | - | <p>monsv in Haskell.</p> |
|
| 103 | - | </li> |
|
| 104 | - | <li> |
|
| 105 | - | <p><strong>hijs</strong> · [<a href="https://github.com/cloudhead/hijs">source</a>]</p> |
|
| 106 | - | <p>A simple & fast JavaScript syntax highlighter for the browser.</p> |
|
| 107 | - | </li> |
|
| 108 | - | <li> |
|
| 109 | - | <p><strong>LESS</strong> · <a href="http://lesscss.org">http://lesscss.org</a> · [<a href="https://github.com/less/less.js">source</a>]</p> |
|
| 110 | - | <p>An attempt at building a better CSS.</p> |
|
| 111 | - | </li> |
|
| 112 | - | <li> |
|
| 113 | - | <p><strong>httputil</strong> · [<a href="https://github.com/readmill/httputil">source</a>]</p> |
|
| 114 | - | <p>An HTTP utility library for Go.</p> |
|
| 115 | - | </li> |
|
| 116 | - | <li> |
|
| 117 | - | <p><strong>metrics</strong> · [<a href="https://github.com/readmill/metrics">source</a>]</p> |
|
| 118 | - | <p>A metrics library for Go.</p> |
|
| 119 | - | </li> |
|
| 120 | - | <li> |
|
| 121 | - | <p><strong>node-static</strong> · [<a href="https://github.com/cloudhead/node-static">source</a>]</p> |
|
| 122 | - | <p>An RFC 2616 compliant HTTP static file server for Node.js.</p> |
|
| 123 | - | </li> |
|
| 124 | - | <li> |
|
| 125 | - | <p><strong>gogol</strong> · [<a href="https://github.com/cloudhead/gogol">source</a>]</p> |
|
| 126 | - | <p>A bitmap drawing & animation library for Go.</p> |
|
| 127 | - | </li> |
|
| 128 | - | <li> |
|
| 129 | - | <p><strong>pixelog</strong> · [<a href="https://github.com/cloudhead/pixelog">source</a>]</p> |
|
| 130 | - | <p>An incredibly simply pixel tracking server for measuring web traffic.<p> |
|
| 131 | - | </li> |
|
| 132 | - | <li> |
|
| 133 | - | <p><strong>arbre</strong> · [<a href="https://github.com/cloudhead/arbre">source</a>]</p> |
|
| 134 | - | <p>A dynamic functional language runtime and compiler experiment. The design of the runtime and bytecode is inspired by Lua's.<p> |
|
| 135 | - | </li> |
|
| 136 | - | <li> |
|
| 137 | - | <p><strong>vows</strong> · <a href="http://vowsjs.org">http://vowsjs.org</a> · [<a href="https://github.com/flatiron/vows">source</a>] |
|
| 138 | - | <p>A TDD library for Node.js.</p> |
|
| 139 | - | </li> |
|
| 140 | - | <li> |
|
| 141 | - | <p><strong>nimbus</strong> · [<a href="https://github.com/cloudhead/nimbus">source</a>]</p> |
|
| 142 | - | <p>A simple document database as a library for Node.js, based on an append-only file model.<p> |
|
| 143 | - | </li> |
|
| 144 | - | <li> |
|
| 145 | - | <p><strong>cradle</strong> · [<a href="https://github.com/flatiron/cradle">source</a>]</p> |
|
| 146 | - | <p>A high-level <a href="http://couchdb.apache.org/">CouchDB</a> client for Node.js.</p> |
|
| 147 | - | </li> |
|
| 148 | - | <li> |
|
| 149 | - | <p><strong>spell-correct</strong> · [<a href="https://github.com/cloudhead/spell-correct">source</a>]</p> |
|
| 150 | - | <p>A spelling corrector in as few lines of code as possible.</p> |
|
| 151 | - | </li> |
|
| 152 | - | </ul> |
|
| 153 | - | </section> |
|
| 154 | - | <footer> |
|
| 155 | - | <a href="mailto:hello@cloudhead.io">hello@cloudhead.io</a> |
|
| 156 | - | <p>© 2010-2013 Alexis Sellier</p> |
|
| 157 | - | </footer> |
|
| 158 | - | </body> |
|
| 159 | - | </html> |
style.css
deleted
+0 -56
| 1 | - | * { |
|
| 2 | - | margin: 0; |
|
| 3 | - | padding: 0; |
|
| 4 | - | } |
|
| 5 | - | ||
| 6 | - | body { |
|
| 7 | - | font-family: courier, monospace; |
|
| 8 | - | background-image: url(/images/bg.png); |
|
| 9 | - | background-repeat: no-repeat; |
|
| 10 | - | background-attachment: fixed; |
|
| 11 | - | background-position: bottom center; |
|
| 12 | - | padding: 10px; |
|
| 13 | - | } |
|
| 14 | - | ||
| 15 | - | h1 { |
|
| 16 | - | font-size: 24px; |
|
| 17 | - | } |
|
| 18 | - | ||
| 19 | - | body > header { |
|
| 20 | - | display: inline; |
|
| 21 | - | text-align: right; |
|
| 22 | - | float: right; |
|
| 23 | - | } |
|
| 24 | - | ||
| 25 | - | footer { |
|
| 26 | - | text-align: right; |
|
| 27 | - | position: fixed; |
|
| 28 | - | bottom: 10px; |
|
| 29 | - | right: 10px; |
|
| 30 | - | font-size: 11px; |
|
| 31 | - | } |
|
| 32 | - | ||
| 33 | - | footer a { |
|
| 34 | - | font-size: 17px; |
|
| 35 | - | } |
|
| 36 | - | ||
| 37 | - | ul, li { |
|
| 38 | - | display: inline-block; |
|
| 39 | - | list-style-type: none; |
|
| 40 | - | background-color: white; |
|
| 41 | - | } |
|
| 42 | - | ||
| 43 | - | li { |
|
| 44 | - | margin: 5px 0; |
|
| 45 | - | font-size: 20px; |
|
| 46 | - | display: block; |
|
| 47 | - | } |
|
| 48 | - | ||
| 49 | - | a { |
|
| 50 | - | text-decoration: none; |
|
| 51 | - | } |
|
| 52 | - | ||
| 53 | - | a:hover:before { |
|
| 54 | - | content: "> "; |
|
| 55 | - | } |
|
| 56 | - |