Pay the $5/mo; you get a larger attachment size allowance but frankly no one gives a shit about that. What you do get is Internet Time, and it's totes worth it and no other site has it.
Also, if you run a shell like BASH, have a script for outputting Internet Time to your console (or for where ever else you need it)
#!/bin/bash
set -e
read h m s<<<$(TZ=GMT-1 date "+%-H %-M %-S")
beats=$(perl -e "printf('%.2f',($s+($m*60)+($h*3600))/86.4)")
echo "@$beats"
