Dylan Meeus

Results 20 issues of Dylan Meeus

Create a seperate repository for examples, so that people can add cool snippets of their code to the repo. (A collection of examples + tutorials etc?)

exploratory

Define a Numbers type which is equal to `math/big` in Go for arbitrary precision numbers.

exploratory

Figure out if this is something we could use: https://eleni.blog/2019/05/11/parallel-test-execution-in-go/

exploratory

The transpose function transposes the rows and columns of its argument. For example, >>> transpose [[1,2,3],[4,5,6]] [[1,4],[2,5],[3,6]] If some of the rows are shorter than the following rows, their elements...

```haskell sortBy :: (a -> a -> Ordering) -> [a] -> [a]` sortBy (\(a,_) (b,_) -> compare a b) [(2, "world"), (4, "!"), (1, "Hello")] [(1,"Hello"),(2,"world"),(4,"!")] ```

Reverse of Zip()

Zip two slices. Creates a pair. (We might want to introduce a "Pair" struct?

Hey! Thanks for the work on this theme, it looks amazing. Just one thing I was wondering about, is it possible to visualize the categories anywhere in the sidebar? So...

Hi, I'm trying to model this request with this library: ``` curl --request POST \ --url https://api.notion.com/v1/databases/$DATABASE_ID/query \ --header 'Authorization: Bearer $TOKEN' \ --header 'Content-Type: application/json' \ --header 'Notion-Version: 2021-05-13'...