Viewing profile — theoretical
theoretical
HN member- Joined
- Thu, Jan 20, 2011, 5:37 PM UTC
- HN karma
- 17
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About theoretical
No profile information was provided.
Recent public activity
-
comment
Comment #2583360
I contacted Google about this issue in November of 2008 - I only received an automated response. (Matthijs mentioned that was why he posted the previous post[1] on the topic premat…
-
comment
Comment #2318104
You do indeed. For me that page says: "Sorry, you need 20 karma to create a poll."
-
comment
Comment #2306709
I develop iOS apps on a hackintosh. It's of equivalent spec of a recent Mac Pro, apart from it's an i7 instead of a Xeon.
-
comment
Comment #2208992
x^2 is quadratic, 2^x (for example) is exponential. Have a look at http://en.wikipedia.org/wiki/Time_complexity , it's pretty comprehensive.
-
comment
Comment #2207354
I use Fireworks. I find it so much easier for doing web design/photo editing/anything than Photoshop.
-
comment
Comment #2128048
I'd be interested in a further explanation of "Google absolutely takes action on sites that violate our quality guidelines [...]". Does that mean that Google manually decrease rank…
-
comment
Comment #2124652
They seem like good questions. As an addendum to the final question in second link, it might also be worthwhile checking the interviewee's understanding of "this" in other contexts…
-
comment
Comment #2124559
Well yes, the function is called with a MouseEvent as one of the arguments, so you could use the "arguments" object to access it. What I was thinking of, was something along the li…
-
comment
Comment #2124528
That won't quite work, as you're still just copying the value of i when that function is executed, which will be 4. You could make the function take a parameter, then return a func…
-
comment
Comment #2124456
It won't alert quite what you want - when you click on each element in the list, it will alert "4". This is because the function assigned to the click event of each li is bound to …