Results 92 comments of bradrn

I think that what's happening here is that you're trying to draw on the canvas before it is fully loaded. I'm not entirely sure how to fix it though, seeing...

> https://gist.github.com/tek/d427c0fd9f8650892d3c469b63b55175 This looks interesting, but I’m not quite sure what it does. What is `SortedUpdate`, and how does `patchableList` differ from `listHoldWithKey`? > If you’re using reflex-dom you can...

> IIRC the nixpkgs pinned down here had HLS in a different place than more recent nixpkgs. Hmm, in that case do you know where it is? > I think...

I’m using MiKTeX 2021 and this error is still present. The following piece of code (adapted slightly from https://tex.stackexchange.com/a/288451) however fixed it: ``` \makeatletter \def\beamer@framenotesbegin{% at beginning of slide \usebeamercolor[fg]{normal...

I've been looking through this issue and it's occurred to me that most of the discussion here has revolved around importing Java classes and methods only. However, the current `foreign...

@carymrobbins I quite like the `New` typeclass idea! After implementing it as a proof-of-concept it does seem to work, albeit with a slightly different definition: ```hs {-# LANGUAGE MultiParamTypeClasses, ScopedTypeVariables...

Good point about the argument order - I missed that. But Eta doesn't seem to have `TypeApplications` yet...

I've noticed this too; the issue seems to be that _any_ class method doesn't work. Here's some that don't work, given a list `X`: ```python X.pop(0) X.append([1,2,3]) m = X.max()...

> […] it's basically a prototype […] I know I'm getting a bit off-topic here, but I'm just wondering: if this application is a prototype only, then what do you...

Thanks for the reminder! I’ll read through it later today.