Skip to content

Instantly share code, notes, and snippets.

View k-hoshina's full-sized avatar

HOSHINA k-hoshina

View GitHub Profile
@k-hoshina
k-hoshina / js-talk.md
Created December 27, 2018 02:40
JS今昔物語

フロントエンドへの要求

  • フロントのリッチ化
    • 高速なUI
    • アニメーション
    • 複雑な構造
  • ネイティブアプリの存在
    • 同様の体験

高速な変化

@k-hoshina
k-hoshina / circleci2-go.md
Last active April 21, 2020 01:27
circleci2.0でおもにgoをCIする

CircleCI2.0でGoをCIする

CircleCI2.0について

  • オープンβ(2017/04/12現在)
  • Native Dockerサポート
  • より自由度の高い設定
  • やたら早い(当社比二倍)

https://circleci.com/docs/2.0/

@k-hoshina
k-hoshina / interface.md
Created January 11, 2017 10:05
interface{}のはなし

interface{}のはなし

goのinterfaceとは

方の定義とか関数の引数(あるいは帰り値)でよく使ってる

type Car interface {
  run(int)
  stop() bool