by shigemk2

当面は技術的なことしか書かない

2016-01-13から1日間の記事一覧

Scala 継承メモ

Gitterより。 gitter.im traitは具象クラスも抽象クラスも継承できる。 scala> class Hoge; trait Fuga extends Hoge; new Fuga() {} defined class Hoge defined trait Fuga res2: Hoge with Fuga = $anon$1@61443d8f scala> sealed abstract class Hoge; t…

spray issue 935

github.com importのリストのドキュメントが欲しい。

peco pr 288

Go

github.com ctrl + spaceの存在意義。

cpコマンドで特定のディレクトリを除外してコピーしたい

stackoverflow.com cpにignoreオプションはないようなので、rsyncで代用したら?という回答を得られる。 rsync -av --progress sourcefolder /destinationfolder --exclude thefoldertoexclude