I hereby claim:
- I am taiansu on github.
- I am taiansu (https://keybase.io/taiansu) on keybase.
- I have a public key whose fingerprint is C106 EE56 DA03 DC21 EE39 E951 5511 57E2 7F47 C2EE
To claim this, I am signing this object:
function countdown | |
{ | |
local SECONDS=$1 | |
local START=$(date +%s) | |
local END=$((START + SECONDS)) | |
local CUR=$START | |
while [[ $CUR -lt $END ]] | |
do | |
CUR=$(date +%s) |
source 'https://rubygems.org' | |
ruby '2.0.0' | |
gem 'jekyll' | |
gem 'maruku' | |
gem 'rake' | |
gem 'sass' | |
gem 'coffee-script' | |
gem 'guard-jekyll' |
# puts something 等同於 puts something.to_s 所以都會自動轉字串 | |
# p something 等同於 puts something.inspect 會印出比較詳細的資料,通常是 debug 用。 | |
# 當你在 | |
def method | |
"aaa" | |
end | |
# 等同於 | |
def method |
defmodule Chat.Client do | |
def join(server) do | |
client_send server, :join | |
end | |
def say(server, message) do | |
client_send server, { :say, message } | |
end | |
def leave(server) do |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
module.exports = { | |
entry: "./main.coffee", | |
output: { | |
path: __dirname, | |
filename: "bundle.js" | |
}, | |
module: { | |
loaders: [ | |
{ test: /\.css$/, loader: "style!css" }, | |
{ test: /\.coffee$/, loader: "coffee" }, |
//var _ = require('underscore'); | |
var goodData = {a: 1, b: 2, c: 3}; | |
var badData = {a: null, b: 1, c: 2}; | |
var noNullValue = function(data, checkKeys){ | |
// check all keys unless pass an array | |
checkKeys = checkKeys || _.keys(data); | |
// will be something like [true, false, false], true means there is a null value on our checkKeys. |
{ | |
"H": 1.008, | |
"He": 4.00260, | |
"Li": 6.94, | |
"Be": 9.012182, | |
"B": 10.81, | |
"C": 12.011, | |
"N": 14.007, | |
"O": 15.999, | |
"F": 18.9984032, |
I hereby claim:
To claim this, I am signing this object:
import React from 'react'; | |
const Item = React.createClass({ | |
handleClick() { | |
this.props.itemClicked(this.props.index); | |
}, | |
render() { | |
return <li onClick={this.handleClick} className={this.props.className}> | |
<span>{this.props.item.email}</span> |