-
```
What steps will reproduce the problem?
1. ./collide
What is the expected output? What do you see instead?
I see this:
./lib/vertx/bin/vertx: 40: [: run: unexpected operator
./lib/vertx/bin/vertx:…
-
For use with smooth progress bar gradients.
Rough idea: Use metamethods such as `__lt` and `__le` to facilitate clean looking syntax
``` lua
gradient = color.gradient '#F00' < 0.5 '#FF0' < 1 '#0F0`
…
-
**Is your feature request related to a problem? Please describe.**
By default, Dart implements reference equality. For value equality, `==` and `hashCode` have to be overridden, and take into accou…
-
Hey! I've been trying TinkStateSharp on some projects to replace my home-made observable state solution that requires manual binding so that the bindings are auto-generated. It works mostly great so f…
-
What follows is all related to Pos and Dim, but are more like ideas and discussion prompts. None of these things are **bugs**, but rather are design details that I think are worth considering. Some ar…
-
The current state of affairs with `Readable` is that dereferencing a `const`-qualified object may return a different type than dereferencing a non-`const`-qualified object. This is a usability nightma…
-
There are lots of places where the code can be cleaned up given some of the changes that have happened over the last year. I'll make this and report back to this ticket as I go.
-
Background: The Parser converts textual source code into atoms, which are then interpreted. The interpreter runs within a runner, which has a runtime state. The question at hand is whether the parse…
-
Take this example code:
```python
x = "a"
reveal_type(x)
assert x in ("a", "b", "c")
reveal_type(x)
y = 20
reveal_type(y)
assert y == 10 or y == 20 or y == 50
reveal_type(y)
```
The c…
-
**Description**
I am working with a copy of the VAERS dataset, converted from CSV to HDF5 with encoding latin1.
Data sanity is not guaranteed in our use case, specifically missing values may exist…