Forgot your password?

typodupeerror

Comment: Re:Since encryption is the topic (Score 1) 261

by pesc (#38146346) Attached to: Of all my locally stored data, I encrypt ...

Doesn't OS X have any filesystem-level encryption like ecryptfs or encfs on Linux? Seems like a weird oversight.

Yes it does and it is built in. But it is not supported for the boot partition.

As the parent to your post said, you can easily create encrypted disk images that grow as they are used which you can mount by double-clicking on it. OS X will then ask for the key before the image is mounted.

Comment: Re:GOTO... (Score 1) 394

by pesc (#34474742) Attached to: Programming Mistakes To Avoid

There's nothing wrong with goto.

Correct. It is the labels that mess things up.

{ // long, long code //
a = 1;
a_label:
b = 2;
return a*b;
}

When reading code, the label messes up what you know about the state of the program. What are we returning here? You have to scan the entire function and find the gotos to know.

Comment: Re:SSDs - when will TRIM come to OSX (Score 1) 356

by pesc (#34356756) Attached to: New MacBook Pros To Sport Light Peak Technology

Please mod the parent up!

The referenced article says nothing since they never did a proper reset on the SSD.

Of course OS X needs TRIM. Unfortunately, I don't know of any way to reset an SSD on a Mac. You have to remove the drive and put it in a Linux or Windows machine to reset it properly.

Comment: Because people suck at math (Score 1) 1140

by pesc (#33811740) Attached to: Why Are We Losing Vertical Pixels?

Most people believe that a widescreen 20" monitor gives you "more/better screen" than a "non--widescreen" 20" monitor.

The opposite is true. The 20" measurement is the diagonal of the screen. You get the largest area when the height/width is equal.
The more you increase the width (and reduce the height), the smaller area you get.

The manufacturers benefit because they can sell a 20" screen with less pixels and make it sound more desirable.

Think of a circle where the radius is the screen size...

Comment: Re:Loose potrait mode for good, and go with landsc (Score 4, Insightful) 1140

by pesc (#33811568) Attached to: Why Are We Losing Vertical Pixels?

Do you read?
Books, magazines, etc print text in portrait mode.

Heck, the newspapers even print the text in several columns to avoid very long lines, as that makes text more difficult to read. (I hate programmers that create 200-character statements on one line.)

For people using computers for text (documents, programming, etc) rather than watching movies, the vertical resolution is valuable.

Comment: Re:Why I don't like software patents (Score 1) 175

by pesc (#33745692) Attached to: Red Hat Urges USPTO To Deny Most Software Patents

The problem with this is that if I decide to patent "Online Purchasing of Movies", then I will effectivly shut off all other people and get a monopoly on it

Well, a patent IS a monopoly granted by the state to individuals or corporations.

Patents == monopolies. Let that sink in.

I am a proponent of free markets where anyone can compete. I think monopolies should be abolished. Monopolies or guilds should not exist in a free market economy.
http://en.wikipedia.org/wiki/Guild

It is very difficult to prophesy, especially when it pertains to the future.

Working...