Skip to content

Instantly share code, notes, and snippets.

@Mumberthrax
Mumberthrax / dissenter_bookmarklet.js
Created March 3, 2019 02:58
Bookmarklet to use Dissenter - for using dissenter without a browser extension. copy code into a new bookmark, click bookmark to toggle dissenter comments
javascript:(function(){var frame=document.getElementById("ifrm");if(frame!==null){frame.parentNode.removeChild(frame)}else{var iframe=document.createElement('iframe');iframe.src='https://dissenter.com/discussion/begin?url='+encodeURIComponent(location.href);iframe.style.width="25%";iframe.style.height=window.innerHeight+'px';iframe.style.top="0";iframe.style.right="0";iframe.style.position="fixed";iframe.style.zIndex="9999";iframe.setAttribute('id','ifrm');document.body.appendChild(iframe)}})();
@Mumberthrax
Mumberthrax / togglemining.ahk
Created January 26, 2016 18:38
derpy and simple toggle for auto-click
End::
Send, {SHIFT DOWN}
Send {w down}
MouseClick, left,,,,, D
;return
;Home::
sleep 2800000
MouseClick, left,,,,, U
Send {w up}
@Mumberthrax
Mumberthrax / togglesneak
Last active August 29, 2015 13:56
Toggle Sneak for minecraft
/*
Togglesneak v.1.1
By Mumberthrax
License: cc-by-sa
changelog:
1.0 - herpaderp
1.1 - use left shift key to toggle sneak. Included commented-out option for using left control instead
Known bugs:
@Mumberthrax
Mumberthrax / Unstable
Last active August 29, 2015 13:55
automated unstable ingot crafting with openperipherals' PIM
--[[
Automatic Unstable ingot crafting
by Mumberthrax
license: cc-by-sa
vervion 1.1: fixed a derp up in shovel/wand crafting. forgot an "if"
---------------
-- script to spin turtle around
-- revised - now turtle spins the other way too!
for i= 1,64 do
turtle.turnRight()
end
for i= 1,64 do
turtle.turnLeft()
end
@Mumberthrax
Mumberthrax / minium crafting turtle
Last active April 14, 2020 06:56
Infinite minium crafting turtle - for computercraft
-- use crafty turtle
-- put minium stone in slot 1 (top-left corner)
-- put items to craft anywhere else except slot 3
-- place chest above turtle
turtle.select(3)
for i = 1,64
turtle.craft(1)
turtle.dropUp()
end