Live data from Hacker News

Viewing profile — taway2012

taway2012

HN member
Joined
Wed, Jun 19, 2013, 8:35 PM UTC
HN karma
290
Public activity
111 items

About taway2012

No profile information was provided.

Recent public activity

  1. comment
    Comment #8442785

    Hopefully the redesign won't give us light gray text on a white background, which seems to the rage these days. :) I had zero problems reading the print version.

  2. comment
    Comment #8202861

    To me, it seems to be the same as the Norvig algorithm, except that only deletes are considered. Which allows them to pre-calculate misspellings with modest storage cost. Am I mist…

  3. comment
    Comment #8133638

    How long ago did you buy your house? If a person bought the house today, would they still pay only $640/mo?

  4. comment
    Comment #7977115

    Been in a few orgs. I now think "no rewrites" is a good policy for all but a few orgs. Few orgs have the (1) business luxury (time and money) or, (2) the caliber of people and, (3)…

  5. comment
    Comment #7977025

    I like functions that return a value to be written in the guard-clause style. [In C++, that's probably better for efficiency since the compiler optimizer doesn't have to remove tem…

  6. comment
  7. comment
  8. comment
    Comment #7197599

    Don't do this. The whole thing gave off a bad smell on first reading so I would never have done this. Thank you vinkelhake for nailing the the real problem (exceptions) and botheri…

  9. comment
    Comment #7192052

    How? How can DRM force me to display the iframe containing an ad.

  10. comment
    Comment #7186532

    No story here. No budget provider I've looked at says they will help you withstand a DDoS attack. [Thanks to the commenter who says OVH does, I will look into them closely.] I did …

  11. comment
  12. comment
    Comment #7174918

    Multiple file attachments in entries. I think 1.x only supports one attachment per entry.

  13. comment
    Comment #7173003

    Crockford's "Javascript: the Good Parts" is a very good book.

  14. comment
    Comment #7155136

    This is probably what the parent meant: >>> 'truthy' if None else 'falsy' 'falsy' >>> 'truthy' if False else 'falsy' 'falsy' >>> 'truthy' if 0 else 'falsy' 'falsy'

  15. comment
  16. comment
  17. comment
  18. comment
    Comment #7137571

    Yeah, I know this is just an Internet forum so who cares what's said right? But ... But Ask the Korean made an excellent point about culturalism: "The term "culturalism" is my coin…

  19. comment
    Comment #7125589

    OK, I see why a downvoter downvoted it. I meant to write: "Yep, I know why the Mac's text looks blurrier" i.e., I meant to agree with 'coldtea' and add to the discussion. The way I…

  20. comment
    Comment #7124625

    Yep, I know the Mac's text looks blurrier: Link for anybody else interested: http://www.codinghorror.com/blog/2007/06/font-rendering-resp... (linked articles are good too)

  21. comment
    Comment #7123875

    > what more do you need? (don't say photoshop :@) In my case it's Lightroom. :) Longtime Ubuntu user here. Bought a Mac mini as my desktop replacement on the off-chance that I migh…

  22. comment
    Comment #7123473

    Sort of off-topic question. :) Is it still the case that updates from Apple will randomly break a Hackintosh? It used to be the case a few years ago. Has it gotten easier to update…

  23. comment
    Comment #7100568

    Thanks for the response. I get the A+ site when I directly visit via IP. I went through the delta between the reports with a fine-toothed comb and discovered that SNI wasn't the pr…

  24. comment
    Comment #7100498

    I host two sites on the same IP. The first site declared in my nginx conf file got A+. The second one got A with a note that it doesn't work in browsers without SNI. Identical SSL …

  25. comment
    Comment #7070182

    > everything-is-string semantics make programming an exercise in quoting. Is your code filled with literal strings? Otherwise why your code be "an exercise in quoting"? re Python: …