William Ho

Results 4 issues of William Ho

Given a route with [regex syntax](https://www.playframework.com/documentation/2.4.x/ScalaRouting#Dynamic-parts-with-custom-regular-expressions) like: ``` GET /dice/$countd$sides controllers.Example.getDice(sides: Int, count: Int) ``` when I make a request through the swagger UI, it makes the GET request to...

On the [libraries page](https://www.scala-js.org/libraries/libs.html), the `enableIf` library at the bottom has a [multi-line dep](https://github.com/scala-js/scala-js-website/blob/0baec77e787278e91bd37721eec94d35726069a2/_data/library/scalalibs.yml#L191-L193): ``` scala addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full) libraryDependencies += "com.thoughtworks.enableIf" %% "enableif" % "latest.release"...

Clicked a link on the site today and it redirected the Newscombinator tab to this page: https://dev.to/phishing (the actual article opened in a new tab as expected) More info: https://dev.to/ben/the-targetblank-vulnerability-by-example

Currently it's not possible to do: ``` scala config.as[MyClass] ``` As a workaround, a dummy key has to be used: ``` scala val dummyKey = "dummy-key" config.atKey(dummyKey).as[MyClass](dummyKey) ``` https://github.com/ceedubs/ficus/issues/10#issuecomment-68707348