#293 – December 09, 2018
You can land your dream job. Practice for FREE and get awesome job offers
Just because you can code, doesn't mean you can pass a coding interview. Pramp is a peer-2-peer mock interviews platform, where you can practice your coding skills on demand. Pramp's matching algorithm will make sure you'll get to practice with other awesome engineers like yourself. After a few successful mock interviews, we'll reach out with real job offers at top companies.
Dan shares the most interesting stories from startup scene, science, and open source. Daily, in your inbox.
Expert Excuses for Not Writing Unit Tests
I also mentioned that I was seriously considering writing content for the “Expert Excuses for Not Writing Unit Tests” one. I think I had this idea at the time that it was something I could potentially sell or use to raise my profile. Since I am not a comedy writer there is a market of about 0 people in the universe who would pay for content like this. I have no idea what I was thinking.
Why is 2 * (i * i) faster than 2 * i * i in Java?
There is a slight difference in the ordering of the bytecode. At first sight this should not make a difference; if anything the second version is more optimal since it uses one slot less. So we need to dig deeper into the lower level (JIT)1.
Stack Overflow: How We Do Monitoring
What is monitoring? As far as I can tell, it means different things to different people. But we more or less agree on the concept. I think. Maybe. Let’s find out!
UTF-7: a ghost from the time before UTF-8
On Halloween this year I learned two scary things. The first is that a young toddler can go trick-or-treating in your apartment building and acquire a huge amount of candy. When they are this young they have no interest in the candy itself, so you are left having to eat it all yourself. The second scary thing is that in the heart of the ubiquitous IMAP protocol lingers a ghost of the time before UTF-8. Its name is Modified UTF-7.
Securing Sensitive Data in Rails
It feels like data breaches are showing up every week in the news. If you haven’t taken a second look at how you’re storing sensitive data, now is probably a good time. Users trust you with the privacy and security of their information.