Live data from Hacker News

Viewing profile — mannix

mannix

HN member
Joined
Sun, Jul 21, 2013, 4:33 PM UTC
HN karma
12
Public activity
17 items

About mannix

No profile information was provided.

Recent public activity

  1. comment
    Comment #6420330

    Second take: whhhhhaaaaaaaat native color pickers!!? That is really neat, must have missed that addition.

  2. comment
    Comment #6420317

    Here's my take: this is very valuable on sites that dynamically load new pages without an actual browser navigation (read: pjax). It is not useful (and indeed it is an anti-pattern…

  3. comment
    Comment #6391846

    True, its purpose is a port scanner, not a website scanner.

  4. comment
    Comment #6390523

    Go to the Sources tab and click the || button to pause javascript. If you're wondering where the code is, just curl the URL :) (or, with Web Inspector open, refresh the page, go to…

  5. comment
    Comment #6371049

    Probably to bust possible caching.

  6. comment
    Comment #6365117

    It's fewer DOM manipulations from Javascript yes. The browser will still internally change the styles associated with the DOM elements, just without the JS overhead.

  7. comment
    Comment #6363942

    (Rereading again..) The JS claim is silly. He is saying that because we are dynamically creating a single style, that show/hide logic will be faster. I disagree with this, since ad…

  8. comment
    Comment #6363918

    You don't need to use javascript to hide/show matching elements. He also mentions something about it being faster than just an indexOf(), but gives no real benchmarks, so take that…

  9. comment
    Comment #6294600

    in js: console.log("\u062E \u0337\u0334\u0310\u062E")

  10. comment
    Comment #6270872

    You can also cmd(right)-click on the titlebar, and choose a parent.

  11. comment
    Comment #6220021

    No, but you can make it much more difficult by passing something like a frame of the game state, where some variables (like Timer) are passed in plaintext, and others (which are ca…

  12. comment
    Comment #6191763

    Table-based layouts will bite you down the road. Ever try to make a div that completely fills a td? Ever try absolute positioning in a table? It is tempting to use them because the…

  13. story
  14. comment
    Comment #6167480

    Yeah, after you click a huge "VOID MY WARRANTY" button. I am surprised they made this change after the recent tor exit node exploit...

  15. comment
    Comment #6102540

    Yes, the only reason I'd use __defineGetter__ would be a fallback for Object#defineProperty. I'm curious if the IE8 limitation could be worked around, using something like: if (ie8…

  16. comment
    Comment #6099287

    Crap. you're right. that's probably a dealbreaker.

  17. comment
    Comment #6098977

    I have a question, since this has been bugging me with other js MV* frameworks lately... Is the set() method necessary for updating single attribute? All browsers have supported ge…