Live data from Hacker News

Viewing profile — z9znz

z9znz

HN member
Joined
Sun, May 01, 2022, 11:29 PM UTC
HN karma
1,632
Public activity
591 items

About z9znz

No profile information was provided.

Recent public activity

  1. comment
    Comment #33739097

    > scary-looking guy in a biker jacket, helping his sister open a ballet studio I think this illustrates the possible unspoken angle of the post. Is the post trying to show a surpri…

  2. comment
    Comment #33738888

    You either have phenomenal comedic deadpan skill, or you didn't notice the most interesting parts of the parent's comment.

  3. comment
    Comment #33738882

    > she knows her place in the world. She is here to serve, I know it's sort of an unspoken NoNo on HN, but given your bold comment I had to look (I thought maybe you were using conf…

  4. comment
    Comment #33738439

    This has nothing to do with the hijab. This is a matter of mixing perspectives. All of the descriptions of the situation are rather mundane and bland. Only two extra details stand …

  5. comment
    Comment #33738397

    Seriously? Perhaps I really am missing something obvious. What kind of doctor will she be?

  6. comment
    Comment #33738390

    You are filling in so many details that are not there. But whether that is correct or not is not the point. The point is, why mention it? Should we be surprised, or should we be im…

  7. comment
    Comment #33738368

    In a brief recall such as the parent post, certain details would seem either superfluous or meaningful if they don't appear to relate to the topic. If you mentioned that the guy at…

  8. comment
    Comment #33738345

    Sorry, was this a reply? Did you have something to say?

  9. comment
    Comment #33737868

    [flagged]

  10. comment
    Comment #33737845

    Maybe I'm not putting all the pieces together correctly. What is the significance of her wearing a hijab? Why is that worthy of mention, or the fact that the owner family was from …

  11. comment
    Comment #33736211

    This comedy skit illustrates the same in humor: https://youtu.be/nQpxAvjD_30

  12. comment
    Comment #33733303

    A real keyboard is absolutely necessary for real work, as you say. I think what makes the iPad Pro attractive is that it can have a real, decent keyboard (and trackpad) that is opt…

  13. comment
    Comment #33733229

    To replace or supplement remote, you can carry a little Raspberry Pi. This guy makes a nice video about it: https://www.youtube.com/watch?v=A3qn1nqw-Gw I have previously setup a He…

  14. comment
    Comment #33731329

    I think kitten-hair mittens would be big. And if they were also shaped like kitten paws, it would be HUGE.

  15. comment
    Comment #33731319

    This is probably an underserved area, actually. There are a lot of patterns of behavior we each have which involve our browsers, and there's probably room for some usage optimizati…

  16. comment
    Comment #33731303

    This is one of those examples that I liken to the dry cleaning business. In any given city there may be lots of dry cleaners available. Some will be much better than others (servic…

  17. comment
    Comment #33731261

    Ugh. Don't we have enough of those already? The target markets haven't increased in size, unless you're in developing countries with upwardly mobile populations. So more affiliate …

  18. comment
    Comment #33731236

    This idea could be scaled (and likely is implemented somewhere) to big $$$. This is essentially a last-mile care system which could be contracted by governments to do what, in this…

  19. comment
    Comment #33731214

    You have golden handcuffs :). As long as you're not unhappy with your day job, that's great. If you are unhappy, then you have a passion project/domain that you already have good p…

  20. comment
    Comment #33727317

    IMO, Ruby is a better general purpose "scripting" language like Python that has cleaner and more consistent features - including ones that lend themselves to functional approaches.…

  21. comment
    Comment #33727264

    Fair enough. My comment above was unnecessary. I did elsewhere in a top level comment go into detail about why I thought TFA wasn't good. https://news.ycombinator.com/item?id=33722…

  22. comment
    Comment #33726227

    Raising an exception affects control flow, which is the execution state of the program. TFA example misuses exceptions as just another return value, requiring the caller to have ad…

  23. comment
    Comment #33723584

    Raising an exception is not returning a value; it is essentially a GOTO. A pure function has no side effects. Maybe it takes an input, and maybe it returns a result. But whatever i…

  24. comment
    Comment #33722409

    I suspect the point of the article was to be seen again and remind people of his book.

  25. comment
    Comment #33722399

    Unfortunately this toy example isn't even pure functional because it raises an exception as a way of providing an alternative return from the function. A better example, if one wan…