Skip to content

Instantly share code, notes, and snippets.

@EugeneKay
EugeneKay / README.md
Last active May 17, 2022 17:32
Winode Instructions

NOTE: This Gist concerns the old Linode KVM Beta, NOT the current Manager. Please see linode/docs#501 (comment) for more up-to-date instructions.

You will need:

On the KVM source, run the following to create a VM:

@EugeneKay
EugeneKay / kittens.js
Last active August 29, 2015 14:17
Kitten Clicker
autoPlay = setInterval(function() {
var steamworks = gamePage.bld.get('steamworks');
if ( !steamworks.on) {
return;
}
var catpower = gamePage.resPool.get('manpower');
if (catpower.value / catpower.maxValue > 0.99) {
$("a:contains('Send hunters')").click();
}
var furs = gamePage.resPool.get('furs').value;