Skip to content

Instantly share code, notes, and snippets.

---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.
Time: 4/5/14 11:45 PM
Description: Unexpected error
java.lang.NullPointerException
at codechicken.multipart.asm.ASMMixinCompiler$$anonfun$mixinClasses$3$$anonfun$apply$3.apply(ASMMixinCompiler.scala:325)
at codechicken.multipart.asm.ASMMixinCompiler$$anonfun$mixinClasses$3$$anonfun$apply$3.apply(ASMMixinCompiler.scala:324)
at scala.collection.immutable.List.foreach(List.scala:318)
@Zettt
Zettt / OmniFocus Quarantine Inbox.applescript
Last active August 29, 2015 14:02
Do you also have tons of tasks in your inbox, which you probably never going to do? Well, then this script has been made for you! It creates a new project where it will move all inbox tasks to. After your inbox is clear that new project is set to "dropped" and all that crap is out sight, forever.
tell application "OmniFocus"
tell default document
-- crate quarantined project for tasks to be moved to
-- name in this version is »Quarantined Inbox: YYYY-MM-DD«
-- some other versions provided below, e.g. »Mon: 23. 06. 2015«
--set quarantineDayName to do shell script "date -v +0d +'%a: %d. %m. %Y'"
--set quarantineDayName to do shell script "date -v +0d +'%d. %m. %Y'"
set quarantineDayName to do shell script "date -v +0d +'%Y-%m-%d'"
set quarantineProject to make new project with properties {name:"Quarantined Inbox: " & quarantineDayName}
@Zettt
Zettt / die perfekte rasur.md
Last active August 29, 2015 14:06
Meine Barcamp Stuttgart 7 (2014) Session zum Thema "Die perfekte Rasur". Ihr könnt dieses Markdown direkt mit [Deckset](http://mosx.tv/1st2Qyo) aufmachen, wenn ihr es habt. #bcs7

[fit] Die perfekte Rasur

Andreas Zeitler (@zettt)

gentlebox.de


[fit] Aktueller Stand

@Zettt
Zettt / die perfekte rasur 2.md
Last active August 29, 2015 14:06
Meine Barcamp Stuttgart 7 (2014) Session zum Thema "Die perfekte Rasur". Diese hier sind ohne Bilder, damit man die Speaker Notes besser lesen kann. #bcs7

Die perfekte Rasur

Andreas Zeitler (@zettt)

gentlebox.de


Aktueller Stand

@Zettt
Zettt / So tickt YouTube #mxsw 2014-09-22.md
Last active August 29, 2015 14:07
Meine Präsentation im Original mit Speaker Notes. Folien hier: https://www.slideshare.net/Zettt/so-tickt-you-tube-mxsw-20140922

[fit] So tickt YouTube

Andreas Zeitler, zCasting 3000

@zettt, zcasting3000.com


[fit] Hintergrund

^ Warum diese Präsi überhaupt?

@Zettt
Zettt / after.txt
Created January 4, 2015 14:51
Comparing Instagram videos before and after upload
General
Complete name : /Users/zettt/Desktop/IMG_0292.mov
Format : MPEG-4
Format profile : Base Media / Version 2
Codec ID : mp42
File size : 3.95 MiB
Duration : 9s 643ms
Overall bit rate : 3 437 Kbps
Encoded date : UTC 2015-01-04 14:29:22
Tagged date : UTC 2015-01-04 14:29:25
@Zettt
Zettt / keynote.md
Created July 2, 2015 20:56
Things I learned about Keynote today

Things I learned about Keynote today

  • Keynote has Boolean operators
  • Curves defaults can be set in prefs (Bézier vs. Spline)
  • Rather than trying to master the Bézier tool, in order to mask something, make many small straight lines.
  • Magic Move can animate lots of things. Including color, reflection, shape, rotation, and many more parameters.
set completion-ignore-case On
set show-all-if-ambiguous on
"\e[A": history-search-backward
"\e[B": history-search-forward
# Cycle through completions by pressing tab
"\t": menu-complete
-- OmniFocus (or many other apps) to Pomodoro App for iPad
-- This script practically takes text that's on your clipboard
-- and generates a Pomodoro App for iPad compatible JSON file
-- to import into the app. (using Dropbox)
--
-- I'm using it with OmniFocus, where copied tasks remain
-- on the clipboard as lines of text, basically.
--
-- Created by Andreas on 2011-02-17
-- http://www.macosxscreencasts.com
@Zettt
Zettt / minecraft-ln-s.sh
Created August 16, 2011 20:20
Backing up/moving your Minecraft folder to a new location and linking back to the old location so Minecraft thinks it wasn't moved.
# Moving to a new location.
# This can actually be done in Nautilus as well.
mv ~/.minecraft/ /mnt/mythumbdrive/
# Link back to the original location.
# Note how the last part needs to be the same location as in the previous command.
# ~ is short for /home/YOURUSER
ln -s /mnt/mythumdrive/minecraft/ /home/YOURUSER/.minecraft