Egon Elbre

Results 186 issues of Egon Elbre

Sometimes it's possible to use fsnotify, which can be much more efficient over polling. Polling does have advantages, because it's more reliable against mounted, remote etc. folders.

When starting some programs using exec.Cmd it will start them as buffering. Which means you don't see the live-output from the program. When you have access to the source, this...

Allow piping files output to file. Possible syntaxes `;>`, `;>>`, `;|`, `;&&`. It needs to be something that is uncommon, but resembles the standard command line. Alternatively, provide a way...

Plot http://sprunge.us/zUrJyN

Instead of grouping by allocation kind, group by stack traces.

Instead of using comments to annotate types, use either function calls or stub interfaces. Either of these could work: ``` type Letter byte var _ enum.Exhaustive = Letter(0) ``` ```...