Archive for November, 2007

The Sad State of Trolling.

Tuesday, November 20th, 2007

It seems that clever trolling is really a lost art. I’m of the opinion that trolling should be a pure expression of Socratic irony. Somewhere along the way, the whole “pissing people off” part has taken center stage, to the detriment of the higher purpose of actually making some sort of (useful) point.
(more…)

A small amendment

Friday, November 9th, 2007

I had written in my debate with Matthew Beller that Linden Lab can’t reduce the Linden Dollar supply. It seems that this is incorrect. It has been claimed in a Reuters story that Linden Lab plans to accept tier payments in Linden Dollars if there were a crisis of value. It remains to be seen if Linden Lab will actually have the balls to do such a move when crunch time comes, however. One can only hope we never see that day.

Open Source Patronage

Friday, November 9th, 2007

My latest article in the Seventh Sun is up:

Open Source Patronage Business Models

GiveMoney throttle?

Thursday, November 8th, 2007
  • Use is limited to 30 payments in a 30 second interval for each resident on a region. Sustained overage will produce a script error and halt payments while the rate remains excessive.
  • #include stdio.h
    
    int main()
    {
        int debit;
        int balance=535234;
        int transferred=0;
        for (debit=1048576; debit>=1; debit/=2)
        {
            if ((balance - debit) > 0)
            {
                balance=balance-debit;
                transferred=transferred+debit;
            }
            printf("%d debit attempt, %d balance transferred, %d balance remainingn", debit, transferred, balance);
        }
        printf("%d final balance remaining, %d transferredn", balance, transferred);
    }

    O_o