Mario Gutierrez

Results 68 comments of Mario Gutierrez

I have a naive MRU algorithm working but it's a bit wonky on the UI side. MRU, by its nature changes changes the order of buffers on-the-fly. So, when I...

I have a project go-godo/godo with many subpackages. `cmd/godo/main.go` looks like this ``` go package main import ( . "github.com/go-godo/godo" "github.com/go-godo/godo/util" ) ``` I expected import rewrites but the source...

`this` in a browser, outside of any context, is usually the DOM window so not a recommended practice You could do something like this ``` config = -> @DATA_SERVER_HOST =...

Trying to decide between django, which has authorization built in and Rails 4. This bug has me worried about choosing Rails. Cancan hasn't been updated in 2 months and Rails...

Try using pointers to `ItemCatalogPart` and `ItemPart`? What you're doing is how we use `dat` in our project. I'll try to find some time later this week if that doesn't...

The reason I haven't merged is there are no tests. I have to write them and I'm really busy these days.

I'm not sure what is going on with glide. It should be that simple. For now please install into your `$GOPATH` per [INSTALL doc](https://github.com/mgutz/dat/blob/v1/INSTALL.md).

logxi, when redirected, will set the log level to ERROR and above. To see all levels ``` LOGXI=* go run your-app.go > log.txt ``` Logxi logs structured JSON without escape...

Not ignoring this. I'm in a bit of time crunch right now.

The logging error is fixed in the next minor release of v2. The logxi logger had a logical error which I've since fixed. I'm concentrating on a release for our...