A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| This file contains any messages produced by compilers while | |
| running configure, to aid debugging if configure makes a mistake. | |
| It was created by configure, which was | |
| generated by GNU Autoconf 2.69. Invocation command line was | |
| $ auto/configure --with-features=huge --enable-multibyte --with-macarchs=x86_64 --enable-perlinterp --enable-rubyinterp --enable-tclinterp --with-tlib=ncurses --with-compiledby=Homebrew --with-local-dir=/usr/local --enable-cscope --enable-luainterp --with-lua-prefix=/usr/local --enable-luainterp --with-lua-prefix=/usr/local --with-luajit --enable-python3interp --srcdir=. --cache-file=auto/config.cache | |
| ## --------- ## | |
| ## Platform. ## |
| ---- Minecraft Crash Report ---- | |
| // Daisy, daisy... | |
| Time: 6/3/15 2:08 PM | |
| Description: Unexpected error | |
| java.lang.IllegalArgumentException | |
| at java.util.PriorityQueue.<init>(PriorityQueue.java:167) | |
| at net.minecraft.client.renderer.Tessellator.func_147564_a(Tessellator.java:160) | |
| at net.minecraft.client.renderer.WorldRenderer.func_147891_a(WorldRenderer.java:248) |
| ---- Minecraft Crash Report ---- | |
| // Surprise! Haha. Well, this is awkward. | |
| Time: 6/7/15 6:28 PM | |
| Description: There was a severe problem during mod loading that has caused the game to fail | |
| net.minecraftforge.fml.common.LoaderException: java.lang.InstantiationException: com.github.dimitriye98.prettyplants.PrettyPlants | |
| at net.minecraftforge.fml.common.LoadController.transition(LoadController.java:163) | |
| at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:517) | |
| at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:213) |
| package com.github.dimitriye98.prettyplants | |
| import net.minecraftforge.fml.common.event.FMLInitializationEvent | |
| import net.minecraftforge.fml.common.event.FMLPreInitializationEvent | |
| import net.minecraftforge.fml.common.Mod.EventHandler | |
| import net.minecraftforge.fml.common.Mod | |
| /** | |
| * @author Dimitriye98 | |
| */ |
| #!/bin/bash | |
| if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then echo "\ | |
| appify v3.0.1 for Mac OS X - http://mths.be/appify | |
| Creates the simplest possible Mac app from a shell script. | |
| Appify takes a shell script as its first argument: | |
| `basename "$0"` my-script.sh |
| -------------- | |
| -- JSON Lib -- | |
| -------------- | |
| -- JSON4Lua: JSON encoding / decoding support for the Lua language. | |
| -- json Module. | |
| -- Author: Craig Mason-Jones | |
| -- Homepage: http://json.luaforge.net/ | |
| -- Version: 0.9.40 | |
| -- This module is released under the MIT License (MIT). |
| local component = require("component") | |
| local computer = require("computer") | |
| local event = require("event") | |
| local fs = require("filesystem") | |
| local process = require("process") | |
| local shell = require("shell") | |
| local term = require("term") | |
| local text = require("text") | |
| local unicode = require("unicode") |
| #!/bin/sh | |
| # If you have OS X and have UglifyJS installed, this uglifies Marginalize and | |
| # puts the `javascript:` URL into the clipbord. Hoorah! | |
| uglifyjs -c -m -o marginalize.min.js marginalize.js | |
| printf 'javascript:' | cat - marginalize.min.js | pbcopy |
| /* | |
| * Returns the GPIO offset address | |
| * | |
| * ret: the GPIO offset address | |
| */ | |
| .globl GetGPIOAddress | |
| GetGPIOAddress: | |
| ldr r0, =0x3F200000 | |
| mov pc, lr |