Live data from Hacker News

Viewing profile — eiopa

eiopa

HN member
Joined
Mon, Dec 09, 2013, 8:59 PM UTC
HN karma
314
Public activity
54 items

About eiopa

No profile information was provided.

Recent public activity

  1. comment
    Comment #37895556

    Why does that mean that the final price must the opaque during the moment of purchasing decision, though? If the goal is keeping people informed, one can show various breakdowns, p…

  2. comment
    Comment #37891625

    Exactly this

  3. comment
    Comment #37890550

    In San Francisco restaurants, I’ve seen this tactic applied liberally. Maybe AirBnb and DoorDash are rubbing off on them:) A common one sees the restaurant charge you separately fo…

  4. comment
    Comment #23528314

    OMG, "The Screener" is something I've always wanted. There's a lot to love about this. Something I am nervous about is using a @hey.com email. Similarly to domain, it's a world-vis…

  5. comment
  6. comment
    Comment #23202809

    This reminds me a lot of python’s gevent. I often wish the language had adopted it instead of the C#-like await async, since it’s just more straightforward.

  7. comment
    Comment #22890377

    Although they are particularly picky at the moment, which makes sense given the situation. Anecdotally, I couldn't get an interview, even though I had an offer from them in the pas…

  8. comment
    Comment #21468740

    The 24/7 support sounds promising. This has been their Achilles heel for many years. Anecdotally, I once checked into an Airbnb with a leaky roof. After spending a good 20 minutes …

  9. comment
    Comment #21003286

    I dig the fine-tuning tests! Did you end up using this as a way to estimate how "healthy" the agents are, or was this explored after the system was already working well?

  10. comment
    Comment #19331507

    My personal experience with Airbnb is that they simply don't know how to do support. Even basic issues take multiple days to resolve, and usually involve many phone calls. HotelTon…

  11. comment
    Comment #17444497

    I'm based in SF, and I've taken over 200 rides with Ford GoBike (operated by the same company). It is awful. The bikes: big, heavy and ugly. Due to their sheer weight, peddling up …

  12. comment
    Comment #14623156

    Good read, and perfectly captures the things that frustrated me about the game. Looking forward to playing the updated version on the Switch!

  13. comment
    Comment #13898236

    I understand people who want more expressiveness in their reviewing, but the reality is that the 5-star system just leaves too much ambiguity. It's like how in Uber/Lyft, most peop…

  14. story
  15. comment
    Comment #12386553

    Reminds me of gitx (a good thing!) :) Is there a way to only view commits that belong in the current branch (like git log)? The commits from the other branches are distracting when…

  16. comment
  17. comment
    Comment #12012885

    They never do

  18. comment
    Comment #11599060

    Our own experience with ECS has been similarly negative. While this was 6 months ago, I am not aware of significant improvement. In general, the whole thing feels rushed and duct t…

  19. comment
    Comment #11499301

    VSCode is so good. I do wish it had a global symbol search, similar to Sublime's (cmd+shift+r). It's indispensable for code navigation.

  20. comment
    Comment #11362815

    tl;dr: It's literally a tutorial on configuring Alexa Voice Services + their sample code on Debian. The way you interact with it is by clicking on a button in a Java app. No trigge…

  21. comment
    Comment #11357351

    ACH only :( I want to use this, but I don't want to give you full access to my bank account.

  22. comment
    Comment #11248428

    What makes implementing qsort/bsearch/etc "the basics"? It seems rather arbitrary, and it mostly measures how well you are able to recite from CS books.

  23. comment
    Comment #11247772

    It's always been strange to me that tech interviews tend to check for basic CS, rather than deep engineering. When was the last time you had to implement bsearch() in a real projec…

  24. comment
  25. comment
    Comment #10823847

    ES6 got this right too. This design decision makes me die a little every time I have to do: def foo(x=None): if not x: x = [] ...