Skip to content

Instantly share code, notes, and snippets.

View xarses's full-sized avatar

Andrew Woodward xarses

  • San Francisco, Bay Area, CA
View GitHub Profile
[22:41:43] [Server thread/WARN] [OpenComputers/]: A component of type 'li.cil.oc.common.tileentity.Adapter' threw an error while being connected to the component network.
java.lang.NoClassDefFoundError: cofh/api/tileentity/IEnergyInfo
at li.cil.oc.integration.cofh.tileentity.DriverEnergyInfo.getTileEntityClass(DriverEnergyInfo.java:15) ~[DriverEnergyInfo.class:?]
at li.cil.oc.api.prefab.DriverTileEntity.worksWith(DriverTileEntity.java:11) ~[DriverTileEntity.class:?]
at li.cil.oc.server.driver.Registry$$anonfun$2.apply(Registry.scala:70) ~[Registry$$anonfun$2.class:?]
at li.cil.oc.server.driver.Registry$$anonfun$2.apply(Registry.scala:70) ~[Registry$$anonfun$2.class:?]
at scala.collection.TraversableLike$$anonfun$filterImpl$1.apply(TraversableLike.scala:259) ~[TraversableLike$$anonfun$filterImpl$1.class:?]
at scala.collection.mutable.ResizableArray$class.foreach(ResizableArray.scala:59) ~[ResizableArray$class.class:?]
at scala.collection.mutable.ArrayBuffer.foreach(ArrayBuffer.scala:48) ~[ArrayBuffer.cl
cofh/
cofh/api/
cofh/api/block/
cofh/api/block/IBlockAppearance.class
cofh/api/block/IBlockConfigGui.class
cofh/api/block/IBlockDebug.class
cofh/api/block/IBlockInfo.class
cofh/api/block/IDismantleable.class
cofh/api/block/package-info.class
cofh/api/CoFHAPIProps.class
./1.7.10-SpaceCore-0.7.14.jar
./1.7.10-Useful_Pets-1.3.jar
./AppleCore-mc1.7.10-1.1.0.jar
./BiblioCraft[v1.10.6][MC1.7.10].jar
./buildcraft-7.1.14.jar
./buildcraft-compat-7.1.3.jar
./Carpenter's Blocks v3.3.7 DEV - MC 1.7.10.jar
./CodeChickenCore-1.7.10-1.0.7.46-universal.jar
./EnchantingPlus-1.7.10-3.0.2-d.jar
./extrautilities-1.2.6.jar
[13:55:57] [Server thread/INFO] [fml.ModTracker]: This world was saved with mod Magneticraft version 0.3.3 and it is now at version 0.5.1, things may not work well
[13:55:57] [Server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:heat_resitence
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:item.pebbles_iron
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:item.pebbles_uranium
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:item.rubble_aluminium
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:item.rubble_zinc
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:item.chunk_mithril
[13:55:57] [Server thread/INFO] [FML]: Found a missing id from the world Magneticraft:item.chunk_copper
[13:55:57] [Server threa
@xarses
xarses / inject-kilo.sh
Last active February 12, 2016 23:13
script to quickly inject 9-kilo into fuel
#!/bin/bash
yum install -y git rubygem-librarian-puppet-simple patch
cd /etc/puppet/liberty-9.0
mv modules modules-l
git clone https://github.com/xarses/fuel-library -b 9-Kilo
ln -s fuel-library/deployment/puppet modules
cd fuel-library/deployment
@xarses
xarses / basic password field, with generator
Last active February 24, 2016 16:37
using a generator to seed the default value of an attribute
https://github.com/openstack/fuel-web/blob/master/nailgun/nailgun/fixtures/openstack.yaml#L750-l753
password:
value:
generator: "password"
type: "password"
@xarses
xarses / patch.patch
Created February 24, 2016 18:48
Hacking fuel-web/nailgun/nailgun/fixtures/openstack.yaml for fun
From f4bb672bfc64bacaa7fe19bdefaa22c3010dca35 Mon Sep 17 00:00:00 2001
From: Andrew Woodward <awoodward@mirantis.com>
Date: Wed, 17 Feb 2016 11:51:38 -0800
Subject: [PATCH] Add Kilo and Liberty Releases
Change-Id: I48f8a712801e5c73056b634946c9b36ae1d942c1
---
nailgun/nailgun/fixtures/openstack.yaml | 154 +++++++++++++++++++++++++++++++-
1 file changed, 153 insertions(+), 1 deletion(-)
#!/bin/bash
DEST="../../openstack_tasks/examples/"
git review -d 283332
git checkout master
git branch -D bp/fuel-openstack-tasks
git checkout -b bp/fuel-openstack-tasks || exit
git checkout review/andrew_woodward/bp/fuel-openstack-tasks -- ../../../Puppetfile ../../openstack_tasks/Puppetfile ../../../update_modules.sh
if [[ -n "$1" ]] ; then
export ISO_PATH=$1
else
export ISO_PATH=/home/andreww/iso/fuel-4.1-235-2014-03-05_07-31-01.iso
fi
if [[ -z "$ENV_NAME" ]] ; then
export ENV_NAME=xarses
fi
function set(screen)
local addr = screen.address or component.screen.address
return function (...)
gpu.bind(addr)
return gpu.set(...)
end
end
gpu1 = set(screen1)
gpu2 = set(screen2)