Cody A. Taylor

Results 43 comments of Cody A. Taylor

@Mluka I agree removing the `bl` dependency is more clear, but that is not the point of the exercise or question. However, the advantage of `let` vs `var` is nice...

The callback here is called exactly once. Either an error happen or you received your data, not both. You can improve your error handling by checking the [`code`](https://nodejs.org/dist/latest-v6.x/docs/api/errors.html#errors_error_code) property. For...

> I don't think this is a good solution - even if the proxy provided the needed header information, the links in a serve-index directory listing could break if the...

Why `--amend` at all? Just `git reset HEAD^` before you start working. I mean, what disadvantage would there be?

Commit messages are intended to be be short and easy to remember. More often than not your commit message changes anyway. If your commits are really large enough to justify...

You could also bind `git diff --staged` for this purpose.

I do `git rebase -i HEAD~2` on the command line. While tig is great, it's workflow is simple. If you want a direct feature of git, use git. For the...

@Avinash-Bhat I've stumbled across another option. After doing `git reset --soft` you will have an `ORIG_HEAD` pointer that keeps the commits you just reset. You can use that like `git...

I've been trying to re-create this failure with no luck. Tried on two different physical machines. One a very beefy System76 machine. The other an aging HP machine. On the...

> What about standardized track configuration files Use docker images or project templates? > suggestions for tools / IDE extensions This is the exact reason I love devcontainers. Both tools...