who’s a dirty rotten liberal?

April 7th, 2010 Bob No comments

Sayeth the New York Times:

The Obama administration has taken the extraordinary step of authorizing the targeted killing of an American citizen.

Martyr for Mohammed or Justice? (Or both?)

Glenn Greenwald lays it out over at Slate: Confirmed: Obama authorizes assassination of U.S. citizen.

No trial. Not even a military tribunal. Not even a, “Hey, aren’t you …?” Just shoot.

Categories: power Tags:

who are the daughters of capitalism?

April 4th, 2010 Bob No comments

Mall Girls

Young capitalism gets right to it. No fussing around. No bourgeois middle men, no polite hypocrisy — just unvarnished body for stuff.

Categories: power, work Tags:

who’s gonna lose his faith?

March 23rd, 2010 Bob No comments

Portrait of a Buddhist Atheist as a Young Man

Categories: buddha Tags:

who needs a translator?

March 23rd, 2010 Bob No comments

Categories: almost amazing Tags:

who lies to you?

December 14th, 2009 Bob No comments

Al Qaeda does not exist.

Never existed.


Categories: power Tags:

1834 – USA #1 bad country yet?

July 4th, 2009 Bob No comments

North America - 1834Click for the full size version.

Categories: power Tags:

beautiful

June 6th, 2009 Bob No comments

boom! Trinity Testsource

Categories: power Tags:

what about ken wilbur?

May 24th, 2009 Bob No comments

See MonkMojo interview Ken Wilbur.Monk Jojo's Ken Wilbur interview

MonkMojo is brilliant.

Categories: buddha Tags:

scientist or buddhist?

May 15th, 2009 Bob No comments

We humans . . . lie at the heart of a great web of space and time whose threads are connected according to laws that dwell in our minds.

which said it?
Categories: buddha Tags:

a better .pythonrc?

January 24th, 2009 Bob No comments

Over on this blog, I pointed out a bug in some code. Stupid blogger won’t let me format a better version, so I’ll post it here:

try:
    import readline
except ImportError:
    pass
else:
    import rlcompleter
    import os.path
    import atexit

    class irlcompleter(rlcompleter.Completer):
        def complete(self, text, state):
            if text == "":
                readline.insert_text('\t')
                return None
            else:
                return rlcompleter.Completer.complete(self,text,state)

    readline.parse_and_bind("tab: complete")
    readline.set_completer(irlcompleter().complete)

    # Restore our command-line history, and save it when Python exits.
    history_file = os.path.expanduser("~/.pyhistory")
    if os.path.exists(history_file):
        readline.read_history_file(history_file)
        def save_hist():
            import readline
            readline.write_history_file(history_file)
        atexit.register(save_hist)

    # Clean up the namespace.
    del readline
    del os.path
    del atexit
Categories: programming Tags: