KS git checkout master git pull git fetch git merge origin/master git checkout -b feedback_form git add feedback.html git commit -m “Add customer feedback form” git fetch git push -u origin feedback_form LDC git checkout master git pull git checkout -b feedback_form origin/feedback_form git log git show 84j34df8 git commit -am “Add something else to […]
Development
Remove all those pesky ._ files
I need to learn why it happens, but copying files from Mountain Lion to my Linux box results in an assload of “._” files. Removing them from the command line was getting frustrating. This helped; find . -iname ‘._*’ -delete
Getting Started with Node.js on Mac OS X
Straight from here. Thanks, Jason. This is a step-by-step process on installing Node.js on Mac OS X. There are several “getting started” tutorials online but I didn’t find much on Mac OS X. The ones I did find were a little confusing since I had no previous experience with Node.js. At the time of this […]
WordPress Images Linking to Themselves
I’m sure it’s happened to you. You’re checking out someone’s website. It looks good. Nice images. Oh, this one’s a link! I wonder where it goes? Oh. It’s the same picture I was just looking at, only now it’s the only thing on the damn page. I don’t like it either, but it’s easy to […]
Simple Post Ordering +1 for Jake!
I absolutely love this plugin! I’m putting the faq here for my own use, but if anyone else reads this, I highly recommend this plugin. [hr][hr] Why can’t I reorder my posts? Generic posts are not displayed by menu order – they’re displayed by chronology. You can theoretically add menu ordering to posts in your […]
Canvas Avatars – rounded to square
Haven’t had a chance to try this yet. Just thought I’d put it here for future reference. #post-author .profile-image img, #comments .avatar img { border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0; }