Skip to content

Instantly share code, notes, and snippets.

@MrEngineer13
MrEngineer13 / coursera_auto-dl.bat
Created August 20, 2013 20:46
Instructions to setup a script to automatically download Coursera course material every day. [For Windows]
:: Step 1: Download and setup the Coursera Downloader from this link - https://github.com/jplehmann/coursera
:: Step 2: Download or copy the contents of this batch file into a file called "coursera_auto-dl.bat"
:: Step 3: Setup automatically running this script every night (or whenever you want).
:: Search for scheduled tasks in the start menu search bar and double click on Scheduled Tasks
:: Click on Create Task then fill out the name and the description to help you remeber later on
:: Next goto the Triggers tab, add a new trigger and set it up to reoccur daily at whatever time you desire (I used 9:00 PM
:: Then goto the Actions tab, add a new action to "Start a program" and under Program/Script use the browse button to select the location where you saved this script (Step 2)
:: Finally click Ok to save the task
:: Not necessary but I like to turn it off so I only get output from Coursera Script
@MrEngineer13
MrEngineer13 / keystroke_sender
Created October 14, 2014 00:38
Takes your "random" keystrokes from what you're working on and sends them to the minimized IE window.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; AutoHotkey script to play pokemon in IE while coding.
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dirs ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Left::
Send {Left}
ControlSend, Internet Explorer_Server1, {Left}, ahk_class IEFrame
return