例えば、buttonの左辺をcontainer viewから20ポイント離す場合
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ・Cocoapods | |
| AF+Image+Helper | |
| ARChromeActivity | |
| Aspects | |
| Bolts | |
| CocoaSecurity | |
| Colours | |
| Crashlytics | |
| DACircularProgress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cluster = require('cluster'); | |
| var http = require('http'); | |
| var numCPUs = require('os').cpus().length / 2; | |
| var numWorkers = numCPUs <= 1 ? 2 : numCPUs; | |
| var watch = require('watch'); | |
| var domain = require('domain'); | |
| var util = require('util'); | |
| var forceKilledWorkers = {}; |
| 日時: | 2016-05-22 |
|---|---|
| 作: | 時雨堂 |
| バージョン: | 10.8.0 |
| url: | http://sora.shiguredo.jp/ |
I wrote a WebRTC SFU from scratch
| Author: | @voluntas |
|---|---|
| Translator: | @alanmshelly |
| Version: | 0.0.0 |
| url: | https://voluntas.github.io/ |
| 日時: | 2016-02-17 |
|---|---|
| 作: | 時雨堂 |
| 発表: | 45 分 |
| バージョン: | 1.2.0 |
| url: | https://shiguredo.jp |
| 元ネタ: | http://d.hatena.ne.jp/gfx/20130909/1378741015 |
|---|
あるプログラミング言語で実際にWebAppを開発できるようになるまで、何が必要だろうか。言語仕様の習得は終えているとしよう。おそらく、最低限以下のような知識が必要だと思われる。とりあえず Erlang/OTP について知っていることを書いた。
ただし、HTML 生成をするならそもそも Erlang/OTP を選択するのは正しい選択では無い。 あくまで API サーバを作るという前提であるべきだ。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -module(hoge). | |
| -export([gen_external_fun/0, gen_local_fun/0, gen_anonymouns_fun/0]). | |
| -export([hello/0]). | |
| gen_external_fun() -> % 公開関数への参照を返す | |
| fun hoge:hello/0. % これだけが完全修飾形式での参照 (= 複数回のコードローディングを跨いでも安全) | |
| gen_local_fun() -> % ローカル関数への参照を返す | |
| fun hello/0. |