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
<meta name="twitter:card" content="product"> | |
<meta name="twitter:site" content="@site_username"> | |
<meta name="twitter:creator" content="@creator_username"> | |
<meta name="twitter:title" content="Top 10 Things Ever"> | |
<meta name="twitter:description" content="Up than 200 characters."> | |
<meta name="twitter:image:src" content="http://placekitten.com/250/250"> | |
<meta name="twitter:data1" content="$5 USD"> | |
<meta name="twitter:label1" content="PRICE"> | |
<meta name="twitter:data2" content="San Francisco"> | |
<meta name="twitter:label2" content="LOCATION"> |
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
::-webkit-scrollbar { | |
width: 10px; | |
} | |
::-webkit-scrollbar-track:vertical { | |
background: url(http://f.cl.ly/items/3X2R0L3G1h0b1n0q1N1O/fade_right.png) repeat-y; | |
} | |
::-webkit-scrollbar-thumb:vertical { | |
background: #000 url(http://f.cl.ly/items/1S340Q1i1s3s0K332N1k/thumb.png) center no-repeat; | |
border-left-color: #fff; |
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
body { | |
font: 14px/20px 'Droid Sans', arial, serif; | |
width: 500px; | |
background-color: #fff; | |
padding-top: 10px; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
header { | |
text-align: left; |
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
;Based on the Wondermark Fiction Generator by David Malki (http://wondermark.com/554/) | |
;Also based on Liam Cooke's automated version (http://fictiongen.boxofjunk.ws/) | |
;loc-adj-num is a random number between and including 0 and 12. | |
;The program location-adj takes the number from loc-adj-num and returns a location adjective based on the numbers each adjective is assigned. | |
(define loc-adj-num (random 12)) | |
(define (location-adj loc-adj-num) | |
(cond | |
[(= loc-adj-num 0) (display "neo-noir ")] | |
[(= loc-adj-num 1) (display "alternate-history ")] |