Blog

  • “Why is nobody reviewing my code?” I sometimes witness new engineers (or even seasoned engineers new to the company) submit code reviews that end up sitting idle, gaining zero traction. Often, these code reviews get published but comments never flow in, leaving the developer left scratching their head, wondering why nobody seems to be taking…

    3 tips on getting eyeballs on your code review
  • Family Assembled our Berkey water filtering system. The instructions are quite complicated, actually. In addition to reading the manuals, I had to pull up a couple instructional YouTube videos to make sure that I was priming the filters correctly. Took Elliott on a late night walk. She had missed her nap and we needed to…

    Daily Review – Day ending in 2020/11/05
  • My favorite part of the day was waking up to a video that Jess recorded while I was asleep, a video capturing a little frog dancing on our window facing the backyard. My wife: she’s super cute. Work Hosted and moderated a tech panel on career growth and promotions. On behalf of Asians@ at Amazon,…

    Daily Review – Day ending in 2020/11/04
  • Family Jess and I felt nervous about the presidential election results while watching the news online. Despite Biden leading in the polls, just as Hilary four years ago back in 2016, I’m sitting at the edge of my seat as the results come in, not confident at all that Biden can pull off a victory.…

    Daily Review – Day ending in 2020/11/03
  • Family Elliott and I drove to Lowe’s home improvement store and picked up a new faucet. Normally, Elliott will cry after sitting in the car for more than 10 minutes but not this trip. She did amazing and the two us had a blast at Lowe’s and she helped me select our new faucet since…

    Daily Review – Day ending in 2020/11/02
  • No Halloween this year I used to love Halloween growing up, not so much the dressing up part but the knocking on doors and getting handed fist fulls of candy. Now, as an adult, I love returning the favor and always think about giving out larger than average candy and chocolate. But not this year,…

    Weekly Review – Week ending in 2020/11/01
  • What a weird morning. Totally forgot the the time changed, the clock moving back an hour (i.e. we gain an hour), and found myself studying and working at 03:30 AM (instead of 04:30 AM). When I first woke up and glanced at my Casio watch, I debated whether to get out of bed or not…

    Daily Review – Day ending in 2020/11/01
  • Overview In this post, I’m sharing five tips that I’ve picked up over the last 2 years in the program. At the time of this writing, I’m wrapping up my 7th course (advanced operating systems) in the OMSCS program. This means that I have 3 more courses to complete until I graduate with my masters…

    Five tips for surviving (or thriving) in the OMSCS program as a computer science graduate student
  • An example Summary Key Words: Conditional variable, pthread_signal, pthread_wait in the concrete example (screenshot below), P1 instructions that update memory (e.g. flag = 1) can be run in parallel with that of P2 because of release consistency model Advantage of RC over SC   Summary In a nutshell, we gain performance in a shared memory…

    Distributed Shared Memory (Part 2 of 2) Notes
  • Introduction Summary Main question is this: can we make a cluster look like a shared memory machine Cluster as a parallel machine (sequential program) Summary One strategy is to not write explicit parallel programs and instead use language assisted features (like pragma) that signal to the compiler that this section be optimized. But, there are…

    Distributed Shared Memory (Part 1 of 2) Notes