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
/* | |
To use: | |
* save this script as migrate.js | |
* fill in the user/pass variables at the top | |
* save the block of json below as package.json right next to it | |
* install node.js from nodejs.org | |
* run 'npm install' from the directory where you saved the files | |
* run 'node migrate.js' | |
* profit |
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
/* | |
A userscript to add keyboard shortcuts to the Instagram timeline: | |
- J or space to go to next image | |
- K to go to previous image | |
- L to toggle like on the current image | |
- N to load new posts | |
*/ | |
$(document.body).keypress(function(event) { | |
// ignore keypresses in comment fields |