Ryan Williams

Results 184 comments of Ryan Williams

Making sure I'm following: you've formalized customizable display of both the type and value, piggy-backing on PPrint's existing `TPrint` type-class for the former, and using `cats.Show` for the latter?

Taking a break from this for today; [here's a branch](https://github.com/ryan-williams/tut/tree/amm) with some minimal progress: - Ammonite [`Repl`](https://github.com/ryan-williams/tut/commit/4d7c44d9eb1ff58067cbb8148c71f06f8a6c548b#diff-696aedea3a9d6cc94d6c76c08900705f) copy-pasted from [`TestRepl`](https://github.com/lihaoyi/Ammonite/blob/1.0.5/amm/repl/src/test/scala/ammonite/TestRepl.scala) - [a few tests](https://github.com/ryan-williams/tut/commit/4d7c44d9eb1ff58067cbb8148c71f06f8a6c548b#diff-edaf2444d579a320b87d3ebc9ed54dd3) showing ways to display results using...

really interested in this feature, going to do some digging around ammonite with an eye toward whether a tut integration is possible any more recent context on the state/plausibility of...

I just noticed a link to this example plot on the home page https://dbhub.io/vis/justinclift/Marine%20Litter%20Survey%20%28Keep%20Northern%20Ireland%20Beautiful%29.sqlite that's a good start, not sure how I missed that the first time around

Thanks. Thinking out loud for a second because I may be confused about what I need. My plan is to use Heap in a cats-effect `Ref` and have multiple workers...

I'm seeing the same issue on current HEAD commit https://github.com/rabix/composer/commit/7abdb5e472dcc33b69e40f3c872d6af8bd141244 ``` $ node --version v11.6.0 $ yarn --version 1.21.1 ``` Chrome 79.0.3945.130. ![image](https://user-images.githubusercontent.com/465045/73887385-6ac73f80-4839-11ea-9939-562e2b3314bb.png) ## `yarn install` output ``` yarn install...

Seeing this in [almond](https://almond.sh/) jupyter notebooks ([example](https://nbviewer.jupyter.org/gist/ryan-williams/ed3805e7bc06023ff672470143ea773c)). `scala.sys.process` can run `ls`: ```scala import scala.sys.process._ "ls" lineStream // Stream("tty-err.ipynb") ``` Ammonite fails: ```scala import ammonite.ops.ImplicitWd.implicitCwd ammonite.ops.ls! // sh: /dev/tty: Device not...

@dispalt interesting, thanks, but my example is running directly on my macbook, no container involved.

I'm seeing this behavior in 0.1.7. ```scala abstract class Foo(implicit val name: sourcecode.Name) { override val toString: String = name.value } val x = new Foo {} // x: Foo...

Cool, I was kind of imagining that this would be considered a "breaking change" and not really feasible, but I if there were explicitly no guarantees about return codes previously,...