Viewing profile — miloshasan
miloshasan
HN member- Joined
- Sat, Oct 23, 2010, 6:04 AM UTC
- HN karma
- 41
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About miloshasan
Recent public activity
-
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…
-
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…
-
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?
-
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…
-
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…
-
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…
-
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…
-
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, …
-
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 …
-
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…
-
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…
-
comment
Comment #2074056
Ah, OK... I thought he was comparing more "CPU-like" to "GPU-like" designs, rather than CISC to RISC.
-
comment
Comment #2073766
The article does not contain the word "CISC"...
- story
-
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…
- story
-
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…
-
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…
-
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…
-
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…
-
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/
-
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 …