Category Archives: Gallery

Photo sets, albums, and visual stories.

Nice Night

I just had a very pleasant evening with friends at Diedrich’s (the usual) and 59 Diner, and the pictures are online. About halfway through the night, everyone started to try taking bad pictures of everyone else, and some were truly horrific ;). As a favor to everyone I’ve taken out the worst one for everybody. So no complaining, because the worst one in the album is nothing compared to the one I didn’t put up :-p. Tonight’s captions are from guest commentator Rachel. Enjoy!

Part II

We just had quite a storm here and the power is just now coming back on for any reasonable length of time. I got another whole set of photos from both before and during the storm that came out interestingly, there will also be a part II of the “Sights Unseen” which will contrast the brightness of the morning with the violent calm before and during the storm.

Photo Shoot Finished

I just finished pulling an all–nighter so I could be up this morning for some absolutely amazing lighting. The past several weeks I’ve been noticing different areas in and around my neighborhood that are really quite striking in their aesthetic quality. With that the idea for this series of photos was born, to capture the beauty that we pass every day and that exists all around us, even in the urban sprawl of southwest Houston. “Sights Unseen” will go online tonight or tomorrow.

Anchor Tag Demystified

I’m writing this mainly for my sister Charleen, who wanted to know this for something on Mullenweg.com, but hopefully it will be helpful to anyone wanting to learn a little HTML.

Most Basic

The purpose of the anchor, or <A> tag, is to reference someplace. Links are the very essence of the web, the hyper in hypertext. Let’s talk about the most most important attribute, href. A very basic link might look something like this:
<a href="http://www.photomatt.net">PhotoMatt</a>
To break it down, the <a at the front indicates the beginning of the anchor tag. After that we have the href attribute, which basically tells the browser where to go when you click on that link. You can have a fully qualified address or a relative address there, which we’ll discuss more in a minute. The place we want to send the browser to is equal to “http://www.photomatt.net”. The two biggest mistakes people make when making an anchor tag are forgetting the equal sign and forgetting to quote the attribute value, in this case “http://www.photomatt.net”. (Note: you can quote it either with double or single quotes, which can be useful when echoing out statements in PHP.) Then we close the first part of the A tag (don’t forget the endquote!) with >. Now we write the text which we want to appear linked, which in this case is PhotoMatt, then we close the anchor tag with </a> to indicate that the link is over. You can enclose multiple words or even an entire sentence. That’s it! You now have a link. Note that all the code should be lowercase, like in the example above. This is a good practice in every version of HTML, and is required in XHTML.

Getting Fancy

Now I know you’re thinking, what more could there be? Well to be honest, there isn’t that much else. One common technique, and one I like to use on this site, it to use the title attribute to give a little more information about the link. The title attribute works functionally just like href, but instead the content displays as a tooltip or popup in most browsers, and can be useful for telling additional information about the link. Here’s an example:
<a href="http://www.photomatt.net" title="Photos and thoughts from Matthew Mullenweg">PhotoMatt</a>
The end result is this: PhotoMatt. In the title attribute you can put a description of the link, warn that it’s a PDF or Word document, warn that it’s opening in a new window, whatever you want. Zeldman.com makes great use of the title attribute on almost all his links.

Another commonly used attribute is target, which tells the browser where to open the link. You should use it when you want to open a link someplace other than the current window or frame. In XHTML the target tag is depreciated (illegal, gone) unless you’re using frames and the corresponding DOCTYPE. The goal of this attribute is to facilitate linking in frames. A common use of the target attribute is to open a link in a new window, and to do that you set the attribute equal to “_blank”. If you’re using frames you can set it to “_top”,”_self”, or “_parent”, which will replace either the entire window, the same window/frame, or the parent framesetting document. If you’re not using frames you should’t have to mess with much other than “_blank”, so don’t worry about this too much. There is one neat trick you might use though: if you want to open new windows on certain links, but you don’t want to be too intrusive, you can have all your links open in one separate window. The target attribute can refer to windows by name, very useful in a framed setting. However if no window/frame with that frame exists, it will open a new one. So if you gave all your link targets the same name, say “dalink”, the first time someone clicks a link with that target it will open a new window. If they leave that window open, go back to your page, and click on another link with an identical target, instead of opening a brand new window it will reuse the window you’ve already opened. A good example of this (again) is Zeldman.com. Here’s a tricked out example of what we have so far:
<a href="http://www.photomatt.net" title="Photos and thoughts from Matthew Mullenweg" target="_blank">PhotoMatt</a>

Coming soon: Accessibility, It’s All Relative, and Style Notes! Keep your dials locked.

New Features

If you browse the photolog you’ll notice a few new features on it. Most significantly, you can now vote on pictures, rating them -1 through 10 according to how much you like the picture. When some more votes start rolling in I’ll implement something that shows the top rated photos. Second I’ve made it so it displays the time and date the photo was taken right above the photo. You have always been able to access this info through the ‘properties’ link but that’s a clunky way to get to it.

There seems to be a bug on the root photo page where the first type you go to it nothing shows up. It is fixed immediately if you just reload, but I can’t seem to track down what is causing the problem. Email me or comment if this is happening to you. Cheers :).

Back to

In summary, the day was wonderful. The company was pleasant, the boat was spacious, the pictures came out great, and I even caught a fish. With all that, the highlight of the day was definitely the jet skis, which I probably spent about 2 hours or more on. The Yamaha WaveRunner I was on had a speedometer, and I’ve decided there is nothing quite like speeding across a glass–still lake at 52 miles per hour with the wind cooling the healthy sun shining down on you. I am so tired I can hardly type, so it’s going to be an early night for me.

To Fish!

It’s waaay to early in the morning and I am preparing to spend the rest of the day on a boat catching fish (or at least trying) with a line and hook. No power, no A/C, no connectivity. Taking camera so look for some snapshots tonight. Until then, I bid the civilized world adieu. 🙂