DrupalCon Munich Session Proposal: Espresso Beans!

DrupalCamp Charlotte Proposal: Bean Roasting!

I've proposed an advanced Bean session for DrupalCamp Charlotte next month. Voting for sessions is now open. You can vote for my session here: Bean Roasting: Creating Block Entities and Writing Plugins for the Bean Module (the link is at the bottom of the page).

wunderkammer

Some charcoal colored fowl from Martha Glowacki's Loca Miraculi: Rooms of Wonder at the Milwaukee Museum of Art.

Redirect old domain to new domain using .htaccess

Here's a quick snippet of code to keep around if you ever migrate from an old domain to a new domain.

Shown here is what I used to move brantwynn.com to whaaat.com:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^brantwynn.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.brantwynn.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.whaaat.com$
RewriteRule (.*)$ http://whaaat.com/$1 [R=301,L]
</IfModule>

Update shell to ZSH on OSX & UNIX

zsh shell with solarized dark & dogenpunk theme

((( This is for *NIX users - so OS X or Linux. If you're on Windows, check out: http://zsh-nt.sourceforge.net )))

Today we will be upgrading (re: changing) our shell from bash to zsh!

More on zsh here: http://zsh.sourceforge.net/FAQ/zshfaq01.html#l3

Why do you need it? Well, you don't technically... but I HIGHLY recommend it.

Subscribe to whaaat RSS