in reply to Re: base 4 golf
in thread base 4 golf

Can be shortened to:
perl -le'$_=sprintf"%b",pop;s/../$&%8/eg;print'
Fails in case the binary expension has odd length. can be fixed like this for example:
perl -le'$_=sprintf"%b",pop;s/..(?=(..)*$)/$&%8/eg;print' 31

update (broquaint): added formatting