Monthly Archives: July 2010
3 Unix Shell Scripts – User Activity, View Processes, Display Memory
/bin/bash w > /tmp/a echo “Total number of unique users logged in currently” cat /tmp/a| sed ’1,2d’ | awk ‘{print $1}’ | uniq | wc -l echo “” echo “List of unique users logged in currently” cat /tmp/a | sed ’1,2d’| awk ‘{print $1}’ …
Emacs Macro Tutorial: How to Record and Play
Let us take the following text snippet as an example. $ cat thegeekstuff.txt * virtualization technologies * sed and awk tips/tricks * emacs tutorials * bash scripting tutorial series …
[xampp+komodo] php code beautifier
That’s very simple and easy. c:\xampp\php>PEAR install PHP_Beautifier-beta After install PHP_Beautifier,you will find the c:\xampp\php\php_beautifier.bat And just Do as below pictures
WordPress Theme Frameworks: Options You Should Consider
There is no doubt that WordPress is an awesome piece of open source application, and in addition, creating custom themes for it is very intuitive and relatively easy with the WordPress API. With that said, creating your own custom themes from scratch can be very time-consuming, with plenty of unnecessarily repetitive tasks
WordPress admin side query debug
Sometime I really hat wordpress query module.
For debug ,it is too many package!!
Now I show the way to sql debug
10 Awesome New Premium WordPress Plugins from CodeCanyon
Shared by 小董 CodeCanyon一定有給他錢 As part of our massive CodeCanyon push this year, I’m pleased to announce that we’ve launched not one , but two awesome new categories. The new CSS category features everything from incredible pricing charts , to buttons , to entire frameworks ; while the WordPress plugins category is quickly on its way to becoming the premier location for purchasing premium plugins on the web.
Increase Productivity by Creating PHP Helper Functions
Every workman needs a good toolbox, and web developers are no different. PHP helper functions are designed to speed up and homogenise repetitive tasks, and make your life that much easier