git clone https://gist.github.com/ishu3101/6fb35afd237e42ef25f9
mv 6fb35afd237e42ef25f9 ConvertTo-Markdown
cd ConvertTo-Markdown
| // ==UserScript== | |
| // @name Evolve | |
| // @namespace http://tampermonkey.net/ | |
| // @version 3.3.1.147 | |
| // @description try to take over the world! | |
| // @downloadURL https://github.com/Vollch/Evolve-Automation/raw/master/evolve_automation.user.js | |
| // @updateURL https://github.com/Vollch/Evolve-Automation/raw/master/evolve_automation.meta.js | |
| // @author Fafnir | |
| // @author TMVictor | |
| // @author Vollch |
having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html, .js etc.) in a browser via http://.
if you're not sure whether or not you have a web server running, no problem! its easy to confirm.
| Add to the command line using --modListFile <path to json file> | |
| The above will search for files | |
| /home/cpw/minecraft/modrepo/cpw/mods/ironchest/1.7.10-6.0.41.729/ironchest-1.7.10-6.0.41.729-universal.jar | |
| /home/cpw/minecraft/modrepo/my/fun/mod/219.20/isfun-219.20.jar | |
| Yes, this is restrictive. This is deliberate. | |
| A secondary option allows arbitrary modfile loading using the --modFile argument. Those files are comma separated. |
| # Signal catching | |
| def shut_down | |
| puts "\nShutting down gracefully..." | |
| sleep 1 | |
| end | |
| puts "I have PID #{Process.pid}" | |
| # Trap ^C | |
| Signal.trap("INT") { |