Tag Archives: Tech

High Definition Politics

Mark Pilgrim has an very interesting list that I think adequetely describes the current state of the entire HDTV fiasco. The people I talked to in DC about this (no names) thought the whole situation was funny, like a catfight, so I think the list is espescially apt in capturing that feel. Will the market actually smooth this all out? Eventually. It always does.

On another TV related note, I watched it for the first time in over 7 months yesterday. At the encouragement of my friend Julie I turned on Seinfeld, then watched Friends, and finally an episode of Everybody Loves Raymond. I’ve decided that I haven’t really been missing much; the same old reruns that were playing before were on tonight. Just a note, some people get confused when I say I “haven’t watched TV,” and look at me strange, so to clarify I haven’t watched any broadcast or cable programming in the past 7 months at home. I’ve watched televisions as a medium for displaying DVDs or videos, and I’m sure at some point I saw broadcast television in a waiting room or some other similar situation, but I’m not counting that.

I Want My MTV

That’s MattTV. There’s going to be a new weekly TV show about Palms, and I have been chosen as one of the co-hosts. The show will be cable only, and will go out on the three major Houston providers—Time/Warner, Max, and another one I can’t remember. The show will begin airing in September, but the actual production will start relatively soon. I’ll be able to post more details soon. Stay tuned!

Breadcrumb Script

I just hacked out this bit of PHP to make nice titles and header URLs throughout the site. It needs some customization specific to this site, but before I do that I wanted to post it just in case anyone wants to use it on their site:

Sorry, this code has been depreceated because it has a few known bugs and I don’t have time right now to go back and fix it up. Sorry!

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.

The Dark Side of Hacking Bill

Wired — The Dark Side of Hacking Bill

“Contrary to widespread, if uninformed speculation, our legislation is narrowly crafted, with strict bounds on acceptable behavior by the copyright owner,” Berman said in a statement. “It gives copyright creators a very limited safe harbor from liability when they use technological tools for the narrow purpose of thwarting P2P piracy. It does not allow copyright owners to send viruses through P2P networks, destroy files, hack into the personal files of P2P users, or indiscriminately block lawful file-trading.”
. . .

“Will having a firewall — or implementing strong system security practices or being a good system administrator — become illegal and prosecuted as circumventing copyright controls under the existing Digital Millennium Copyright Act?”

Getting Better

Well it’s looking like all the trouble with the desktop is related to some funky memory, and now that I’ve taken it out things are rock solid again. Espescially now that the new motherboard came in the other day and it has been working out great. It has a ton of cool features that I know I’ll never use, like a voice that tells you what goes wrong (if anything) during POST. Some other things though, such as the DDR333 RAM, USB 2.0, and ATA133 I hope to utilize sooner rather than later.

Update

Okay well the installation finished, and it booted XP up and I was able to do a few things. I decided to reboot to make sure everything was kosher, and what do you know, it isn’t. Currently it looks like NTLDR, the loader for the operating system itself won’t load. I’m not sure exactly why I’m going to all this trouble with the new motherboard coming tomorrow, but I would like to get it working tonight. Hopefully the new motherboard will fix things.

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 :).

Apple – Mac OS X

Apple – Mac OS X: Amazing. Even as a Windows/Linux dork I can’t help but appreciate the attention to detail and aesthetics that went into this operating system. Some of the neater features include the new Sherlock, which they cleverly bill as “Web services for the rest of us,” and Rendezvous, a combonation of auto-discovery and Bluetooth/WiFi. Rendezvous is the most exciting to me because it’s a precursor to what I’ve been predicting will happen with Apple and Bluetooth; hopefully we’ll start seeing a lot more Bluetooth products on the market soon!

State of Mind

I have bad news, and weird news. The bad news is that my desktop (Gamebase) is sick, very much so. It all started when I installed the .NET update and firewire card in the same reboot, and went downhill from there. At one point explorer.exe (start bar, etc.) wouldn’t start because of a missing DLL file, then IE wouldn’t work, but Mozilla would. Then I noticed that about half of my Windows directory had become corrupted, and had about 200 missing DLL files. After doing a home-brewed fix and simply copying them over from computer number 2, a few more things worked, but still it was patchy. After a reinstall of XP, now it simply won’t start, and freezes on boot. *sigh*

Anyway this is a wonderful oppurtunity to renounce Microsoft and convert the box to all-GNU/Linux workstation.

Now for the weird news: Taking the main hard drive out of my desktop (a 40GB Fujitsu) I noticed there was something written on the side. Closer examination revealed a name, Lucille. Now I’m not sure at what point or what state of mind I was in when I named one of my hard drives, but I hope it never happens again. I’m going to stick to the story that it’s a tribute to B. B. King, and leave it at that.