Dan
Dan
Evidently not. Having the `` in the source results in `render_string` being called twice, and neither call contains the ``. `render_string('The direction '); render_string('\n in which you float. ')`. Changing...
On my machine (Xenial, Python 2.7.12) this seems to only happen if I `import multiprocessing` after I `import triangle`. I'm not sure whether this is the same issue or a...
Still present as of 071b444d0e201ad42789603fc857f66261a4c72c
The classes it can't find are parts of the Kotlin standard library. Since you're not using Kotlin, you'll need to adjust your project's dependencies to include the kotlin standard library...
Here's a sketch of the idea I was talking about in #47, ```kotlin interface NDArrayShape { fun shape(): List } interface NDArrayCursor: NDArrayShape, Collection { val linear: Int val pos:...
The docs are missing this extra dependencies line: ```gradle compile group: "com.kyonifer", name:"koma-plotting", version: "0.12" ``` I got the example to work locally with the following `build.gradle`: ```gradle plugins {...
@tuxor1337 Enter `444444444444` as the account alias on that single-field sign in page to get redirected to the real one.
Faking an "Enter" keypress on the password field is enough to get the desired outcome: ``` passwordField.dispatchEvent(new KeyboardEvent('keydown', { 'key': "Enter", 'code': '\r', 'charCode': 13, 'keyCode': 13, 'which':13, 'bubbles': true,...
It may be worth noting that I _already_ use passff for this by treating the "answers" as separate accounts in my password store. So I have, ``` └── www ├──...
Does your `PythonJavaClass` subclass reliably call `super().__init__`? Because if not, the segfaulting could be #301, which is addressed by PR #299.