react-redux の設計指針
これは某所での設計を決める用の資料です
- フレームワーク
- React
| 000000 Officially Xerox | |
| 000001 SuperLAN-2U | |
| 000002 BBN (was internal usage only, no longer used) | |
| 000003 XEROX CORPORATION | |
| 000004 XEROX CORPORATION | |
| 000005 XEROX CORPORATION | |
| 000006 XEROX CORPORATION | |
| 000007 XEROX CORPORATION | |
| 000008 XEROX CORPORATION | |
| 000009 powerpipes? |
| # ==== Emojis ==== | |
| # 🐛 :bug: バグ修正 | |
| # 👍 :+1: 機能改善 | |
| # ✨ :sparkles: 部分的な機能追加 | |
| # 🎉 :tada: 盛大に祝うべき大きな機能追加 | |
| # ♻️ :recycle: リファクタリング | |
| # 🚿 :shower: 不要な機能・使われなくなった機能の削除 | |
| # 💚 :green_heart: テストやCIの修正・改善 |
http://niwatako.hatenablog.jp/entry/2016/03/05/022452
===================================================================
| fs = require('fs') | |
| module.exports = | |
| manifest: -> | |
| JSON.parse(fs.readFileSync(__dirname + '/../../../tmp/manifest.json', 'utf8')) | |
| url: (path) -> | |
| @manifest()[path] |
| [Unit] | |
| Description=Fluentd | |
| Documentation=http://www.fluentd.org/ | |
| After=network.target | |
| [Service] | |
| Type=forking | |
| ExecStart=/usr/bin/fluentd -d /run/fluentd.pid | |
| PIDFile=/run/fluentd.pid | |
| Restart=on-failure |
| import AVFoundation | |
| import Foundation | |
| // The maximum number of audio buffers in flight. Setting to two allows one | |
| // buffer to be played while the next is being written. | |
| private let kInFlightAudioBuffers: Int = 2 | |
| // The number of audio samples per buffer. A lower value reduces latency for | |
| // changes but requires more processing but increases the risk of being unable | |
| // to fill the buffers in time. A setting of 1024 represents about 23ms of |
| // | |
| // ViewController.m | |
| // AVPlayerCaching | |
| // | |
| // Created by Anurag Mishra on 5/19/14. | |
| // Sample code to demonstrate how to cache a remote audio file while streaming it with AVPlayer | |
| // | |
| #import "ViewController.h" | |
| #import <AVFoundation/AVFoundation.h> |