I hereby claim:
- I am jnf on github.
- I am jnf (https://keybase.io/jnf) on keybase.
- I have a public key whose fingerprint is 8913 A2F3 8073 86C9 F367 3752 148A E504 F827 DA56
To claim this, I am signing this object:
| - x = 7 | |
| .div1 | |
| .div2 | |
| .div4 | |
| - if x == 4 | |
| Totes a four. | |
| - else | |
| Prolly not a four. | |
| .div3 | |
| A third div, nested in div2. |
I hereby claim:
To claim this, I am signing this object:
Open Source & Feelings (OS&F) is a new technology conference focused on providing tools and support for people seeking to implement and improve technology %w(access tools education).sample in their communities.
We're early in the planning process, but some language describes our mission as:
Open Source & Feelings is a two-day event exploring the Humanities & Arts through the lens of open source technology, those tools and products we use to richly experience & interact with each other, our communities, and the world.
One of our most immediate needs is visual identity for the project. The goal of this document is to describe our need well enough to jump-start conversation. Given that this is the first year, we have no existing brand materials for you to reference.
| def mergesort(a) | |
| # if the array size is 0|1 then the list is considered sorted, return sorted | |
| return a if a.length <= 1 | |
| # split the list in half | |
| left, right = split_array a | |
| # merge sort each half | |
| sorted_left = mergesort left | |
| sorted_right = mergesort right |
These requirements are in addition to all the requirements included in the initial project documentation.
/api/docs the serves HTML (rendered from a view). This view must contain...
GET /movies)| @import url(https://fonts.googleapis.com/css?family=VT323); | |
| html { font: normal normal 16px/1.2 VT323, courier, monospace; } | |
| * { margin: 0; padding: 0; } | |
| body { | |
| background-color: #000; | |
| color: rgb(253, 254, 0); | |
| padding: 10vh; | |
| } |
| class Dragon | |
| def initialize(name) | |
| @name = name | |
| @stuff_in_belly = 10 # full tummy | |
| @stuff_in_intestine = 0 # empty diaper | |
| puts "#{ @name } is born!" | |
| end | |
| def feed |
| html { | |
| font: normal normal 32px/1 "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| } | |
| body { | |
| background: #111; | |
| } | |
| #shapes { | |
| background: rgb(255, 0, 255); |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Doggo Domicile</title> | |
| </head> | |
| <body> | |
| <h1>Let's Play House</h1> | |
| <img src="http://rilane.com/images/2016148/cool-dog-house-with-roofdeck.jpg" alt="bulldog standing atop very cool doghouse"> | |
| <script type="text/javascript"> |