Posts by this author

Dec 27, 2003
Post comments count0
Post likes count0

How to hide privacy violations in a privacy disclosure statement

I'm looking over my Fidelity privacy disclosure statement, titled "Our commitment to privacy". Google is amazing: It found a copy online: Our Commitment to Privacy. Scroll down to How and Why We Obtain Personal Information, fourth bullet point: (Italics added.) The italicized phrase translates as "We will collect personal information in order ...

Non-ComputerReading the fine print
Dec 26, 2003
Post comments count0
Post likes count0

Famous people doing mundane things = news!

So an actor learns a foreign language and it's news: Actor Kingsley Masters Farsi Language. Meanwhile, tens of millions of people around the world learn a foreign language without any media coverage whatsoever. (And if you read the article: He didn't master Farsi. He mastered basic Farsi. Whatever that means.)

Non-ComputerNews flash
Dec 26, 2003
Post comments count0
Post likes count0

You can read a contract from the other side

An interface is a contract, but remember that a contract applies to both parties. Most of the time, when you read an interface, you look at it from the point of view of the client side of the contract, but often it helps to read it from the server side. For example, let's look at the interface for control panel applications. Most of the time, ...

Code
Dec 25, 2003
Post comments count0
Post likes count0

What order do programs in the startup group execute?

The programs in the startup group run in an unspecified order. Some people think they execute in the order they were created. Then you upgraded from Windows 98 to Windows 2000 and found that didn't work any more. Other people think they execute in alphabetical order. Then you installed a Windows XP multilingual user interface language pack and fo...

Tips/Support
Dec 24, 2003
Post comments count0
Post likes count1

Why not just block the apps that rely on undocumented behavior?

Because every app that gets blocked is another reason for people not to upgrade to the next version of Windows. Look at all these programs that would have stopped working when you upgraded from Windows 3.0 to Windows 3.1. Actually, this list is only partial. Many times, the compatibility fix is made inside the core component for all programs rath...

History
Dec 23, 2003
Post comments count0
Post likes count0

When programs grovel into undocumented structures…

Three examples off the top of my head of the consequences of grovelling into and relying on undocumented structures. Defragmenting things that can't be defragmented In Windows 2000, there are several categories of things that cannot be defragmented. Directories, exclusively-opened files, the MFT, the pagefile... That didn't stop a certain software...

History
Dec 22, 2003
Post comments count0
Post likes count0

The cult of PowerPoint

Recent articles on how PowerPoint contributed to failure at NASA reminded me that this is hardly a new discovery. The Department of Defense long ago discovered that PowerPoint is a great way to hide the fact that you don't know what you're talking about. I remember reading an article (which I of course can't find now) of a "cult of PowerPoint". App...

Other
Dec 22, 2003
Post comments count0
Post likes count0

One in five Swedes steal their Christmas tree

According to Aftonbladet, "Gathering Stockholm's finest news from overheard conversations on the street corner", En av fem stjäl sin julgran. ("One in five steals their Christmas tree.") This of course comes from a highly scientific online reader poll. The question is, "How do you get your Christmas tree?" and the response categories are (from...

Non-Computer
Dec 22, 2003
Post comments count0
Post likes count0

How do I determine whether I own a critical section if I am not supposed to look at internal fields?

Seth asks how he can perform proper exception-handling cleanup if he doesn't know whether he needs to clean up a critical section. I'm using SEH, and have some __try/__except blocks in which the code enters and leaves critical sections. If an exception occurs, I don't know if I'm currently in the CS or not. Even wrapping the code in __try/__finall...

Code