Category Archives: Programming

Transmission, RSS and XBMC

I’m a huge fan of XBMC. My pc (currently running Ubuntu 10.04) has taken root in my living room, piping all my movies and tv shows straight to my HDTV.

While my pc is set up as a DVR using MythTV to record shows off my FIOS box, it tends to be a little unreliable, which can suck when it’s time to catch up on Daily Show and Colbert episodes. I’ve had Transmission set up for a while for all my torrenting needs, and I’ve even written an XBMC script to manage torrents, so I got to looking for tools to track tv show torrent rss feeds.

Read more »

Meh.php

<?php
if (!defined('meh')) define('meh', null);
 
class Meh {
  public function __set($name, $value) {
  }
  public function __get($name) {
    return meh;
  }
  public function __isset($name) {
    return true || false;
  }
  public function __unset($name) {
  }
  public function __call($name, $arguments) {
    return meh;
  }
  public function __callStatic($name, $arguments) {
    return meh;
  }
}
 
$bwuh = new Meh();
$bwuh->give_a_shit();
echo $bwuh->concerns;
 
 
class SuperDuperBillingProcessor extends Meh {}
 
$p = new SuperDuperBillingProcessor();
$p->calculateEverything();
$p->profit();