Live data from Hacker News

Viewing profile — joske2

joske2

HN member
Joined
Thu, Dec 23, 2010, 2:49 PM UTC
HN karma
45
Public activity
19 items

About joske2

No profile information was provided.

Recent public activity

  1. comment
    Comment #6979081

    I quite like AppCode, not for code formatting perse. More because it has decent refactoring support, better code analysis+quick fixes, and very keyboard friendly. I still miss the …

  2. comment
    Comment #6979068

    If you are willing to switch IDEs, then AppCode can do this. (+ clean up your unused imports). There is currently a bug in formatting Kiwi specs, but is marked as fixed in upcoming…

  3. comment
    Comment #3917965

    I don't understand his point on encapsulation of information versus implementation. If anyone can help me here, I would be grateful. * Should the user of your object/data have to m…

  4. comment
    Comment #3704642

    The point of testing/TDD for me is not (just) about preventing bugs, it is more about having quick feedback. Running a test is faster than waiting until it is deployed and manually…

  5. comment
    Comment #3360511

    Honestly, I hope there isn't immortality in heaven beyond the grave. Forever is a really long time. The first 1000 years in heaven might be interesting. The billion years after tha…

  6. comment
    Comment #3230612

    I honestly thought the elisp example code looked pretty bad as well. I don't like the flag-style programming (in-for, continue, destructuring) nor do I like the meaningless names (…

  7. comment
    Comment #2671138

    The idea is that using IDs reduces the reusability of your css rules.

  8. comment
    Comment #2594962

    According to that benchmark native Object.create is faster than constructor functions on Firefox 4. That said, I wouldn't base my coding decisions on those kinds of micro benchmark…

  9. comment
    Comment #2594638

    Object.create is a standard function in ecmascript5. I would add a check such as "if (!Object.create) {Object.create = ... }".

  10. comment
    Comment #2443738

    The dose is discussed in the article. The hypothesis is that 90 pounds of added sugars per person per year is toxic (current levels of consumption). 40 pounds per person per year i…

  11. comment
    Comment #2439059

    MobileMe and iWork.com are good examples I think.

  12. comment
    Comment #2374519

    I doubt that it has anything to do with technical proficiency. People like Steve Wozniak, Alan Kay, Tim Berners-Lee don't have the reputation of being assholes. In general, sites l…

  13. comment
    Comment #2296193

    In ES5 you have Function.prototype.bind that returns a new function with this bound to whatever you want. You can also pass extra default arguments. On older browsers you could use…

  14. comment
    Comment #2293872

    Why would you choose Github over Bitbucket for your FOSS projects? I haven't used Bitbucket yet, so I'm interested in a comparison.

  15. comment
    Comment #2241352

    There are other dynamic languages besides smalltalk that have a good IDE. Jetbrains provides IDEs with refactoring support for JavaScript, python, ruby, php and others.

  16. comment
    Comment #2050286

    On my dayjob we did some experiments on wether or not it was economically viable. So we tried classical programming and pair programming. We found that classical programming was mo…

  17. comment
    Comment #2038020

    How can you refactor if you don't have a test suite? Do you manually check everything in your application after every change? That's the main value of having a test suite you can t…

  18. comment
    Comment #2035273

    I believe one of the first refactoring was for Smalltalk, so it's not impossible. These days you also have IDEs with basic refactoring support for Python, Ruby, Javascript, Actions…

  19. comment
    Comment #2034579

    I've worked on such huge Java programs being maintained and updated for over 5 years. I actually don't think it is Java as a language which helps in maintenance. Type checking by t…