Ever needed a quick #httpServer to serve up some local files?
I always use the basic python built-in module (http.server), but it has a few limitations like not being able to turn off CORS protection.
But I just found this project, which supports that and also has a few cool features like rendering markdown files and basic HTTP auth.
#httpserver #http #developerstoolbox #developers
While we all know it is best to finish one thing before starting the next, at one point you find yourself with a dirty worktree, working on four different issues.
While branching is one solution, it is not the only one, and does not take care of untracked files.
Let me introduce you to a special tool for special occasions...
https://jugmac00.github.io/blog/the-git-worktree-command/
#git #workflow #developerstoolbox