Two’s Complement trick revealed
In my last post I made a promise. We talked about IEEE 754 Standard and some other things. One thing we talked about was Two's Complement. We used that as…
Be cool. Don’t use float/double for storing monetary values
What you're looking for You saw that joke telling that JavaScript doesn't know math because of the expression below. 0.1 + 0.2 === 0.3 This expression will result in false.…
Improve Your Workflow with Git Worktrees
In our last post about git, we discussed the git-stash command. We thought of a situation where we get interrupted to work on more urgent stuff, which is quite common…
Mastering Git workflow – Part 1/2
Hi guys. In today's post, will talk about git. At this point, you probably already know that all the usual commands (e.g git-add, git-checkout, git-commit) are enough for you. With…
How to use dynamic Components in Vue
Hi guys, in today's post I want to share an interesting scenario about using dynamic components with you. Imagine this situation where you have a search feature in your application.…