Entries Tagged 'Tech Tips' ↓

Testing MacJournal’s Blog Posting Feature

I bought MacJournal as part of the recent MacUpdates Bundle and started playing with it over the past weekend. One of the features that interested me the most about MacJournal is its ability to post a journal entry to a variety of blog types. I just went through the simple MacJournal blog entry configuration wizard. This entry was created to test the actual blog posting process. If it works, this $34.95 application will impress me more than it already has.

Disagree with Consumer Reports eMachines Budget Desktop Pick


My eMachines T6420 died about 10 days ago. Looks like a system board problem and, quite frankly, not worth the cost and effort of replacing an out-of-warranty motherboard. So, I’m in the market for a low-cost desktop PC to replace it. Consumer Reports (Sept. 2008 issue) has a bunch of computer picks in various categories. The three listed in the Budget category are the Gateway GT5670, Dell 530S, and eMachines T5254 (FYI, eMachines was bought by Gateway which in turn was bought by Acer). I have a real problem with them recommending any eMachines model. And, here’s why. I’ve bought five (5) eMachines desktop PCs since 2002. They were the clear price leader with what seemed like decent components in them (for the price). The problem is that I’ve had major component failures in four of the five in that time period. Moreover, these were the kind of failures that I have not seen in PCs from other manufacturers in the same time period.

For example, the photo above is a section of the motherboard of a eMachines T1840. It quite literally fried. Capacitors all over the motherboard erupted and look like the cluster pictured above. I tried to contact eMachines to say: Hey, I know my PC is out of warranty. I am not asking for repairs. But, you should be aware that you may have a safety issue should this model go up in flames. All I received back was a form email pointing me to their replacement parts ordering page. I have never seen any other motherboard in a PC purchased during this same period have this kind of problem. I’ve also had three (3) CD or DVD drives fail in various eMachines PCs. And, I think I’ve had memory DIMMs go back in three of five eMachines PCs too. I have not seen this kind of problem in the various Dell PCs I’ve bought and used over the same time period. On the other hand, all three of my Dell Latitude notebooks have required motherboard replacement during their three year warranty period.

So, my objection to the Consumer Reports pick of the eMachines T5424 has nothing to do with its specs or price. However, after a series of component failures (including the spectacular capacitor flameout in the T1840), I know I’m not going to purchase another eMachines PC.

Borders Order Starts with UPS then Transferred to USPS

This is kind of interesting. I ordered something online the other day. UPS processed the package first and then handed it off to the US Postal Service (USPS). I knew that UPS actually handled orders for a number of firms in the sense that they actually handle inventory in addition to shipping. But, this is the first time I’ve seen a packaged handed off from UPS to USPS for the final delivery.

Check Your Old CDs and Their Sleeves!


I’ve been cleaning up and reorganizing the work room in my home since I’m spending so much time there these days. I found a bunch of CDs stored in white plastic sleeves that I think were recycled from the discs that my MSDN subscription CDs came in during the late 1990s (they currently come in black sleeves made from different feeling materials). All the slleves (now at least 10 years old) were disintegrating into a white powder. I’ll probably clean the CD surfaces with an eyeglass cleaner (mild solution) before trying them in a reader. But, the lesson learned is to check the sleeves and other containers more frequently.

Word 2003 Macro to Paste Unformatted Text

It turns out that Microsoft Word 2003 canNOT correctly record a macro to paste unformatted text. Word’s macro recorder kept storing the command to paste text as-is (e.g., with web formatting). I didn’t know the command for an unformatted text. Fortunately, I found this blog entry that explains how to do this. You can see the incorrect macro command commented out in the Word macro below. The correct command to paste unformatted text is below it.

Sub PasteUnformated()

‘ PasteUnformated Macro
‘ Macro recorded 7/20/2008 by Todd Ogasawara

‘ Selection.PasteAndFormat (wdPasteDefault)
Selection.PasteSpecial DataType:=wdPasteText
End Sub