Edy Silva

I own a computer

  • Two’s Complement trick revealed

    · 8 min read · by Edy Silva

    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

    · 15 min read · by Edy Silva

    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

    · 6 min read · by Edy Silva

    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

    · 8 min read · by Edy Silva

    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

    · 7 min read · by Edy Silva

    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.…