Carlana

Results 38 issues of Carlana

Resolves #1.

The current font maps characters to the same byte as they were in CP 437. It would be nice to have a Unicode version as well.

From the README, to capture stderr, you need to do: > `$/etc/myapp/bin 2>&1 | funnel` What if instead you could do: `funnel -cmd '/etc/myapp/bin'`? Then it could capture all stdout...

Very cool! I like this a lot. I wrote [my own router](https://github.com/carlmjohnson/rootdown) which is also a sort of stripped down take on Chi/Way/httprouter. It's interesting to see more versions of...

I wrote an HTTP library for Go called requests. The standard GET example.com looks like this with requests: ```go package main import ( "context" "fmt" "log" "github.com/carlmjohnson/requests" ) func main()...

requested generator

The data set I'm working with contains someone whose last name is 'Null'. This ends up being an empty value in my SQLite database. It seems like there should be...