Sphereとともに

scalaとかplayframeworkとか。技術ブログにしたいなと。環境は Windows7x64, mac です。たまに声優さん情報が混ざります。最近ちょっとClojure触りました。

2016-03-01から1ヶ月間の記事一覧

面白そうなサービス

www.value-press.com

Applicant Tracking System (ATS) とは

個人メモ ATSとは? 人材採用のための道具である。 経験や直感による採用はもう古い、人材採用に広がるデータ・ドリブンなアプローチ | TechCrunch Japan なぜATSが必要か 企業によっては一日に幾つもの面談をして合計何百人という人たちを管理しなければな…

Redux ちょっとわかってきたこと

reducer と action の関係 actionはどういう挙動がありますよーっていう定義。 reducerはその定義に対して実際どういう動きしますよーっていう実際の処理を記述する。 だからreducerはstoreとactionを引数に受け取って新たなstateを返す関数となる。 (reduce…

Redux Dispatching Function 超適当訳

Dispatching Function A dispatching function (or simply dispatch function) is a function that accepts an action or an async action; it then may or may not dispatch one or more actions to the store. ディスパッチング関数は action か 非同期 ac…

Redux 超適当訳

Dispatching Function A dispatching function (or simply dispatch function) is a function that accepts an action or an async action; it then may or may not dispatch one or more actions to the store. ディスパッチング関数は action か 非同期 ac…

Redux Reducer 超適当訳

Reducer Glossary | Redux A reducer (also called a reducing function) is a function that accepts an accumulation and a value and returns a new accumulation. They are used to reduce a collection of values down to a single value. reducer とは…

React Redux createStore 適当訳

createStore(reducer, [initialState], [enhancer]) createStore | Redux reducer (Function): A reducing function that returns the next state tree, given the current state tree and an action to handle. reducer とは state を返す 関数で 現在のsta…