Tobias Brandt

Results 223 comments of Tobias Brandt

+1 for adding the explanation in the previous comment to the "List Equivalence" page in the book.

FWIW, my favourite is probably Flavour 1 and I'm not such a fan of Flavour 4 - it just seems harder to read to me (but I'm just speaking as...

@max-sixty The reason there are no `+`s is because of the `addthree` function that was defined higher up ([here](https://github.com/PRQL/prql/issues/819#issuecomment-1364105663)).

I've started a related discussion in #1323 .

> ...but I hesitate to push for it, since possibly table and func are helpful for being very obvious what's being defined, particularly for new users? (I worry that between...

So I quite like the look of ```elm let oldest_employees = ( from employees sort birth_date take 3 ) from oldest_employees ``` But then what about ```elm let oldest_3 =...

In terms of the previous examples, the following works in the current playground ```elm table oldest_employees = ( from employees sort birth_date take 3 ) from oldest_employees ``` but the...

@aljazerzen As per our discussions on Discord my understanding is that actually all of my examples above work now with your latest changes which make the `let` syntax very compelling....

I really like this f-string formatting suggestion and agree that it's the way to go. I've been using the f-strings quite a bit already and was thinking how great it...

I'm familiar with ISO 8601 and e.g. Python has `.isoformat()` methods. I'm not familiar with RFC 2822 and RFC 3339 so I think we would need better names for that....