Skip to content

Instantly share code, notes, and snippets.

@fluffle
fluffle / opencomputers.zs
Last active January 5, 2019 21:20
CraftTweaker script to GregBlock-ify OpenComputers
// General approach:
// - Use GT intermediates instead of OC intermediates.
// - Shift most intermediate crafting to assembler / circuit assembler.
// - OC Tier 1 ~= MV
// - OC Tier 2 ~= HV
// - OC Tier 3 ~= EV
// - Nuggets -> foil / fine wire; ingots -> plates / wire or cable;
// - (T1) iron -> annealed copper + red alloy
// - (T2) gold -> rose gold + platinum
// - (T3) diamond -> graphene + osmium -- this seems particularly evil ;-)
@fluffle
fluffle / client-test.go
Created February 27, 2015 22:34
Simple GoIRC client that prints the number of users on #go-nuts every 5 seconds. go run client-test.go --logtostderr
package main
import (
"bufio"
"flag"
"fmt"
irc "github.com/fluffle/goirc/client"
"github.com/fluffle/goirc/logging"
"github.com/fluffle/goirc/logging/glog"
"os"