Skip to content

Instantly share code, notes, and snippets.

View cmoates's full-sized avatar

Chris Moates cmoates

View GitHub Profile
@cmoates
cmoates / fissilefuel.sfml
Created October 8, 2025 01:52
Fissile Fuel using AE2 to store chemicals
Name "Fissile Fuel?"
Every Tick Do
Input fe:: From PowerSource Bottom Side
Output fe:: To NeedsPower Top Side
Output fe:: To NeedsPower West Side
End
Every 20 Ticks Do
Input sulfur From Interface
@cmoates
cmoates / colorbynumbers.py
Created April 2, 2019 14:46
Add the color ID of Boundless palette colors to the color description for in game sorting ease
#!/usr/bin/python
import json
newdata={}
with open('english.json') as json_file:
data = json.load(json_file)
for key, value in data.iteritems():
if key.startswith('GUI_PALETTECOLOR_'):
number = key.split('_', 2)