- 『ビジネススクールでは学べない 世界最先端の経営学』
- http://www.amazon.co.jp/dp/4822279324/
これを読んでる。
この本の中で「トランザクティブ・メモリー」という話がでてきた。概要は以下のコラムに書いてる。
| // TypeScript のタグ付きユニオンで再帰データ型を扱えるのか分からなくなったので試しにリストを実装 | |
| // 結論、扱えます | |
| // Haskell でいうところの data List a = Empty | Cons a (List a) | |
| interface Empty { | |
| kind: "Empty" | |
| } | |
| interface Cons<T> { | |
| kind: "Cons" |
| import sys | |
| import os | |
| from keyhac import * | |
| import ckit | |
| def configure(keymap): | |
| not_emacs_target = [ | |
| "com.googlecode.iterm2", | |
| "com.apple.Terminal", |
| <html> | |
| <head><title>Slack App Example</title></head> | |
| <body> | |
| <p><a href="https://slack.com/oauth/authorize?scope=commands&client_id=2256441852.18825839269"><img alt="Add to Slack" height="40" width="139" src="https://platform.slack-edge.com/img/add_to_slack.png" srcset="https://platform.slack-edge.com/img/add_to_slack.png 1x, https://platform.slack-edge.com/img/[email protected] 2x"></a></p> | |
| </body> | |
| </html> |
これを読んでる。
この本の中で「トランザクティブ・メモリー」という話がでてきた。概要は以下のコラムに書いてる。
| defmodule FormChunk do | |
| defstruct [:id, :size, :type, :common, :sound_data] | |
| def new( | |
| << | |
| id :: bitstring-size(32), | |
| size :: unsigned-integer-size(32), | |
| type :: bitstring-size(32), | |
| chunks :: binary, | |
| >>) do |
| 'use strict'; | |
| var React = require('react-native'); | |
| var Fluxxor = require('fluxxor'); | |
| var { | |
| AppRegistry, | |
| TouchableHighlight, | |
| StyleSheet, | |
| Text, |
| var React = require('react'); | |
| var App = React.createClass({ | |
| getInitialState: function() { | |
| return { members: [] }; | |
| }, | |
| onClick: function() { | |
| this.setState({ | |
| members: ['黄前久美子', '加藤葉月', '川島緑輝', '高坂麗奈'] | |
| }); |
| var Rx = require('rx'); | |
| var stream1 = Rx.Observable.from(['a', 'b', 'c']); | |
| var stream2 = Rx.Observable.from([1, 2, 3]); | |
| var combined = stream1.combineLatest(stream2, function (x, y) { | |
| return x + y; | |
| }); | |
| combined.subscribe(function (v) { |
海岸沿いの小さな村に、MBAをもつアメリカのコンサルタントが訪れた。 あるネットゲーマーの画面を見ると活きのいいキャラが育っている。
コンサルタントは聞いた。
「いいキャラですね。レベルカンストにはどのくらいの時間かかるのですか?」 「そうだな、1,000時間ってとこだな。」
「まだ日は高いのに、こんなに早くログインしてどうするのですか?」