Live data from Hacker News

Viewing profile — BobKabob

BobKabob

HN member
Joined
Wed, Mar 09, 2011, 11:56 PM UTC
HN karma
48
Public activity
30 items

About BobKabob

No profile information was provided.

Recent public activity

  1. comment
    Comment #2411072

    The most amazing thing about this for me was that YouTube reports that there were only 152 views when I watched it, and zero comments. And the link has 7 points on HN, Yet this lin…

  2. comment
    Comment #2410710

    OK, so once you have launched a company, and survived past those scary first couple years, you no longer qualify? I ask because I founded a startup in '96, and we still try to "thi…

  3. comment
    Comment #2408084

    I signed up for facebook, friended no one that didn't friend me and that I didn't know personally, told no one about my account, and have a folder of facebook spam in my email box …

  4. comment
    Comment #2408001

    It seems to me that there could be a version of Python that is solely optimized for speed, and allows full compilation. I haven't given this a great deal of thought, but I bet that…

  5. comment
    Comment #2404643

    I was a regular contributor to Techcrunch comments (and not a troll), but I haven't commented once since they moved to Facebook comments. And I won't. This Techcrunch article is th…

  6. comment
    Comment #2403475

    Gimp Screen capture and print.

  7. comment
    Comment #2402330

    Pretty cool! Not to be pedantic (I hate that word), but in the spirit of improvement, you may want to spell check your popups. (example: " Text that is seperated from directional f…

  8. comment
    Comment #2399525

    I agree (except for the part where you wanted to down-vote me). I wasn't trying to say it was their fault. It was more a comment about other comments, not about the django guys. I …

  9. comment
    Comment #2384774

    On the contrary, sometimes "out of the box" thinking by a non-expert is exactly the lightning bolt from out of nowhere that can cause a breakthrough.

  10. comment
    Comment #2382104

    You can submit stories with a new account. Press submit at the top. You can also link to your site in the comments (although it better be relevant to the discussion, or you'll prob…

  11. comment
    Comment #2366229

    @CaptainObvio.us: There's always room for another great site about ideas, but check out halfbakery.com. You might get some ideas from their site. It's good, not great, but has an a…

  12. comment
    Comment #2361583

    I can't believe it... not one comment telling the django guys to quit celebrating and get back to work on a version that supports Python 3? :-) Seriously, Adrian, Jacob, and the dj…

  13. comment
    Comment #2361574

    You may want to take a look at Pinax to get a HUGE head start on a django-based web app. ( http://pinaxproject.com ) And since installing Pinax auto-installs django 1.2 (currently)…

  14. comment
    Comment #2349069

    I'm glad TC moved away from Discus and moved to the facebook commenting system. I won't ever comment there again. I was wasting far too much time on TC comments.

  15. comment
    Comment #2348326

    I think there's a Biblical parable that probably fits here - the one with the "talents". I just believe that those who are blessed in life shouldn't flush it down the toilet. A mil…

  16. comment
    Comment #2348316

    what tool(s) did you use to create that video? I love it! very impressive!

  17. comment
    Comment #2347126

    If you want to see this Private Beta, click here, and help me out. :-) http://answerin30.com/0x1ks

  18. comment
    Comment #2347019

    Anybody losing $1M PER WEEK makes you question how the fool and his money got together in the first place. Good to see at least a little justice in this world. I wouldn't wish bad …

  19. comment
    Comment #2346960

    I really like Felix's Corollary and the Millionaire's Estimation! http://en.wikipedia.org/wiki/Rule_of_72#Felix.27s_Corollary_...

  20. comment
    Comment #2335366

    "Any traditional OOP programmer might tell you that essential elements of OOP are encapsulation and message passing. The Python equivalents are namespaces and methods. Python doesn…

  21. comment
    Comment #2326728

    "We're the AngelList for Developers" Ok, so now, instead of trying to figure out what one company does, I have to figure out what two companies do!

  22. comment
    Comment #2325550

    I'm using FF on Win. I think you need to key in a search term at the top, and press enter, to see what others are seeing.

  23. comment
    Comment #2325487

    Even better Python variation: Prints 1 to 1000 and quits: from __future__ import print_function z="0123456789" map(print,map(lambda x: int("".join(x))+1,zip(sorted(z*100), sorted(z…

  24. comment
    Comment #2324820

    How about this Python solution: z="0123456789" print map(lambda x:int("".join(x))+1,zip(sorted(zip(*z)[0]*100), sorted(zip(*z)[0]*10)*10, zip(*z)[0]*100)) Only downside is that it …

  25. comment
    Comment #2323938

    Here's a solution in Python, using pretty much the same logic as the top vote-getter on Stack Overflow: def f(a): print a print a+1 {999: int}.get(a,f)(a+2) f(1) Note, I had to cou…