Skip to content

Instantly share code, notes, and snippets.

View ericgroom's full-sized avatar

Eric Groom ericgroom

  • Ginger Labs
  • Sacramento
  • 10:26 (UTC -07:00)
View GitHub Profile
@ericgroom
ericgroom / Palenight.xccolortheme
Created January 21, 2021 01:17
Palenight Xcode theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DVTConsoleDebuggerInputTextColor</key>
<string>1 1 1 1</string>
<key>DVTConsoleDebuggerInputTextFont</key>
<string>SFMono-Bold - 15.0</string>
<key>DVTConsoleDebuggerOutputTextColor</key>
<string>1 1 1 1</string>
@ericgroom
ericgroom / Bread.java
Last active September 28, 2017 18:05
Correct and incorrect implementation of a subclass of bread. Note this isn't compilable due to having 3 public classes in the same file, if you separate them into separate files they should compile.
// base class
public class Bread {
private String name;
private int amount;
public Bread(String name, int amount) {
this.name = name;
this.amount = amount;
}
# This is a sample config for Kwm
# Commands prefixed with 'kwmc' will call
# local functions corresponding to the
# kwmc syntax.
# To run a system command, use the prefix
# 'sys' and then the requested command
# e.g 'sys mvim' would open macvim