CartMetrix - Do you know yours?

10/25/2005

Racism Issues and Perspective

I watched the movie Crash this weekend. The story examines the different sides and varying degrees of many different racial backgrounds. The story was gritty and intriguing.

America is an experiment. The first truly multi-cultural experiment in history. History shows us countless examples of multi-cultural societies as a result of war and colonialism. Where is one that was founded purposefully on the basis of ‘All men are created equal’? Even though the phrase ‘All men’ has evolved significantly in the last 150 years, the beauty our founding fathers installed in our constitution was the ability to grow.

Crash shows us we still have a lot of growth to embrace.

Popularity: 14%

Less vs More

Less and more are two Unix command line tools for paging through large files, viewing the output from commands, searching logfiles, viewing man pages, etc.

Less can do everything that more can plus it can do more and it can do it better. Its like more v2, better thought out. Not only with more features, but better implemented base featues. Both can page through files forward (f) or backward (b). Both allow searching and some form of regular expression matching.

Less can read some binary files, like tar archives and RPMs (try a less somefile.tar.gz to see a listing of the filenames contained in the archive).

With less you can pass a text file directly off to vim at the current line for a quick edit and then back less when complete.

To use less as your default pager (for man files etc.) add this to your .bashrc:

export PAGER='less'

(more...)

Popularity: 14%

10/18/2005

Kill a Specific Process of a Specific User

kill -9 `ps -aux | grep user | grep processname | awk '{print $2}'`

Popularity: 15%

10/16/2005

RPM Tricks

List all installed RPM packages

rpm -qa

Search for a specific package

rpm -qa | grep searchterm

Search for a package with a name starting with searchterm:

rpm -qa | grep ^searchterm

Get information about an installed package, including all installed files:

rpm -qil packagename

Find out what files have been changed from the original RPM distribution for a package:

rpm -Va packagename

Popularity: 17%

10/14/2005

DLoads Pepper Version 0.5

DLoads Pepper v0.5 is released.

Changes:

Added better 404 support
Added check for is_dir
Added urldecode to support spaces in filenames

Full information at Pepper DLoads.

Download DLoads-v0.5.zip

Popularity: 34%

Party Shuffle iTunes Scripts

Two scripts to add tracks to party shuffle.

Grabs tracks from the currently playing artist:
Random Tracks by Current Artist to Party Shuffle

Grabs tracks from the selected artist:
Random Tracks by Artist to Party Shuffle

Thanks to Doug Adams for the original scripts to hack up.

Popularity: 17%

Next Page »


damonparker.org is proudly powered by WordPress
Entries (RSS) and Comments (RSS).

copyright © 2002-2008 damonparker.org. all rights reserved.

Close
E-mail It