Live data from Hacker News

Viewing profile — zenbot

zenbot

HN member
Joined
Mon, Feb 08, 2010, 10:48 AM UTC
HN karma
5
Public activity
4 items

About zenbot

No profile information was provided.

Recent public activity

  1. comment
    Comment #15709560

    Nick Coghlan has written on this extensively: http://ncoghlan-devs-python-notes.readthedocs.io/en/latest/p...

  2. comment
    Comment #12433712

    Is this a general objection to apps being web views run inside of Chrome? Insomnia's website does not make any claims towards being native.

  3. comment
    Comment #7331229

    This is incorrect. “The preferred place to break around a binary operator is after the operator, not before it.”

  4. comment
    Comment #4736631

    This is possible in Twisted, using inline callbacks: try: data = doManyFancyThingsWith(yield asyncResult()) print 'Parsed data:', data except: print 'Oh no, something went wrong!' …