Looks like there’s a TypePad Beta Yahoo Group getting started. Just another way for all of us TP’ers to keep in touch.
Tech
Tech-focused ramblings. Computers, blogs, and whatever else fits.
My MovableType/TypePad History
On October 2, 2001, Ben and Mena Trott gave an interview regarding their newly announced weblogging program, MovableType.
On October 8, 2001, MovableType v1.00 was released to the public.
On December 21, 2001, I started using MovableType for my weblog. This would have been v1.31 at the time.
On April 23, 2003, TypePad was announced and the TypePad site went live with some teaser info on the new service.
On June 24, 2003, TypePad beta testing was announced. I, along with many other people, applied for a spot in the next round of testing.
On July 7, 2003, I was notified that I had a new toy to play with. ;)
The point to all this? No point at all, really. Just kind of cool knowing that I’ve been doing my small part to help the Trotts take over the world almost since the beginning. Not quite from the very beginning, but pretty durn close.
Ah, the memories…
Kookaburra asks “will Longhorn eat RAM?”
My “official Microsoft approved answer”: too early to talk about minimum or recommended requirements. We probably won’t talk about minimum requirements until right before launch.
The answer I give my friends after they get me drunk: “yes.”
The rest of his answer is worth reading, where he explains his answer a bit more in depth, without running afoul of the Powers That Be at Microsoft. Still, this got me thinking about how much I miss the days when computers weren’t as powerful as they are now. Not because I’d like to go back to the days of 286’s and Motorola 68000 processors (ick), but because the limited resources forced programmers to weigh features against bloat, to code for small sizes as well as functionality, and so on.
The first computer I owned was a Mac Classic, with 1Mb RAM (that’s not a typo — one megabyte) and no internal hard drive. My senior year of high school, I did all my papers on that machine. I had two 1.4Mb floppys: one with System 6.0.7 to boot the computer, and one that had Microsoft Word v4 and every paper I wrote that school year.
Let me stress that: one floppy. Microsoft Word and every paper I wrote in a school year.
I miss that.
You know, as it stands right now, I won’t buy Microsoft Word. But if they could dig into their archives, pull out the source code for Word v4 for Mac and update it to run on Mac OS X, I’d pop down cash for that in a heartbeat. Best damn word processor I ever used, mainly because it was a word processor, not a over-priced, over-featured, kludgy, pain in the ass piece of bloatware with every conceivable feature tossed in merely because it could be.
But that’s just me.
TrackBack spam? Grrrr…
Well, here’s a first (for me, at least) — I just got TrackBack spam. One of the posts on my other site — this one, to be precise — just got a TrackBack ping (which I’ve just deleted) with no information other than a URL pointing to, of all places, the Thessaloniki Port Authority (http://www.thpa.gr/ — I’m not giving them the Googlejuice of a live link).
Bad enough that they used TrackBack to spam me, but the Thessaloniki Port Authority? That’s just wierd. And on a computer-related humor post, too. Just bizarre.
TPBETA 1505
My own little concept for marking my spot as a TypePad beta tester. A small badge, with ‘TPBETA’ on the left, and ‘1505’ on the right. 1505 is the ID number for my TP blog — obviously, the older the blog, the lower the ID number will be. Just another idea to toss into the mix of ideas running around right now. ;)
On the off chance anyone wants to duplicate this, I used the Kalsey Button Maker with the following settings:
- Outer border:
666666
- Inner border:
ffffff
- Bar position:
50
pixels from left - Left box:
-
- Text:
tpbeta
- Text:
-
- Background:
006699
- Background:
-
- Text color:
ffffff
- Text color:
-
- Text start:
5
pixels from left
- Text start:
- Right box:
-
- Text:
1505
- Text:
-
- Background:
dddddd
- Background:
-
- Text color:
000000
- Text color:
-
- Text start:
4
pixels from the bar
- Text start:
Update (prompted by Grumpy’s comment): You can find your blog ID# by logging into your TypePad admin page, going to your weblog editing screen, and checking the address bar of your browser. The end of the URL will look something like blog_id=1505
— there you go!
TPS Syndrome
Am I suffering from TPS: TypePad Snobbery? You know it, baby! ;)
Common symptoms discovered so far:
- Neglecting reading non-TypePad blogs in favor of discovering new daily reads through the TypePad Beta “Recently Updated” list.
- Neglecting your other, non-TypePad weblog in favor of playing with your new toy.
- Wondering how easy it will be to keep track of fellow TypePad beta testers once everything opens to the public.
- Namedropping “Mr. Dash” in posts just because we can. ;)
Live Comment Previews
The ‘Live Comment Preview’ hack that I use on The Long Letter has now been implemented here on Eclecticism. If you know what I’m talking about, then we’re good to go. If you don’t know what I’m talking about, then click on the “Comments” link to any post, type something in the comment box, and look just below the comment box. It’s a nifty trick. ;)
I originally picked this up from ScriptyGoddess, with help from Phillip. Geeky tech details on my implementation here follow.
All this is is a nice little JavaScript addition to the page. I don’t believe that this will constitute a security risk, but I’m no expert, so use at your own risk. ;) Obviously, if you do want to use this on your site, you’ll need to have access to your templates.
In the header of the individual entry template, just after the already included JavaScript bits, I added the following code:
<script type="text/javascript">
var newline = /n/g;
function ReloadTextDiv() {
var NewText = document.getElementById("text").value;
NewText = NewText.replace(newline, "<br />");
var DivElement = document.getElementById("TextDisplay");
DivElement.innerHTML = NewText;
}
</script>
Then, in the body of the template, just after the closing </div>
tag following the preview and submit buttons, but before the </form>
tag, I added the following:
<br />
<h2>Live Comment Preview:</h2>
<span id="TextDisplay">Note: if you're comfortable with HTML, feel free to use it in your comments. If not, just type away. Single returns will be automatically converted into linebreaks (<br />), double returns will be converted into paragraph breaks (<p>). This text will disappear as soon as you start typing.</span>
Lastly, in the textarea
tag that defines where the comment text is entered in by a visitor, I added a onkeyup="ReloadTextDiv();"
declaration. The full textarea
tag should look as follows:
<textarea tabindex="4" id="text" name="text" rows="10" style="width: 80%;" onkeyup="ReloadTextDiv();">
What all this does is actually simple enough. As a visitor enters their comment into the comment box, each time they release a key the onkeyup
function calls the ReloadTextDiv
JavaScript snippet that I added. This function loads any text inside the comment box (identified by its ID of "text"
), replaces any carriage returns with <br />
tags so that line breaks appear correctly, then writes the output into the element identified as "TextDisplay"
— in this case, between the span
tags I added after the submit and preview buttons.
If you find this useful, feel free to use it in your own pages. While I wouldn’t refuse credit, it really does belong to ScriptyGoddess and Phillip. Enjoy!
The skyline is back
One minor change to the site design here — I moved my shot of the Seattle skyline that I use over at The Long Letter to this weblog also. Even when that’s the only change, replacing that garish green with the black and white skyline gives a very different feel to the page. I like it. It’s a return to the cool blue/grey combination that I keep returning to.
Bright neon lime green just wasn’t “me”, anyway. ;)
Squirrel Monkeys
Two pieces of news broke in one day yesterday.
Item one: “Microsoft acknowledged a critical vulnerability Wednesday in nearly all versions of its flagship Windows operating system software…[which] could allow hackers to seize control of a victim’s Windows computer over the Internet, stealing data, deleting files or eavesdropping on e-mails.”
Item two: “The Homeland Security Department has chosen Microsoft Corp. as its preferred supplier of desktop computer and server software, according to a statement issued late Tuesday. …perhaps most important to Homeland Security’s mission to get agencies communicating more easily, Microsoft will provide the standard e-mail software for the entire department.”
I loved Jeffrey Zeldman’s summary:
Let’s see what the government might have chosen in its effort to protect American lives from ruthless, technologically sophisticated terrorists:
- UNIX, Linux
- Inexpensive or free.
- Requires some user knowledge.
- Practically invulnerable to attack.
- Mac OS
- Costs money.
- Easy to use.
- Practically invulnerable to attack.
- Windows
- Costs money.
- Easy to use.
- Can be hacked by a squirrel monkey, thus is wide open to attack.
- Produced by a company the Department of Justice found guilty of criminally abusing its monopoly power — a finding that is supposed to result in punishment, not in fat contracts bankrolled by taxpayers.
To the bureaucratic mind, the choice was obvious.
Sounds safe and secure to me.
Plain text in Apple's Mail program
For some reason, Apple doesn’t include a preference to default to plain text in Mail, the bundled e-mail application. The preference is there, though, just not in the interface.
Quit Mail, then type this into the command line:
defaults write com.apple.mail PreferPlainText -bool TRUE
(via MacOSXHints)