Alex Miller

Results 13 issues of Alex Miller

Suppose I have the following `example.toml` file: ``` foo = 1 bar = 2 ``` After parsing this, I'd like to be able to print an error message like: ```...

Once a simulation framework exists, then next question is what to do with it. FoundationDB coupled the randomized fault injection with specification based testing to obtain a high level of...

Given a full simulation framework with random fault injection, it's still difficult/unlikely to recreate dangerous situations in the system under test. For example, given random packet/network failures, what's the chance...

I was trying to see if I could abstract out the group by keys into a function, and broke the compiler instead. The following query in the playground: ``` func...

error-messages

I was playing with trying to translate a SQL query to PRQL, and hit an error: > "Cannot lower to IR expr: `Expr { id: Some(137), kind: List([Expr { id:...

bug
compiler

IO frameworks in OCaml outside of stdlib seem to be increasingly offering their read/write functions as ones that return or accept a Bigarray.Array1.t (wrapped as either Lwt_bytes.t, Core.Bigstring.t, etc.). There...

``` $ rbenv versions system * 2.7.1 (set by /home/thisismiller/.rbenv/version) ``` ``` $ ltap --help Traceback (most recent call last): 5: from /home/thisismiller/.rbenv/versions/2.7.1/bin/ltap:23:in `' 4: from /home/thisismiller/.rbenv/versions/2.7.1/bin/ltap:23:in `load' 3: from...

I found myself getting annoyed that I'd be focused on working on something, and would have to keep restarting a pomodoro on the same task. So I made some changes...

This will probably involve fixing some python 3.10-isms?

https://packaging.python.org/en/latest/tutorials/packaging-projects/ https://scikit-hep.org/developer/pep621 Which apparently means I need to make a decision between: [Hatch](https://ofek.dev/hatch/latest/), [PDM](https://pdm.fming.dev/), [Flit](https://flit.readthedocs.io/), [Trampolim](https://github.com/FFY00/trampolim), [Whey](https://whey.readthedocs.io/), and [Setuptools](https://setuptools.readthedocs.io/), which seems overwhelming.