Live data from Hacker News

Viewing profile — daffodil2

daffodil2

HN member
Joined
Sun, Jan 12, 2014, 2:48 AM UTC
HN karma
19
Public activity
16 items

About daffodil2

No profile information was provided.

Recent public activity

  1. comment
    Comment #8279606

    I'm actually very interested, which is why I bothered to comment in the first place. I had to download the HTML of the article and search and replace all exclamation points with pe…

  2. comment
    Comment #8278906

    I wish this didn't have so many exclamation points in it! There are literally 41 (!!!) exclamation points in this short blog post! It is exhausting to read! Please consider not usi…

  3. story
  4. comment
    Comment #8007767

    For a function f and a value x, foldr f x [a,b,c] gets turned into f(a, f(b, f(c, x))) '(:)' is list concatenation, so the result is 1 : (2 : (3 : [])) (Here we are writing list co…

  5. comment
    Comment #7999844

    A "well actually" occurs when a person is splitting hairs. This can be desirable, for example when you're trying to obtain a complete understanding of something. But in normal conv…

  6. comment
    Comment #7736644

    I didn't mean to imply it was trivial to understand, but it's no more difficult than the formal definition of, say, a derivative (which involves a limit, and hence an epsilon-delta…

  7. comment
    Comment #7735345

    The article argues against overly formal approaches, but I actually think it errs too much in that direction. When I'm studying a math thing, at some point I need you to shut up wi…

  8. comment
    Comment #7695251

    Just as it would be unreasonable to require that anyone who drives a car roughly understands how an engine works, it would be similarly unreasonable to require that anyone who uses…

  9. story
  10. comment
    Comment #7600171

    Wait, it's not clear to me from the blog post. Did they make a system that obsoletes reCAPTCHA? If so, it's just a matter of time before the spam systems catch up, correct? If so, …

  11. comment
  12. comment
    Comment #7583992

    I'm not sure what "fit to be a developer" means. People (with very few exceptions) are not born with labels that say "able to write software professionally" or "not able to write s…

  13. comment
    Comment #7578439

    I've tried reading Rudin a couple times, but it's a bit of a slog. There are easier analysis texts. Abbott's Understanding Analysis is good, though a bit basic. I'm currently readi…

  14. story
    What happened to the Markdown standardization effort?

    Almost a year and a half ago Jeff Atwood proposed a Markdown standardization effort: http://blog.codinghorror.com/the-future-of-markdown/). The popular Markdown parser Sundown was …

  15. comment
    Comment #7344867

    Find a book about C++. Read as much of it as you can. Write some code. (solving a few Project Euler problems might be worth it as long as you focus on writing dumb brute force solu…

  16. comment
    Comment #7332304

    60 pages before defining vector spaces seems like a not so good approach to linear algebra. Since Linear Algebra Done Right has already been recommended, I will suggest Linear Alge…