Undo your last git mistake with ugit

Posted on ๐Ÿ“… April 30, 2021

So I have been working on this little tool called ugit (and was finally able to release a stable version), the goal is to make it easier for beginner to intermediate git users to undo their last (accidental) git command. Because we are not perfect and commit mistakes.

Debugging Go in Vim

Posted on ๐Ÿ“… February 8, 2021

Using make in Vim/NeoVim can be a handy utility if you want to quickly build, run & debug programs. The make command is governed by the program set in makeprg.

Embedding static files in Go

Posted on ๐Ÿ“… February 1, 2021

Embedding static files in 2021 has become a bit easier since the release of Go 1.16. The new release comes with a new package embed which provides a handy set of interface and methods to attach static file in go binaries