© 2022 Hashnode
#debugging
Switching to a new debugger and potentially changing your debugging process could be scary. So I hope this post can help you get familiar with ruby/debug and make the migration smoother. (In the rest of the article, I'll use debug to refer …
Introduction As a Javascript Developer, we used the console.log() method a lot of times to display the result of your code. Now, think that you are writing some Js code and it doesn't work correctly. …
Do you know Ruby's official debugger ruby/debug provides out-of-box integration with VSCode? If you haven't tried it yet or having difficulty making it work, I hope this short post will help you set it up. Basic Setup Install the VSCode rd…
I have a confession: I'm addicted to Wordle. Especially now that it's out of style and people don't post about it. I love that it's short, I can solve one word and then it's gone. I don't feel too bad…
During my studies for the course JavaScript Algorithms and Data Structures I had to write a bunch of console.logs to check my code when my buddy, expert in IT, enlightened me to use internal debugging…
Java 9 was all about modules. It was the big change and also the most problematic change. It sucked the air out of every other feature that shipped as part of that release. Unfortunately, one victim o…
Observability is now the key tool because of the complex systems, hybrid infrastructure, and microservices architecture. To trace what happens in production and proactively take action against those before user get affected observability to…
When tracking a bug we need to take a two pronged approach. Similar to tongs that wrap the buggy module from both sides and squeezes to find the problematic part. Up until now we discussed tools that …
A couple of quick ways of debugging your .NET DevOps pipeline that you may find useful: Task Parameters A handy debug idea is to look at the docs for the tasks in your pipeline, and add to their argum…
In this series I cover a lot of magical tools and git bisect is probably the best example of such magic. The hardest part in debugging is knowing the general area of the bug, bisect literally shines a…