zarzax the blog

Tag: wordpress

chmod recursively on directories or files using find

by Mark on May.06, 2009, under sysadmin

Sometimes its the little things that annoy us so much on the Unix command line.  One big question for me was… How to do you differentiate between directories and files when recursively chmod-ing?

The answer is simple.  But of course there are different ways to do the same thing.

Using the find command
find -name '*' -type d -exec chmod 0755 {} \;

NOTE: the -name ‘*’ parameter is used to keep from modifying the present working directory or ‘.’ directory.

find . -type f -exec chmod 0644 {} \;
(continue reading…)

1 Comment :, , , , more...

Take a look at the BluePrint CSS Framework

by Mark on Mar.26, 2009, under Software, Uncategorized

Nice, Simple, Sensible CSS Framework

Nice, Simple, Sensible CSS Framework

BluePrint CSS is a nice, simple, and sensible CSS framework. It greatly reduces CSS development time by providing a solid base on which to extend. Really Cool!

(continue reading…)

Leave a Comment :, , more...

wordpress migration with must have plugins

by Mark on Mar.01, 2009, under Wordpress

zarzax blog engine moved to Wordpress::

Over the last few weeks I decided to move from Drupal to Wordpress. I’ve always liked Wordpress and is near impossible to beat as an Open Source blogging platform.

BarCamp / WordCamp Miami 2009
Creative Commons License photo credit: seanosh

(continue reading…)

5 Comments :, , more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!