9:00にオフィス(Sticky Fingers)
食料品は事前に用意しておく。食べ過ぎない。胃に負担をかけないようにする。
運営の櫛井さんからのメールに従って、サポートチャットと予選ポータルサイトにログインする。
9:00にオフィス(Sticky Fingers)
食料品は事前に用意しておく。食べ過ぎない。胃に負担をかけないようにする。
運営の櫛井さんからのメールに従って、サポートチャットと予選ポータルサイトにログインする。
var Obj = function() { | |
this.func = function() { | |
return something.f().then(this._a, this._b); | |
} | |
this._a = function() { | |
//something...(終わったらhoge実行) | |
} | |
this._b = function() { |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |
OS X なら公式からインストーラをダウンロードしましょう。
nodeコマンドでnodeのインタプリタを起動。
$(function(){ | |
$("span#search_box").click( | |
function(){ | |
if ($("span#search").css("display") == "none"){ | |
$("span#search").slideDown("nomal"); | |
} | |
else { | |
$("span#search").slideUp("nomal"); | |
} | |
}); |
var html = require("http"); | |
var base_header = new Object({ | |
"Content-Type":"text/html;charset=utf-8" | |
}); | |
var server = html.createServer(); | |
server.on("request",function(req,res){ | |
res.writeHead(200,base_header); |
http = require 'http' | |
server = http.createServer (req, res) -> | |
req.writeHead 200, 'Content-Type': 'text/plain' | |
req.end 'Hello coffee script on node.js' | |
server.listen 3000 |
package main | |
import "fmt" | |
import "acme/oppai" | |
func main() { | |
var o oppai.Oppai; | |
fmt.Printf( | |
o.Massage(). | |
Massage(). |