by shigemk2

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

2015-12-16から1日間の記事一覧

Refused to display in a frame because it set X-Frame-Options to DENY

web

developer.mozilla.org つまりどういうことかというと、こういうHTMLがあったとして、 gist.github.com iframeのなかのリンクをクリックしようとすると、タイトルのようなエラーになるっていう話。 この動作がなぜダメかというと、IPAや徳丸先生が詳細に説明…

collectというか、パターンマッチの謎挙動

scala> val apple = "apple" apple: String = apple scala> val Apple = "Apple" Apple: String = Apple scala> Seq("apple", "orange").collect {case apple => "got an apple" } res0: Seq[String] = List(got an apple, got an apple) scala> Seq("apple"…

Uniform access principle

All services offered by a module should be available through a uniform notation, which does not betray whether they are implemented through storage or through computation Uniform access principle - Wikipedia, the free encyclopedia と訳され…