This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#IfWinActive ahk_exe rstudio.exe | |
Capslock::Esc | |
+Capslock::Capslock | |
#IfWinActive ahk_exe gvim.exe | |
Capslock::Esc | |
+Capslock::Capslock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://feedly.com/i/latest | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Anaconda] | |
"Icon"="%USERPROFILE%\\Anaconda3\\Menu\\Iconleak-Atrous-Console.ico" | |
@="Open Anaconda Prompt here" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Anaconda\command] | |
@="C:\\Users\\bdforbes\\Anaconda3\\pythonw.exe C:\\Users\\bdforbes\\Anaconda3\\cwp2.py C:\\Users\\bdforbes\\Anaconda3 \"%V \" cmd.exe \"/K\" C:\\Users\\bdforbes\\Anaconda3\\Scripts\\activate.bat C:\\Users\\bdforbes\\Anaconda3" | |
[HKEY_CLASSES_ROOT\Directory\shell\Anaconda] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this script is used on windows to wrap shortcuts so that they are executed within an environment | |
# It only sets the appropriate prefix PATH entries - it does not actually activate environments | |
import os | |
import sys | |
import subprocess | |
from os.path import join, pathsep | |
from menuinst.knownfolders import FOLDERID, get_folder_path, PathNotFoundException |