-
Which one to use and where?
-
The title of this issue is a bit misleading 😁️. Parsing LaTeX is definitively out of scope. However, I believe we should consider LaTeX as an output format. In other words, maybe we should implement a…
-
I keep hearing external complaints about the use of [JWS](https://tools.ietf.org/html/rfc7515) vice [JSON-LD](https://json-ld.org). Hoping to start a discussion here regarding this interop issue.
-
Any guidance on getting this running on Heroku on Rails? I need a service that can convert latex to png via an API, would this be a good engine for that? I'm not really sure how to get it running with…
-
In Eidos, `- 2^2` is 4:
```
$ eidos -2^2
[1] -4
```
or python
```
>>> -2**2
-4
```
... was this a design choice?
I hit this because I had `exp( - (x - x0)^2 )` for a fitness function, …
-
Now that `.op` is generally the vectorized form of `op`, it's very confusing that `.'` means transpose rather than the vectorized form of `'` (adjoint, aka ctranspose). This issue is for discussing al…
-
This issues is very controversial, but it was never really discussed in the past.
I've been thinking more and more about moving out pieces of the standard library to shards. Examples of these are t…
-
Currently, I believe the only operations are for conditions here values are equal. I have use cases where we could benefit to things like greater than / less than operators, or bitwise operators. This…
-
In the following plain `.D` is not equivalent to `.A .D .B`, even though `.A .D .B` evaluates to `.D`:
```
oMiser> (.D "x" "x") ("eq" "neq")
INPUT: ((.D :: ("x" :: "x")) :: ("eq" :: "neq"))
ev (…
-
I thought you were against this:
```
Float x
```
Why not use he universally accepted correct way to do this, namely
```
var x : Float
```
You can leave out the `var` if you want, but you HAVE …