Results 45 issues of Geoffrey Hing

There are often cases where multiple reporters, with different skillsets, will be working on analysis in parallel. Often the common language is a SQL database. It would be cool to...

enhancement

The parse function passed as options to methods like `loadCSV()` [only get called on non-null values](https://github.com/uwdata/arquero/blob/7e747dbcc082ca75044568753d8cabce9d4b379a/src/format/from-text-rows.js#L36). I learned this when parsing data exported from a system that represents values from...

JavaScript now supports [underscores as separators in numeric literals](https://github.com/tc39/proposal-numeric-separator), however, Arquero table expressions do not support this. Replication code: ``` let dt = aq.table({ 'col1': [1_000, 2_001, 3_123], }); dt...

I'm trying to run libcompose to start some Docker containers in some Go integration tests. Here's the `TestMain` function that uses libcompose to set up and tear down the containers:...

I implemented this for a project. Not sure if you want to pull this into the trunk, but I thought I'd share. https://github.com/ghing/pixel-pong/tree/csv_export Caveat: I wasn't sure how to abstract...

This is a proposal for a way to update metadata in the dashboard when something happens in the core environment. The use case that motivated this is @zstumgoren's idea of...

enhancement

In order to implement https://github.com/openelections/openelections.github.io/issues/22, we need to update `State.status_entry()` to output separate entries for metadata volunteers and dev volunteers.

enhancement

@SaraSchnadt pointed out that in her proofing, some elections have multiple relavant direct links and that it's nice to be able to describe them. Because of the way we parse...

enhancement

Posting to this endpoint would update the value of the `{reporting_level}_status` fields. The benefit of this would be being able to automatically update the status to "Baked Raw" or "Baked"...

enhancement

While the original use case didn't want to consider how to download and unpack the XML results, I think it will make it a lot easier for volunteers to deal...

enhancement