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
--[[ | |
Automated stair digger | |
- Digs down DIG_DEPTH amount | |
- Each stairs has a height of STAIR_HEIGHT | |
- The top of every other stair will have a torch | |
_ (If you place torches in inventory slot 2) | |
http://davehendler.com/tracedata/ |
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
--[[ | |
Redwood chopper | |
Place at the base of a redwood tree and let 'er rip | |
--]] | |
turtle.refuel(1) |
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
local tArgs = { ... } | |
if (#tArgs ~= 3) then | |
print( "USAGE: gist get GIST_ID PROGRAM_NAME" ) | |
return | |
end | |
local action = tArgs[1] | |
local gist_id = tArgs[2] |
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
$ coffee zombie-test.coffee | |
:: REQUEST :: | |
requesting http://google.com/ | |
:: REDIRECT :: | |
req.time = 1365965486011 | |
res.time = undefined | |
time to redirect = NaN ms | |
redirecting to http://www.google.com/ | |
:: RESPONSE :: | |
response = 292 ms |
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
Browser = require 'zombie' | |
assert = require 'assert' | |
getBrowser = () -> | |
browser = new Browser() | |
browser.site = "https://www.infinitecrisis.com" | |
return browser | |
describe "login", () -> | |
before () -> |
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
{ | |
"__merge": [], | |
"baseParameters": { | |
"scripts": [ "/scripts/uuidlog.lua" ] | |
} | |
} |
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
[Ishtar, PVE - Sites and Explo] | |
Medium Armor Repairer II | |
Armor EM Hardener II | |
Armor EM Hardener II | |
Armor Thermic Hardener II | |
Armor Thermic Hardener II | |
Cap Recharger II | |
Cap Recharger II | |
Cap Recharger II |
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
Bella's skills | |
Ship | BR Tank | Gun DPS | Drone DPS | Total DPS | Cap | Cost (pyfa) | |
-------------------------------|---------|---------|-----------|-----------|-------|------------- | |
Ishtar - Ogres | 506 | 125 | 536 | 661 | 30.3% | 216M | |
Ishtar - Wardens | 506 | 125 | 333 | 458 | 30.3% | 216M | |
Drone Proteus - 2 MAR - GECKO | 758 | 156 | 508 | 665 | 26.5% | 381M | |
Drone Proteus - 2 MAR - Ogres | 758 | 156 | 514 | 670 | 26.5% | 330M | |
Drone Proteus - 2 MAR - Warden | 758 | 156 | 319 | 476 | 26.5% | 381M | |
Drone Proteus - 1 MAR - Ogre | 464 | 156 | 582 | 738 | 41.2% | 329M |
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
[Ishtar, PVE - Low Sec Explo] | |
Medium Armor Repairer II | |
Medium Armor Repairer II | |
Armor Thermic Hardener II | |
Armor EM Hardener II | |
Drone Damage Amplifier II | |
Cap Recharger II | |
Cap Recharger II |
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
# Description: | |
# Interacts with the Eve Central API | |
# | |
# Commands: | |
# hubot price( ?check)? <item> - Returns average price for item. | |
# | |
# Dependencies | |
# lodash | |
# request | |
# numeral |
OlderNewer