Skip to content

Instantly share code, notes, and snippets.

@seriallos
seriallos / stairs.lua
Last active December 12, 2015 02:38
[ComputerCraft] Stair Digger
--[[
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/
@seriallos
seriallos / redwood.lua
Created February 3, 2013 01:05
[ComputerCraft] Redwood Lumberjack
--[[
Redwood chopper
Place at the base of a redwood tree and let 'er rip
--]]
turtle.refuel(1)
@seriallos
seriallos / gist.lua
Created February 5, 2013 03:42
ComputerCraft program to download gists as programs. Yo dawg.
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]
@seriallos
seriallos / zombie-test output
Created April 14, 2013 18:53
ZombieJS Event Behavior Questions
$ 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
@seriallos
seriallos / 1: login.coffee
Last active December 16, 2015 14:38
Playing around with ZombieJS and Mocha
Browser = require 'zombie'
assert = require 'assert'
getBrowser = () ->
browser = new Browser()
browser.site = "https://www.infinitecrisis.com"
return browser
describe "login", () ->
before () ->
@seriallos
seriallos / quadruped.monstertype
Created January 3, 2014 03:12
Starbound UUID Logging
{
"__merge": [],
"baseParameters": {
"scripts": [ "/scripts/uuidlog.lua" ]
}
}
@seriallos
seriallos / Ishtar
Last active August 29, 2015 14:07
Low Sec Explo
[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
@seriallos
seriallos / 1 - The Numbers
Last active September 26, 2018 01:58
PVE Fits - Ishtar vs Prot
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
[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
@seriallos
seriallos / eve-prices.coffee
Created January 22, 2015 23:18
Hubot script for EVE item prices (CREST and Eve-Central)
# Description:
# Interacts with the Eve Central API
#
# Commands:
# hubot price( ?check)? <item> - Returns average price for item.
#
# Dependencies
# lodash
# request
# numeral