This file contains hidden or 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
| @ECHO OFF | |
| SETLOCAL EnableDelayedExpansion | |
| REM Insert your conda env here | |
| SET CONDA_ENV=MY_DESIRED_CONDA_ENV | |
| CALL :activate_conda_env | |
| REM Insert your python script here |
This file contains hidden or 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
| # Translates Markdown syntax to Slack, replaces: | |
| # | |
| # - hyphened lists with bullet symbols | |
| # - double bold marker asterisks `**` with single asterisk `*` | |
| # - headers `#` with bold marker asterisks `*` | |
| # | |
| # Run with | |
| # | |
| # python markdown-to-slack.py filename.md | |
| # |
This file contains hidden or 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
| # Win7 Powershell script to resize Minecraft to 1280x720 (HD for fraps youtube capture) | |
| # use by typing the following at a command prompt: | |
| # > PowerShell -ExecutionPolicy Bypass -File minecraft-sethd.ps1 | |
| # refs: | |
| # http://stackoverflow.com/questions/2556872/how-to-set-foreground-window-from-powershell-event-subscriber-action | |
| # http://richardspowershellblog.wordpress.com/2011/07/23/moving-windows/ | |
| # http://www.suite101.com/content/client-area-size-with-movewindow-a17846 |