DisposaBoy

Results 98 comments of DisposaBoy

FWIW, I believe the inotify limit is **per user** which means it's shared by all other programs run by the user. ``` [ `sysctl fs.inotify.max_user_watches` | done: 48.58157ms ] fs.inotify.max_user_watches...

FWIW, I've been using go1.10 and gocode with the [autobuild](https://github.com/nsf/gocode#options) option for about a month and haven't noticed any issues. *...but i regularly destroy the `pkg` directory and recompile things...

Your `project001` should be in your `GOPATH` i.e. `/home/user001/gocode/src/project001` not `/home/user001/project001`

I've implemented a badger-based Storage at https://github.com/oyato/certmagic-storage-badger. I'll add it to the wiki once I've deployed it to production. Since I couldn't find any tests for the storage, I've put...

@mholt I've improved the tests to the point where certmagic-storage-badger has 100% test coverage and added a test for FileStorage... but FileStorage is failing for this case for `List`: Store(dir/k1)...

> @DisposaBoy Great, thanks for the update, and the questions! > > > e.g. for Delete it just says Delete deletes key. but it doesn't mention that a non-existent key...

How did you configure it? GoSublime/margo doesn't do much except [call the `goimports` binary](https://github.com/DisposaBoy/GoSublime/blob/development/src/margo.sh/golang/gofmt.go#L44). It should print any errors in the Sublime Text console.

I think I understand what you're saying, but it sounds like what `goimports` already does on its own minus the formatting. I assume you're already running `goimports` when you save...

The config looks fine. Does it fmt at all? Maybe it can't find `goimports` (you have to install it manually). Check the Sublime Text console for errors. Also make sure...

You always have to check for the existence of command by running them through `9o` cmd+9. I thought I could reproduce this with a file that's not in `GOPATH`, but...