Live data from Hacker News

Viewing profile — miloshasan

miloshasan

HN member
Joined
Sat, Oct 23, 2010, 6:04 AM UTC
HN karma
41
Public activity
22 items

About miloshasan

http://miloshasan.net/

Recent public activity

  1. comment
    Comment #2400766

    These claims are false. We can get savings on a small number of "low-hanging fruit" problems, which are easy to approximate on practical instances - bin packing with many small ite…

  2. comment
    Comment #2399242

    Umm... I thought it was a pretty good introductory article, listing well-known and uncontroversial stuff. Yes, a polynomial algorithm might not be actually practical. Everybody kno…

  3. comment
    Comment #2182516

    If an idea saves you a month of work, its value is exactly equal to the value of a month of work, right?

  4. comment
    Comment #2122180

    From what I could tell, the links you posted are no evidence to the contrary. First, child abuse is beyond what most would call "parenting"; that term is mostly applied to things l…

  5. comment
    Comment #2121623

    The author points out something he may not have even intended: that parenting might not matter at all, despite the raging discussions about which parenting style is better. In fact…

  6. comment
    Comment #2086449

    You are comparing top startups to mediocre Ph.D.'s. Top academia is very high-risk and very competitive. You take on very difficult research problems in the hope of becoming famous…

  7. comment
    Comment #2085156

    The premise that Ph.D. degrees are supposed to be mainly training for academic careers is wrong, at least in technical/engineering fields. It is very common for people to enter e.g…

  8. comment
    Comment #2085124

    I would expect that an oversupply of lawyers would make them cheaper to hire and nicer to deal with. If we instead have a small group of lawyers that are expensive and unpleasant, …

  9. comment
    Comment #2084330

    Of course... read my reply again please. I am not disagreeing with you, I am saying that I would love to see a better data-parallel language than C (or CUDA to be precise), but it …

  10. comment
    Comment #2082674

    > It would make a lot of sense to have something like StarLisp or APL for CUDA right now. Trying to do data parallelism in C is about the most brain-damaged idea ever. I don't know…

  11. comment
    Comment #2074454

    I suspect that the inability to bring down power isn't just "laziness" on Intel's part. Decreasing power consumption is (more or less) equivalent to increasing performance per watt…

  12. comment
    Comment #2074056

    Ah, OK... I thought he was comparing more "CPU-like" to "GPU-like" designs, rather than CISC to RISC.

  13. comment
    Comment #2073766

    The article does not contain the word "CISC"...

  14. story
  15. comment
    Comment #2015330

    You'd be surprised how many people walk around with terrible vision, without knowing it. My guess is that computer-related jobs require good vision, so people in these jobs are mor…

  16. story
  17. comment
    Comment #1865371

    Python is awfully close to being a superior (and free) replacement for Matlab, but there are a few annoyances that keep preventing me from switching forever. Unfortunately, these a…

  18. comment
    Comment #1831434

    So you're saying that the "language is a tool" metaphor breaks down because C is "complete" in a way that a hammer isn't. True, but that's taking the metaphor too far; it's origina…

  19. comment
    Comment #1830488

    Well, describing oneself as a working programmer (as opposed to a computer scientist) is a valid position, but why does it invalidate the "programming language as tool" metaphor? A…

  20. comment
    Comment #1824558

    Ah, yes - of course decorators do not fundamentally increase the expressive power of the language (and neither do lambdas, obviously). It's all just a matter of convenience and ele…

  21. comment
    Comment #1822920

    The decorator can do introspection on the function object. This project uses the idea to execute (some) Python code on the GPU: http://code.google.com/p/copperhead/

  22. comment
    Comment #1822790

    Didn't downvote you, but the difference is that lambdas can only be executed (i.e. applied to something) while decorators let you analyze the code of the function and do something …