Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
var objectPool = []; | |
var marker = 0; | |
var poolSize = 0; | |
//any old JavaScript object | |
function commonObject () { } | |
commonObject.create = function () { | |
if (marker >= poolSize) { | |
commonObject.expandPool(poolSize * 2); |
Original: "Callbacks are imperative, promises are functional: Node's biggest missed opportunity" by James Coglan
Translated by Yuta Okamoto (@okapies)
#!/bin/sh | |
echo '玉子とじラーメン 650円(大盛800円)' | |
echo '玉子とじ担々麺 800円(大盛980円)' | |
echo 'もやしそば 750円(大盛980円)' | |
echo 'ワンタンメン 750円(大盛980円)' | |
echo '叉焼麺 800円(大盛980円)' | |
echo '天津麺 750円(大盛980円)' | |
echo '五目そば 750円(大盛980円)' | |
echo '酸辣湯麺 850円(大盛1000円)' |
Re: On layout & web performance by Kelly Norton
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>#lazyweb Is there any documentation about which jQuery functions/effects trigger layout? re: kellegous.com/j/2013/01/26/l…
— Dave Rupert (@davatron5000) January 28, 2013
getWidthOrHeight()
used in jQuery.fn.width/height
clientLeft
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>studiomohawk の Google リーダー登録フィード</title> | |
</head> | |
<body> | |
<outline text=".net" title=".net" type="rss" | |
xmlUrl="http://feeds.feedburner.com/net/topstories" htmlUrl="http://www.netmagazine.com"/> | |
<outline text="0 FPS" title="0 FPS" type="rss" | |
xmlUrl="http://0fps.wordpress.com/feed/" htmlUrl="http://0fps.wordpress.com"/> |
昨年の11月後半からen.ja OSSというオープンソースドキュメントの翻訳コミュニティをGitHubを使って開始した。
PublickeyでもJavaScript MVCフレームワーク Backbone.jsのコメント付きソースコード日本語訳が公開という記事で取り上げていただいたので、すでにご存じの方も多いかも知れない。
去年の10月に終了したCSS Radar Newsletterという名前のメールマガジンの後継のプロジェクトとして「翻訳」を選んだ。
その1つのアウトプットがen.ja OSSだ。
JavaScriptのコンストラクタ関数とファクトリ関数の利点と欠点。この著者は後者が好ましいという結論でnew
を使わないパターンを提唱している。
JavaScriptの基本: オブジェクトのシンタックス。なんにせよ、基本は大事だと思うので。短い記事で当然スニペットも豊富なので是非。