Greg Edwards
                                            Greg Edwards
                                        
                                    https://michael-f-bryan.github.io/arcs/demo/index.html is returning a 404, and so the page renders blank. By the way, very cool article about ramer douglas peucker.
The implementation.md file helps a bunch. However, is there any explanation of how to write the grammars themselves? You have the examples, but don't really explain what the different symbols...
I've done parsing in Ruby, Java, and C -- I'm pretty new to Haskell (sorry! I know that complicates things) Your offer to help is very kind. I'd be happy...
@connec I missed those related topics! Thanks for pointing them out. Yes, for me, this is the biggest need for interacting with SQL -- I can write SQL myself and...
For Postgres, the below works, and is easy. Maybe this is good enough and nothing else is needed to support INSERTing multiple records, at least for Postgres. ``` let lala...
@shiftrtech I haven't tried it, so I don't know. Let us know what you find out!
Slightly easier (IMHO cleaner) Sql: ``` r#"INSERT INTO foo (description, done) SELECT * FROM UNNEST($1, $2) RETURNING id, description, done"#, ```
Until this is fully supported, you can send an entire json object/list of records, in one insert command and then in the insert query break the json into rows (in...
@riquito and @shekohex given that rusoto is in maintenance mode, and the new AWS library doesn't really support S3 yet, would you recommend forking rusoto or using the `ext` module...