I hereby claim:
- I am rjfranco on github.
- I am ramiro (https://keybase.io/ramiro) on keybase.
- I have a public key ASDIjUug8cc5LXJbQzN9wDNk83l1XiFq__lzf1dWD0I9DQo
To claim this, I am signing this object:
def add(n, n2) | |
n + n2 | |
end |
I hereby claim:
To claim this, I am signing this object:
This is a list of films I plan to watch this year, hoping to have movie nights over at my place. Figured I'd put the list somewhere shareable so I can seek contributions easily. The checkboxes are meant to indicate if they have been watched as part of the event, some entries are being added as already watched however because although we don't plan to watch them, they definitely should count as an anime movie classic.
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
// Depends on JQ | |
window.addEventListener('scroll', function(e){ | |
var distanceY = window.pageYOffset || document.documentElement.scrollTop, | |
transitionPoint = 500, | |
$header = $(".fixed-header"); | |
if (distanceY > transitionPoint) { | |
$header.addClass("smaller"); | |
} else { | |
$header.removeClass("smaller"); | |
} |
{ | |
"error_message": "Sorry, this request could not be processed. Please try again later." | |
} |
{% for object in mycollection %} | |
{% for thingy in object.collection %} | |
Should be able to get {{object.name}} and {{thingy.name}}, right? | |
{% endfor %} | |
{% endfor %} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# | |
# nginx - this script starts and stops the nginx daemon | |
# PROVIDE: nginx | |
# | |
# chkconfig: - 85 15 | |
# description: NGINX is an HTTP(S) server, HTTP(S) reverse \ | |
# proxy and IMAP/POP3 proxy server | |
# processname: nginx | |
# config: /opt/nginx/conf/nginx.conf |