Check out “Google Analytics”
avatar

I use Google’s Analytics to track the traffic on the many websites I maintain. Recently they added a live view which I find pretty cool. I just happened to stumble upon a Google Analytics app in the Play store and thought I would share it. It has the live view I love along with many others stats without being to over bearing. https://play.google.com/store/apps/details?id=com.google.android.apps.giant

Posted in Android, Android Apps, Development, News, Websites | Tagged , , | 5 Comments

PayUp Released
avatar

We are proud to announce our newest app today, PayUp.  PayUp is a payment calculator which confess with many options.

This is going to be a rolling release app which means we are going be releasing new features as they become available.

You can get it right now from Google Play, https://play.google.com/store/apps/details?id=com.djlactose.payup

Posted in Android Apps, News, Our Apps, Payup | Leave a comment

Time Off Tracker Update
avatar

An update to Time Offs Tracker has been released.  The update address you to now track hours as well as days. 

This update also contains a major update to the coding so it is being released as 2.0.

Posted in Android, Android Apps, News, Time Off Tracker | Tagged , | Leave a comment

Test If Linux Server SCSI / SATA Hard Disk Going Bad
avatar

Test If Linux Server SCSI / SATA Hard Disk Going Bad.

Posted in Guides, Linux | Tagged , , , | Leave a comment

Deleting Files with Special Character Names
avatar

Have you ever accidently created a file with an unusual name and then tried to remove it, you will find this helpful.  All files in Linux are assigned what is called an inode number.  This unique number allows you to remove a file regardless of it’s name.

To find out the inode number for a file you can type:

stat <filename>

You can also get the inode of every file in a directory using a flag with the ls command:

ls -i
NOTE: The number in front of the file name is the inode number

Now if you want to do a delete by the inode number it is a little but unsual.  You can’t just do an rm you need to do a find and plug the results into the rm command.

find . -inum <inode number> -exec rm -i {} \;

Posted in Linux | Tagged , , | Leave a comment