Skip to content

Instantly share code, notes, and snippets.

Bookkeeper

  1. Send Invoice: Deal financial damage to target. Potency is halved if target is another company, or doubled if the target is an individual.
  2. DUTY ACTION: File Expense Report: Apply for damage taken in the prior 10 seconds to be healed. Grants Pending Expense Report. May not be used if no damage has been taken or the player has Pending Expense Report. (This action is available to characters in the same party as the player.)
  3. Accept Expense Report: Consumes a Pending Expense Report and heals the target for the amount of health requested.
  4. Hire Clerk: Hires a clerk to automatically accept pending expense reports. Duration: 1 Quarter. Recast: 4 Quarters
  5. Quarter End: Ends the current quarter, you may not execute actions for 15 seconds. Reduces damage dealt to you by 50% for 15 seconds. Applies Fiscal Year. Each stack of Fiscal Year increases the chance to trigger an Audit by 10% when Quarter End is activated.
  6. Audit (Trait): Removes all stacks of `Fiscal Ye

Keybase proof

I hereby claim:

  • I am duaiwe on github.
  • I am duaiwe (https://keybase.io/duaiwe) on keybase.
  • I have a public key ASDZddhAv67um0CqJRmzYqRJDxfajnwOPO2mCwHVUahohAo

To claim this, I am signing this object:

@borzilleri
borzilleri / flac2mp3
Created November 12, 2011 20:57 — forked from mxcl/flac2mp3.md
FLAC2Mp3 Converter, improved metadata handling, converts all flacs in current directory.
#!/usr/bin/ruby
# https://gist.github.com/1361100
ID3_TAGS = {
"TITLE" => "tt",
"ARTIST" => "ta",
"ALBUM" => "tl",
"DATE" => "ty",
"GENRE" => "tg",
"TRACKNUMBER" => "tn",
@borzilleri
borzilleri / Text.php
Created June 28, 2011 23:31
method for generating slugs
public static function slug($s, $maxLength = null) {
// Make the string lower case
$s = strtolower($s);
// Turn forward slashes into spaces.
// NOTE: We turn them into spaces, so they're properly condensed down to
// a single dash later on.
$s = str_replace('/',' ',$s);
// Remove any non-alphanumeric, space, or hyphen characters
@borzilleri
borzilleri / function.cast.php
Created May 7, 2011 00:02
PHP function to cast an object from one class to another.
<?php
/**
* Cast an object into a different class.
*
* Currently this only supports casting DOWN the inheritance chain,
* that is, an object may only be cast into a class if that class
* is a descendant of the object's current class.
*
* This is mostly to avoid potentially losing data by casting across
* incompatable classes.