Viewing profile — eiopa
eiopa
HN member- Joined
- Mon, Dec 09, 2013, 8:59 PM UTC
- HN karma
- 314
- Public activity
- 54 items
- HN profile
- View on Hacker News ↗
About eiopa
No profile information was provided.
Recent public activity
-
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…
-
comment
Comment #37891625
Exactly this
-
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…
-
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…
- comment
-
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.
-
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…
-
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 …
-
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?
-
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…
-
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 …
-
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!
-
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…
- story
-
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…
- comment
-
comment
Comment #12012885
They never do
-
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…
-
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.
-
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…
-
comment
Comment #11357351
ACH only :( I want to use this, but I don't want to give you full access to my bank account.
-
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.
-
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…
- comment
-
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 = [] ...