javascript async and await

I scratched my head for awhile when switching from promises to await/async. Hopefully this post helps you not need to scratch yours! šŸ˜€ Async/await is the same as using promises. Itā€™s just syntactical sugar to make it look synchronous. The javascript engine sees the ā€œawaitā€…

git text graph

Iā€™ve been looking for a really good command for making a textual graph of my repo, showing the various branches, where they come from, etc. The reason I like this one is that itā€™s not only a graph, but it shows the branch names like…

SOAP vs REST

I was recently asked the question about the conditions under which I would chooseĀ SOAP vs REST for writing a Web Service. Ā I was thoroughly intrigued by the question, because I was curious in which way the discussion would go, as that would tell me a…