Imagine.. iMac running Linux?
YES, Linux can run on Mac’s! Im currently installing a Linux distro on my little iMac. This is great!
View ArticleSpace Cube – The World's Smallest Linux PC
Meet the Space Cube — the world’s smallest fully functional PC. Primarily designed for use in space, it somehow manages to cram a working PC with USB ports, card readers, audio outputs and proprietary...
View ArticleCalculate decimal point on shell scripts (bash)
I discovered that I could compute decimal points on a shell script (bash) and I did a little research and found out how. Here’s a way on how you can do math computations on a decimal point on shell...
View ArticleAdd a file extension to vim syntax highlighting
I am trying to edit my template files containing *.ctp and on vim, you usually won’t see any syntax highlighting if it is not a known file extension. So, to activate it for my *.ctp templates. Just add...
View ArticleHappy Birthday Debian
Happy Birthday Debian! My favorite flavor in the whole wide world!
View ArticlePingdom’s HTTP Custom Monitoring
Pingdom is a great company that focuses on your server’s health and I’ve been using them. Then I found this excellent PHP script that Jon Stacey wrote on his blog. pingdom-core.php This is my core...
View ArticleBatch copy then rename multiple files on linux
You can use this script to rename multiple files on linux. for i in us_*; do cp $i `echo $i|sed ‘s/us_/nz_/g`; done The first line will loop to your files matching us_*. Then it will copy the listed...
View Article