bwbecker

Results 23 issues of bwbecker

When I use TableSorter on a page with `Content-Security-Policy:default-src 'self'` Chrome throws an error on the Javascript console: Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is...

Hi -- Just getting acquainted with jsoniter. Looks like a lovely library; thanks for the efforts. However (you knew that was coming, right?), I wish there were more options for...

question

### Play JSON Version (2.5.x / etc) 2.10.4 ### API (Scala / Java / Neither / Both) Scala ### Operating System (Ubuntu 15.10 / MacOS 10.10 / Windows 10) MacOS...

Continuing to debug #193, this may be related: In an otherwise empty directory, create `build.sbt`, `project/plugins.sbt` and `project/build.properties` with the following contents: ``` # Show directory contents bwbecker@bwbmac sbtDebug %...

I'm in the process of updating dependencies for my play+scala.js project and ran into an issue with sbt-web-scalajs. I updated from v 1.1.0 to 1.3.0 and my compiles started failing:...

### Anorm Version (2.5.x / etc) 2.7.0 ### Operating System (Ubuntu 15.10 / MacOS 10.10 / Windows 10) MacOS 14.2.1 Darwin bwbmac.cs.uwaterloo.ca 23.2.0 Darwin Kernel Version 23.2.0: Wed Nov 15...

I think fastparse would benefit by explicitly handling errors found in `.map`. For an example, refer to the [Math example parser in the fastparse documentation](https://com-lihaoyi.github.io/fastparse/#ExampleParsers). In the interactive example at...

`sbt-less` and `lessc` are producing different output. In particular, `lessc` (v4.2.0) compiles ``` top: calc(-@li-vspace + @icon-size / 2 - 5px); ``` to ``` top: calc(-1.7rem + 2rem / 2...

I'm trying to migrate a project which uses ficus to Scala3. I'm getting a compile-time error: ``` [error] -- [E008] Not Found Error: /Users/bwbecker/uw/cs135/scala/lintR/src/main/scala/cs135/config/Config.scala:9:33 [error] 9 |import net.ceedubs.ficus.readers.ArbitraryTypeReader._ [error] |...

The following tests yield my expected results: ``` test("utest bug v1") { test("0") { 1 ==> 1 "one" } test("1") { 2 ==> 2 "two" } } ``` that is,...