Latest Tweet
- Remember folks: the blue mini neon sour gummi worms are best. 2 weeks ago
- More updates...
Categories
Tags
academia alcohol animals boyfriend cooking databases email forwards family Flickr food friends health Lexington Linux list Mario math movies music news OS X Perl photos PHP politics programming quizzes Rails rants reading Ruby screenshots shopping Sims sports themes tutorials Twilight is ridiculous vehicles video games videos weather Web development work zombies again-
Recent Comments
-
Random Quote
Great liars are also great magicians.
— Hitler Syndication
All posts RSS feed
Tag Archives: Web development
Introduction to Web Design presentation
View PDF »
This is a very basic introduction on how to go about creating a web page. It was to last for about ten minutes and given to an audience of middle schoolers. See also the handout I made for them containing links to various resources.
CSS Web Design presentation
View PDF »
This lasted about an hour, if I remember correctly, and skimmed over HTML and CSS basics before delving into guidelines for improving a web page’s appearance through CSS. The audience was my fellow college students who may have had some knowledge of HTML and CSS, but no background in professional web design.
using Javascript and CSS to mark outgoing links
It may be useful to your visitors to know which links will take them off of your site without having to hover over all of them. It might also be a nice touch to mark links pointing to PDF documents, for example, with a little Adobe PDF logo. With the help of Javascript [...]
Posted in Programming Also tagged CSS, Javascript, programming, tutorials 4 Comments Current music The Way I Are by Timbaland
using AJAX to spiff up a gallery
Lightbox is nice and all, but sometimes I find it clunky, particularly in Firefox when I have a lot of other tabs open. However, I don't want to go the route of having an image load by itself in the browser, because it would be so much nicer to have it integrated into my [...]
how to be a snobby web designer
I’m not talking about the attitude that comes across in your writing, but instead how you design your pages. I’ve seen these problems crop up from time to time on various sites and it always bugs me, because you’re pretty much saying to a certain group of users that you don’t care about them [...]
using Perl and Apache on OS X
What was this /private/etc/httpd/users/sarah.conf that it was talking about? I had never created this file. I checked and it certainly existed. It also had an Options line without ExecCGI--bingo! I simply removed the file because it was just redefining what I had already specified in httpd.conf for Users/*/Site directories (shown above). I then restarted Apache and voila, my scripts worked.
custom shapes in Photoshop
Custom shapes can be very useful for making multiple objects that look the same. For example, say you want several photos to all be cut out of the same shape, like this:
Creating a Custom Shape
Create a blank 200 pixels x 200 pixels image. Select the Rounded Rectangle Tool and set its radius to [...]
Clichés of a Crappy Site
If you’ve browsed through many personal sites at all, you’ve probably seen some of the following things that make me personally cringe. I don’t understand why they’re so trendy, since they don’t improve a site in the least.
The example images link to the web sites from which I took the screen shot.
Text
Tiny fonts
The purpose [...]
simple photo gallery script
A very simple photo gallery tool. It displays a set of thumbnail images (made by you) and then each individual image when clicked.
Requirements
You need PHP support on your server. An easy way to test this is to stick <?php phpinfo(); ?> into a .php file, upload that file to your server, and load [...]
regular Javascript v. AJAX for dynamic content insertion