I recently conducted a day long “Interface Design Bootcamp” workshop in New York at the Future of Web Design. We covered a lot of territory including user research, personas, wireframes, sketchboards, prototypes, and usability testing. There are so many useful resources freely available on the Web that make the job of a user experience designer easier. Here are a few of the UX resources discussed and the slides from the workshop.
read on »
The Web Standards Project and Environments for Humans are proud to announce the launch of InterACT With Web Standards, a book that brings all aspects of web design together for teachers and students. To celebrate the release of the book, several of the expert contributors come together online to give mini-tutorials in their fields of expertise:
read on »
Most people run their web sites on one of the many inexpensive shared hosting servers running a LAMP environment. If you are like me, you probably have a number of domain names registered, perhaps all parked on the same server pointing to the same site. It would be great to split things up, though, to point one domain to a particular site on your server, and other domains to their own site. Apache lets you do this using a special .htaccess file, which configures the server software on the fly. You can set up unique sites in their own directory on your server, and then direct Apache to point requests for a particular domain to that folder. Let’s assume the domain you want to redirect is called “somedomain.com”, and the folder on your server where the site files reside is called “somedomain”. Create a plain text file with a text editor and add the following to it:
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteCond %{HTTP_HOST} somedomain.com
RewriteCond %{REQUEST_URI} !somedomain/
RewriteRule ^(.*)$ somedomain/$1 [L]
If you are on a Mac or Linux machine, you will need to save the file as something like htaccess.txt so the operating system does not hide the file (.htaccess is a special name the operating system recognizes, and will try to interpret the commands within). Upload the file to the root directory on your server (sometimes called, htdocs, public_html, or www among other names). Rename it .htaccess, then try accessing somedomain.com in a browser. It should direct your request to the files within the somedomain folder transparently, giving the effect of multiple domains with their own site running on the same shared hosting environment.
Michael Hagel, a former student turned friend, has recently organized an Adobe User Group that will have its first meeting to meet and greet all interested in taking part on Thursday January 11 at 7PM at Deardorff Communications. For more information visit the official site. Michael has some excellent guest speakers lined up for the first few events, and is a wealth of knowledge himself with Flash and mobile platforms.