HackerTrans
TopNewTrendsCommentsPastAskShowJobs

rcheu

no profile record

comments

rcheu
·3 yıl önce·discuss
There’s not much need for turnover, plenty of companies publish quite a bit on how their systems work. You can look for recsys papers from your favorite company if you want. The Netflix recommendation systems workshop is also good and has many industry talks.

The reality is that there’s a lot of (what is essentially) matrix factorization, and not much of anything nefarious or very interesting to most people who are not recommendation system engineers.

Another thing is that these systems are intentionally hard to game even if you know the weights. The systems optimize for things like P(comment|personalized features), so even if you know there’s a high weight in the scoring function for comments, just commenting a lot on your content isn’t sufficient. You need the system to predict that other people will also comment.
rcheu
·3 yıl önce·discuss
The 30 days thing is likely from GDPR requirements. You cannot keep user data longer than that after they request deletion.
rcheu
·4 yıl önce·discuss
It's pretty easy to do almost no coding at larger companies as a more senior engineer and become quite rusty. It sounds like he was interviewing for a position which he's actually expected to ship things and code, so it's pretty reasonable to ask him to code in the interview.
rcheu
·5 yıl önce·discuss
400 GB/s is insane memory bandwidth. I think a m5.24xlarge for instance has something around 250 GB/s (hard to find exact number). Curious if anyone knows more details about how this compares.
rcheu
·5 yıl önce·discuss
SF is actually getting really fast internet now. All the new developments we looked at had gigabit internet at ~$80/month with multiple competing providers. It's getting to older apartments now as well.

At these speeds, the WiFi adapters are more of a bottleneck than the ISP. I can only get close to full speed on ethernet.
rcheu
·5 yıl önce·discuss
Some of the people I enjoy listening to (almost all violin):

https://www.instagram.com/nancyzhou_violin/ https://www.instagram.com/joshuabrownviolinist/ https://www.instagram.com/kersonleong/ https://www.instagram.com/violincase/ https://www.instagram.com/augustinhadelich/ https://www.instagram.com/weatherclef/

I also enjoy just browsing the discover tab on instagram. If you mostly click on these instrumentalist accounts, it's pretty good about finding more.
rcheu
·5 yıl önce·discuss
You can just buy it on Amazon right now, they're actually not too hard to find. You can also find it in store at original MSRP.
rcheu
·5 yıl önce·discuss
Your thinking rate might be fixed (or more likely, decreasing with time), but one thing you can do, which is not mentioned here, is become more efficient.

This means looking for ways to improve the things you do and finding shortcuts so you have to think less. Most commonly, I do this by looking back at how I did a task and writing down things to help me complete it faster next time. Examples:

- write down the common mistakes I've made in the past and use it as a checklist to check before I push code

- create run-books for debugging issues. This is both for specific areas and general process things such as "Make sure you check all the relevant grafana dashes."

- add questions and answers on StackExchange/Quora when I run into problems/questions that take me awhile to resolve.
rcheu
·5 yıl önce·discuss
Obviously high supply of animators is the main reason, but I wonder if part of it is that pirating/illegal streaming sites are extremely common for anime. All of the people I know that watch anime do so without paying for it. It's trivially easy to find anime for free online, so much so that it's easier to find it for free than pay for it.
rcheu
·5 yıl önce·discuss
I use http://intonia.com/index.shtml for this purpose. It's available on Android/iOS as well.

It's not free, but I think the functionality is a bit better than this. It handles fast passages and can change temperament, show how off you were, etc.
rcheu
·6 yıl önce·discuss
This is the shortest common supersequence problem (https://en.wikipedia.org/wiki/Shortest_common_supersequence_...). It's NP-hard if you include repeating numbers; there's no simple changes to make your solution work in that case.