osx on davidchua https://dchua.com/tags/osx/ Recent content in osx on davidchua Hugo -- gohugo.io en-us Mon, 24 Mar 2014 00:00:00 +0000 In OSX, SD Card transfers can be painfully slow https://dchua.com/posts/2014-03-24-in-osx/ Mon, 24 Mar 2014 00:00:00 +0000 https://dchua.com/posts/2014-03-24-in-osx/ Over the weekend, I was trying to experiment with some SD card images for the UDOO Board. When copying a new image into my SD Card, I realized that I was getting a really ridiculous slow writing speed of 1MB/s. This means that an 7GB image will take 100+ minutes just to copy. It didn’t feel right with me and doing some quick googling, I’ve found out that if I’m doing a dd directly to /dev/diskX which is where the sdcard is normally mounted, I’ll be subjected to this slow speed. Getting OSX to load .bashrc on Terminal start https://dchua.com/posts/2013-06-21-getting-osx-to-load-bashrc-on-terminal-start/ Fri, 21 Jun 2013 00:00:00 +0000 https://dchua.com/posts/2013-06-21-getting-osx-to-load-bashrc-on-terminal-start/ OSX doesn’t load bashrc when you open up Terminal. Add the following to your ~/.bash_profile to get your bashrc scripts working. [[ -s ~/.bashrc ]] && source ~/.bashrc