Codeminer42's Engineering Blog
CodeTips

CodeTips#9: Readable .html.erb files on VSCode
If you’re a front-end developer like me, you’ve probably encountered the challenges of coding with Ruby and .html.erb files. It can be frustrating when your code doesn’t auto-format correctly, or when syntax…
CodeTips#8: SQL Transactions
We live in an era when we are increasingly automating our day-to-day processes. We no longer go to bank agencies, but instead use digital banks that allow us to carry…
CodeTips#7: Spread operator: the slow beauty
For a couple of years now, the JS community has been using the famous spread operator, AKA three dots (...), to copy values in arrays and objects, both on front…
CodeTips#6: Using the Node.js debugger
The usual way to debug a Node.js application is to simply use the console module to inspect variables or objects, which is fast enough to solve small issues. We already…
CodeTips#5: Debugging in Frontend
Hello guys! When we are investigating errors or resolving a bug in our app, we all know the struggle of finding and fixing it. In this post, we will talk…