HN user

nolevels

15 karma
Posts0
Comments18
View on HN
No posts found.

Interesting idea. Many years ago when I was learning French I seemed to speak it much better after a drink or two with a French speaking neighbor. Maybe it was less worry over grammar though I can't say I felt nervous speaking to them when sober - my communication just seemed faster and smoother with a drink.

I used a friend's xanax. Admittedly I should've trialed it beforehand, mistake on my part. I just remember feeling a really strong relaxation and nothing afterwards. I did get an offer but I still wonder today if I said anything questionable during the interview.

This a good a solution that extends to other aspects of a job as well. It also doesn't lead to possible dependence like other solutions.

I would advise strong caution against this unless you have used any benzo before. I remember I tried one once before a long, 4 hour interview. I literally don't remember a thing I said or did the rest of the day including the interview.

What to blog about 4 years ago

This should also be observed on HN. I have seen too many Show HN posts with no constructive criticism with the only comment deriding a technical choice / language.

That's unfortunate. I hate system design interviews where the interviewer has a "known" solution in mind and won't accept any other solutions even with good arguments, but you could have dodged a bullet if they are completely stubborn to work with.

All these differing opinions on this tells me interviews are a crapshoot subject to the interviewer's whims. If I got you for an interviewer I would need to be specific, for others who replied to this, I'd need to be generic. Hopefully the interviewer is helpful in this regards and indicates his preference, maybe by asking what cache would you use and why instead of silently docking me points.

Go to a derm/doc to see if there are any nutritional deficiencies (unlikely though). Once that's ruled out, get on Finasteride. 99% of people maintain their hair. Unless you're slick bald, this is a must if you're getting a hair transplant. After a year you can do a hair transplant, but really read reviews, maybe even meet patients in person. The hair transplants today are really good in the hands of a good doctor.

Apologies, I should've clarified. I just meant postgres doesn't necessarily have to scan the actual table to get the count in some cases if an index is available, not that it caches the actual count.

Not necessarily in postgres. If an index is available it may use that, though it will still have to refer to the visibility map to see if any row is available to the current transaction (cheap check), and if it can't determine from that, then and only then does it need to also refer to the heap / actual table (slower check).