The internet is powered by beards.

(via aguiney)

disruptor:

Organized Religion (Microsoft) vs. Atheism (Open Source)
editorial cyberculture cartoon and top ten OS jokes by laughzilla for thedailydose.com

disruptor:

Organized Religion (Microsoft) vs. Atheism (Open Source)

editorial cyberculture cartoon and top ten OS jokes by laughzilla for thedailydose.com

When I first worked with Red Hat back in the 90s “Redneck” was one of the language choices in the installer. Seriously.

When I first worked with Red Hat back in the 90s “Redneck” was one of the language choices in the installer. Seriously.

2003 called and they want their joke back

2003 called and they want their joke back

(via jonathanmesny)

substring removal in bash

opentumble:

A handy way to turn $0 into just the dentry name of the called script.

Sample script:

#!/bin/bash

mypath="$0"
myname="${0##*/}" # greedy delete */ from the front
echo "my path = $mypath"
echo "my name = $myname"

Save it and run it. Change the name (or move it) and run it again.

The special sauce:

${string##substring}

Read more about string manipulation in the Advanced Bash Scripting Guide.