Tag: file

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

  • Exporting data as CSV file from web apps (with Golang)

    While you can certainly export data from javascript with two different ways, they both aren’t good solutions. First one doesn’t allow you to name the downloaded file (it’s just download), second is only supported in Chrome, Firefox and latest version of Microsoft Edge (by the time of writing this post). So the only acceptable option…