Metzalli
Some interesting paintings for inspiration. http://www.metzalli.com/paintings.html 
Get Electricity Usage Analytics Like The Utility Companies
Ever wanted to track how much electricity a device at home is using over time? Here is a nice DIY for doing just that. It does require a bit of soldering but not much.
http://www.element14.com/community/groups/raspberry-pi/blog/2013/04/05/raspiwatt-discover-power-consumption-using-a-kill-a-watt-pi?et_cid=22582622&et_rid=3848540&Linkid=http%3a%2f%2fwww.element14.com%2fcommunity%2fgroups%2fraspberry-pi%2fblog%2f2013%2f04%2f05%2fraspiwatt-discover-power-consumption-using-a-kill-a-watt-pi&CMP=EMC-22582622
Bitbucket brightens my day from the github pricing gloom
I've been using github for a while now and honestly, it rocks. It really beats the heck out of the dinosaur, svn. However, the pricing for private repos on github is just something I had a hard time justifying. I have been running my own svn server for quite a while and it does not create additional cost to me. Plus, I can have unlimited number of private repos and of course because I can, I do. So in order to switch to github and shutdown my svn server, I would have to pay $50/month since I have more than 20 projects.
Alas, I have found what I'm looking for. Bitbucket. It is also git, although you can use mercurial too, but I just prefer git. It has all the niceties of github like integrated issue tracking, ease of collaboration, and of course all the good stuff of git. But the pricing is very different. They take the route that if you don't have many contributors to a project, then it is too small charge. So they allow you to have private repos for free up to 5 users. After that, you need to start paying. That makes a lot more sense to me since after that, you are definitely running a legitimate business and should pull your weight. Before that, they are considered play projects or incubator projects. Oh, and you can have unlimited number of free private projects.
Time to say goodbye to my svn server.
Laravel, another php framework to explore
Laravel is a framework in the same class as Codeigniter. However, at first glance it implements a couple of annoying missing features I've waited a longtime for CI to add but have yet to do it: full unit-testing and ORM. For ORM, there have been many third party addons/sparks that would add the functionality but not from base install. Unit testing is a much bigger problem in CI. There is no good way to integrate php-unit or simpletest to test your code. So we are left trying to unit test with the joke implementation of unit testing library from CI.
I'm hoping Laravel will prove to be as amazing as what people have been raving about in the blogsphere. Can't wait to give it a shot.
Future of web components using X-Tags
https://air.mozilla.org/x-tags/
This is something I have to start using instead of JQuery widgets. Seems to be better encapsulated for cleaning end usage.
Solving httpd MaxClients and mod_status stuck
Solving httpd MaxClients and mod_status stuck.
This article really demystifies how php sessions should and should not be used. Especially if you are using a lot of AJAX within a page and they all use session, being efficient with closing sessions immediately after you're done is a must.
Kelli Anderson Designs
Came across this via a TED talk. I especially like the paper folding project she made as a holiday card.
DollarShaveClub.com – Our Blades Are F***ing Great – YouTube
Great way to promote a new startup.
Ubuntu 12.04 LTS Beta Is Out
There are supposed to be many changes in the upcoming release of Ubuntu desktop. One notable UI change is HUD (Head-Up Display) where you can type a menu command to get to an application's functionality without navigation through the menu system. It is useful for users who are experienced with an application and know what they want to get to without menu, sub-menu, sub-sub-menu, etc.
I will need to do a VirtualBox install to play around soon.
http://www.pcworld.com/businesscenter/article/251367/ubuntu_linux_1204_oneups_windows_and_mac_shuttleworth_says.html
How To Keep An Android Service Running
How to keep an Android service running? This is kind of a trick question as the best practice is to not keep an Android service running. If you need to have something done continuously by your app via a service, the service should be started by an AlarmManager at a regular interval and kills itself after the task is done. The reason for this is that a long running service on Android is up to the OS to determine priority and in some cases would stop running. By using this methodology, you are treading lightly since the service does not stay in memory.
Here is some sample code.
Service implementation
public class HeartBeat extends Service {
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
@Override
public void onStart(Intent i, int startId) {
this.beat.run();
this.stopSelf();
}
public Runnable beat = new Runnable() {
public void run() {
// Do something
}
};
}
The AlarmManager that starts it.
Intent iHeartBeatService = new Intent(this, HeartBeat.class); PendingIntent piHeartBeatService = PendingIntent.getService(this, 0, iHeartBeatService, PendingIntent.FLAG_UPDATE_CURRENT); AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); alarmManager.cancel(piHeartBeatService); alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), 1000, piHeartBeatService);
Now the heartbeat service will start every second and do something and kill itself.