Related Posts
How to edit the same word/token in multiple places using Sublime Text
1. Double click on the word/variable/token 2. Press Ctrl+Cmd+G 3. start editing, it will edit all the ocurrences of the same token within the same file. 4. When you are done, you can click anywhere, or press Ctrl+Cmd+G again to finish the simultaneous edits.
How to use environment variables in your Eclipse project Run Configuration
Say you have some environment variables that you’d love to use as arguments of an executable in your project. 1. Go to “Run Configurations” 2. Click on the “Environment” tab. 3. Click the “Select” button. 4. A list with all of your environment variables will be shown. Choose the environment variables you need for this […]
ubuntu/debian abort: error: _ssl.c:504: error:14090086:SSL [FIXED]
Trying to clone or update a repo, and you get this error? [bash] hg pull -u abort: error: _ssl.c:504: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed [/bash] Quick fix, go to .hgrc and put this on your [web] section [bash] [web] cacerts= [/bash] Fixed, remember to leave a tip if you wasted hours on this and I just […]