Here are the steps it took to get my Edimax EW-7811Un wireless usb adapter up and running: goto: sudo nano /etc/network/interfaces and update with: auto lo iface lo inet loopback auto eth0 allow-hotplug eth0 iface eth0 inet manual auto wlan0 allow-hotplug wlan0 iface wlan0 inet manual wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf auto wlan1 allow-hotplug wlan1 iface wlan1 inet …
Robot That Makes Breakfast
A little humor for the day. View post on imgur.com
2016, My System For Personal Organization
At some point you stop waiting for time. If you aren’t where you want to be in life, when you come to this realization, it can be an empowering, energetic, feeling. Hopefully. You take that energy and use it to build a bridge to that place you want to be. I used it to develop …
Continue reading “2016, My System For Personal Organization”
Autonomous Cars
Interesting excerpt from MIT’s technology reveiw. Bonnefon and co say these issues raise many important questions: “Is it acceptable for an autonomous vehicle to avoid a motorcycle by swerving into a wall, considering that the probability of survival is greater for the passenger of the car, than for the rider of the motorcycle? Should different …
Compiler Optimization
Link to Compiler Optimization article on MSDN This article is about Visual C++ compiler optimizations. I’m going to discuss the most important optimization techniques and the decisions a compiler has to make in order to apply them. The purpose isn’t to tell you how to manually optimize the code, but to show you why you …