Tag: Code

  • 1 tip for writing more understandable code in JavaScript

    I find JavaScript code more understandable if it’s using functions heavily because when written properly ((They are small and do one thing only.)), they typically convey what they do. That does not mean you should start practicing functional programming at once. You can just start by using utility libraries like lodash or underscore more when…

  • Add Visual Studio Code to context menu in Windows

    By this I mean when you right click on a file or folder, there’s an option in context menu to open it with mentioned editor. To do that, we’ll add couple of keys to Windows registry. Oepn regedit.exe Search for HKEY_CLASSES_ROOT\*\shell There create a new key by right-clicking on shell, select Key and name it…