Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Second hand games (Score 1) 266

For one, there's the second hand game market. DRM does a good job of killing it. Even with Steam, there's no way to sell your old games.

It's a stupid argument too, though; you have to be willing to suffer all of this bad press and associated lost sales in the hopes that you will get extra sales in the tail end of your product's life-cycle.

It also fails to take into account that most people have a certain finite amount of disposable income they're willing to spend on games. I suppose the studio would rather see you spend money on one new game instead of one two used games, but on the other hand the guy who sold those two used games is probably going to take the money and spend it on a new game.

Comment Everyone in Canada will end up on this list (Score 5, Informative) 97

CIRA (the ".ca" registry) has a feature called "whois privacy" which hides the information of individuals who register domains by default. Only businesses get their information published in the whois database (by default - individuals and businesses can turn this on or off, although businesses need to provide CIRA with a good reason why they want their whois info hidden).

Comment Revised math (Score 1) 192

So, 10^80 atoms in the universe, which is around 2^265, so 2^768/2^265 = 2^503, or a universe 2.6x10^151 times larger than ours (with all of the caveats I've pointed out elsewhere in this thread about how that's a very rough guesstimate.)

Thanks for pointing out my craziness. :)

Comment Re:Can someone explain this to me? (Score 1) 192

Unfortunately, no. We're only trying to factor composite numbers. Prime numbers are easy to factor; they only have two factors, themselves and 1.

Each and every non-prime, or "composite" number is a product of two or more prime numbers. For example, 28 is the product of 2, 2, and 7.

So, we can actually eliminate all the prime numbers from the chart. You also can eliminate all the composite numbers with more than two prime factors, if your objective is only to break RSA.

But using current technology we also need a lot more than just one atom to store each record of the table in. Even using holographic storage you'd need around 10 atoms, and using a traditional hard drive you'd need around 12x10^18 atoms.

Comment Re:Can someone explain this to me? (Score 1) 192

It's true, and you'd also have a hard time encoding two primes on a single atom. But the current estimates on the number of atoms in the universe vary pretty wildly, so it's not a bad guess.

If you really want a more accurate estimate of how much larger a universe we need, you first need to compute the number of composite numbers which are the product of two primes and are less than 2^768. Let K be the number of primes less than the square root of 2^768:

K = PI(root(2^768))

(where PI is the prime-counting function)

The number of composites, N, is "K choose 2", plus all the square numbers:

N = K!/2*(K-2)! + K

So that's the size of the number of values we actually want to store. Storage wise, assume we can store these all in a table sorted by the composite number, and then use a binary search to find the number we're looking for. (This is of course completely preposterous; while you'd only need to access lg(N) records to do a binary search, which is going to be way less than 768, your hard drive is going to take on the order of 10^230 square inches of space to store all this data, so it's going to take your read head a LONG time to do 768 reads all over the disk).

For the naive storage scheme, you'd need 3*768 bits to store each composite and it's two primes. The actual number of atoms you need is dependent on your storage medium. The average storage today for hard drives is around 250GBit/in^2. Stanford has managed a bit density of 35bit/electron with holographic storage technology, which is mighty impressive; you'd only need around 5 atoms per entry.

Then you need to pick which estimate of the number of atoms which exist in our observable universe you like best. :)

Comment Re:Can someone explain this to me? (Score 4, Interesting) 192

Other people have explained factorization in this thread (finding the prime factors that make up a composite number), but I just wanted to point out why making a "nice big chart" won't work.

The "nice big chart" would have to be very big. If you wanted to factor all the numbers from 1 to 2^768, you'd need a chart with 2^768 entries on it. This chart would need to be made of something, or stored on a disk that was made of something. Made of something means it needs to be made of matter, which means it needs to be made of atoms. In the observable universe, there are about 2^84 atoms, so you'd need a universe around 8x10^205 times larger than ours to store the chart in.

Comment Mozilla has made their position on this clear (Score 1) 1124

Mozilla is all about the bling, and usability is a secondary consideration.

Check out this usability bug about resizing the add bookmark dialog. 30 votes, 88 comments, 17 duplicate bugs filed, and still no one has done anything about it.

This fancy new "add bookmark" dialog also broke a pile of screen readers and other accessibility software (although this has mostly been fixed now, AFAIK).

Comment A decade? (Score 1) 633

[quote]I still am quite happy with almost a decade old machines[/quote]

Really? A decade? That's sub-1Ghz. That's two years prior to the release of Windows XP. What modern software are you going to run on a machine that old? At least DirectX was out then, so there exists some software from that era that will run on modern computers (although likely not Vista).

Slashdot Top Deals

FORTRAN is not a flower but a weed -- it is hardy, occasionally blooms, and grows in every computer. -- A.J. Perlis

Working...