Uncategorized

Analytiks v1.5 is coming soon

New Analytiks v1.5 submitted. This is the most advanced version ever
@analytiksapp
Analytiks App

The developers of @analytiksapp just tweeted that they have submitted Analytiks v1.5 to the App Store, so I guess it’s a matter of a day or two until it’s available on our iPhones. I just can’t wait for the new release! Bellow is a preview of one of the new features; an infographic generator based on your Google Analytics stats. If you still haven’t got the Analytiks on your iPhone, go grab it from the App Store now. Some of the best well spent $0,99 :)

PS: I’m in no way affiliated with Analytiks, just a happy user.

Fix Unknown table engine ‘INNODB’ error on Munin

In newer MySQL versions, if you have InnoDB disabled, Munin will fail to run giving you the following error:

root@myserver [~]# munin-run mysql_connections
DBD::mysql::st execute failed: Unknown table engine 'INNODB' at /etc/munin/plugins/mysql_connections line 958.

This is caused because the error message is changing between versions and the mysql_ plugin for munin hasn’t been updated in order to recognize it.
The fix is pretty simple, just open /usr/share/munin/plugins/mysql_ with vim on line 958 (hint: vim +958 filename) and replace as bellow.

Original code

    if ($@) {
 	        if ($@ =~ /Cannot call SHOW INNODB STATUS because skip-innodb is defined/) {
 	            $data->{_innodb_disabled} = 1;
 	            return;
 	        }
 	        die $@;

Fixed code

    if ($@) {
 	        if ($@ =~ /Unknown table engine 'INNODB'|Unknown storage engine 'innodb'|Cannot call SHOW INNODB STATUS because skip-innodb is defined/i) {
 	            $data->{_innodb_disabled} = 1;
 	            return;
 	        }
 	        die $@;

Save the file and you’re good to go :)

iOS 5.0.1 beta fixes battery issue

iOS 5.0.1 definitely fixes the battery issue!
@iMZDL
iModZone Downloads

In a previous post I mentioned that after installing the GM (i.e. final) version of iOS 5, I’ve seen my battery life percentage drop below 20% in a matter of a few hours. Now after upgrading to beta 1 on Thursday and beta 2 yesterday, and I can confirm that the battery issue is now fixed :)
My iPhone 4 now easily goes over 24+ hours after a full charge with everything enabled! (3G, WiFi, Location services etc.)

1 2  Scroll to top