I hereby claim:
- I am suranyami on github.
- I am suranyami (https://keybase.io/suranyami) on keybase.
- I have a public key whose fingerprint is CA02 FEA6 76D1 9308 82D1 BD26 8730 7AB0 39DA DBA8
To claim this, I am signing this object:
license: gpl-3.0 |
license: mit |
<div id="details"> | |
<h1 id='head'>{user.firstName}</h1> | |
<h2 rv-text='user.surname'></h2> | |
<input id='input' type='text' rv-value="user.firstName"> | |
</div> | |
<script src='rivets.js'></script> | |
<script> | |
var user = { |
require 'formula' | |
# Major releases of erlang should typically start out as separate formula in | |
# Homebrew-versions, and only be merged to master when things like couchdb and | |
# elixir are compatible. | |
class Erlang < Formula | |
homepage 'http://www.erlang.org' | |
url 'http://www.erlang.org/download/otp_src_17.0.tar.gz' | |
sha1 '642f29673bdd01f14c980ca5e556e6e1199b9672' |
describe "Asynchronous specs", -> | |
funcRunInBackground = -> | |
value = 1 | |
return | |
wrapFuncRunInBackground = (done) -> | |
# setup for simmulating the async operation, a function run in the background | |
setTimeout (-> | |
funcRunInBackground() | |
done() |
I hereby claim:
To claim this, I am signing this object:
<!doctype html> | |
<html> | |
<head> | |
<title>Marker example</title> | |
<style> | |
body { | |
font-size: 14px; | |
} | |
li { |
Some brief instructions on how to use Sprocket 2 in Rails to get CoffeeScript powered JS and SASS powered CSS with YUI compression all via the magic of rack.
This stuff will be native in Rails 3.1 and the layout of the files on the filesystem will be different but this guide will get you working with it while we wait for all that to finalize.
Ignore the number prefixes on each file. This is just to ensure proper order in the Gist.
Note from suranyami: