There’s no need to load jQuery if all you want are some sexy alert boxes. Apprise is tiny, yet stunning.
Monthly Archives for April 2011
Making Pie with the Peity jQuery plugin 04.25.2011
I spent all of Easter working with HTML <canvas> objects. Here is a really cool jQuery plugin that converts an element’s content into a canvas with pie charts, bar graphs and line graphs. You can even create a custom chart type. So cool.
Password Protect Directories Without Pissing Off Your WordPress Installation 04.25.2011
It’s common for me to have clients that want an online version of their work in progress, but hidden from other eyes behind a username and password. While I recommend that you hold them responsible for providing hosting space in this situation, that’s not always possible. Also, there may be reasons for you to personally password-protect a directory on your server. This can easily be done through .htaccess.
.htaccess
In the directory you want to password protect, you should create (if they are not there already) two files: .htaccess and .htpasswd. In .htaccess, we will put the content telling the server where the username/password list (in .htpasswd) is, that a valid username/password is required to view the page they are trying to access, and what to show in the browser’s prompt:
# here is where we add the rules for requiring authentication AuthType Basic AuthName "SUPER RESTRICTED WEBPAGEALOOZA" AuthUserFile /home/public_html/restricted/.htpasswd require valid-user
So, in this example, I created a directory “restricted” on my jennschiffer.com server. /home/public_html/restricted/.htpasswd is the path to where the server will find the username/password combinations required to access that directory – so it will most likely be very different from your server’s path.
.htpasswd
Now we need to enter the username and password in our .htpasswd file. You want to encrypt your passwords, for obvious reasons. Lucky for us there are plenty of MD5 hashing tools out there to do the dirty work. I used htaccesstools.com’s htpasswd generator to do just that. My username is ‘pancake’ and my password is ‘syrup,’ so the generator says I should copy and paste the following into my .htpasswd file:
pancake:$apr1$lLamq...$hXRnB7f/KNynrY9D/Og7x/
Mmm, that’s some delicious looking syrup. If you want more than one username/password combination, put them on separate lines. That’s all you really need to password protect a directory–unless, of course, you just so happen to have WordPress installed in a directory above the one you’d like to protect.
Playing nice with WordPress
When I first did this for a client, I kept getting 404, or “page not found,” errors thrown at me. There was something in the .htaccess file, content generated by WordPress for controlling permalinks, that was screwing around with my own work. In order to prevent this, you need to go into the .htaccess file in the root of the WordPress installation and add the following before you see WordPress’ “#BEGIN WordPress” code:
ErrorDocument 401 /error.html ErrorDocument 403 /error.html
401 and 403 errors are thrown when you are forbidden or unauthorized from viewing a page (like when someone gets the username/password combination incorrect). What we’re telling the server is to send users to a document in our root called “error.html” if the user is forbidden or unauthorized from viewing that directory, before WordPress tries to get involved. This should stop any false 404 errors. If you do not have an error.html document, change the line to reflect what page you do want the server to take the unauthorized jerk to – or make one.
Here is our prompt, where you should enter the username pancake and password waffle.

Haha I got ya, sucka. That’s not the right password, so you were sent to my error.html document.

Try it again, and put the right password (syrup).

Ah, much better.
So that’s it.
I hope this proves to be as useful to you as it is to me. It’s one thing to have a developmental server set up if you have a big client, or a local server if you are the only one seeing the work, but this is an easy and secure way to protect content on a live server…and to make sure WordPress doesn’t screw it up (for now).
Why I miss IE6 04.18.2011
But even without the older browsers there are still lots of issues with the newest non-IE browsers as well. See the beginning of the post… Now you know that every tiny piece of JavaScript, every non-trivial HTML-code has to be tested in a zoo of browsers. Not to mention mobile devices.
What I’m most perturbed about, in terms of cross-browser compatibility, is that folks are upgrading to IE9 and thinking they have the newest, cutting edge browser. Child, please.
Artsy Editor, (possibly) like OmmWriter, except it's for WordPress 04.14.2011
There’s not much info on the site about this “1st WP plugin made for comfort writing,” except that it’s going to cost something. Sign up for a 50% off coupon, and play the “let’s wait and see how much they think this is worth” game:
It is not finalized yet. The average feedback we got was $10-$20 for a single-user license with unlimited installations. But few people had been telling me that would be underpriced.
(via betalist)
Computer science enrollments rebound, up 10% last fall 04.13.2011
“The dot-com run-up was a pretty heady time for computer science, with many students flocking to the discipline with dreams of internet millions,” said Harsha, who saw the decline as “perhaps a bit of an over-correction.”
That sounds a lot like what’s going on today – although I’d call today’s the .ly/names-with-missing-vowels/geolocation/eternal-beta/hope-twitter-or-facebook-or-automattic-buys-us bubble.
Of course, with this year’s increase, women are showin’ up:
Another finding in the CRA survey is this: Men continue to dominate computer science. The share of women graduates in computer science rose to 13.8% in 2010, an increase of 2.5% from the prior year.
Solarized: "Precision colors for machines and people" 04.12.2011
Solarized is a stunning 16-color palette created specially for terminal applications. Easy on the eyes, but beautiful at the same time. I look forward for the Coda release. You can find a Coda scheme here.
HTML5 Fractal Viewer 04.09.2011

Check it out here. Groovy.
In-browser grid alignment with Griddle.it 04.07.2011
If you’re one of those “design in the browser” nuts like yours truly, Griddle.it lets you add a custom grid to your web page (through CSS background-image) without downloading graphics or sacrificing semantic markup. Quick and brilliant.
"Spring Cleaning" and "Spring Securing" my machine 04.07.2011
My computer is my lifeline. If something happened to it, I would be able to work, which in turn makes paying the rent and grocery bill quite difficult. Perhaps it’s because of the change of seasons, email breaches at Epsilon, or my lesson plan for this week involving computer security and the importance of backing up, but I’ve been doing some major cleanup and securing of my machine.
When it comes to cleanup, I’m focusing on three things I have a habit of hoarding: downloads, bookmarks, and emails. With security, I think of backing up to multiple places and having some sort of way to track my device if stolen. Here are some tips and tools I’ve tried out to help organize and secure my machine this week. Continue reading



