
that if you want to kept things private then you must have something to hide... Some of us are just paranoid!
The point of Antennagate is spin, to try and include all smartphones that had a demonstrable antenna problem into the same category thereby removing Apple from the spotlight and the story; moving the focus to a more general antenna issue. They're now trying to gain control over the propaganda war and the publics' perception of the problem. Even using '-gate' is part of it, it's such a cliché, it give the whole thing a more boring appearance, since everything these days now end's in '-gate'.
The problem is people want Apple's blood for some reason???
The smaller the data set the more Normalize the database can be structured without a noticeable loss in performance. Large data, (what large is depends on the DB software) lets say 10+ million, then the less normalization the better.
Come up with a naming convention and stick to it. Include a description of the table/fields use in the data dictionary, helps to keep stuff documented.
All tables should have a unique primary key.
Only use a single field as the primary key so table join are fast. Reverse order number PK indexes if the DB supports them.
Only add indexes based off real SELECT statements and not just for the sake of it.
Store the data and indexes on different drives, the same with the undo files or archive logs. This will help load balance IO performance.
Archiving is the key to keeping large data sets manageable.
Figure out the average size of a record in a table then configure the block storage to hold the most amount of them without creating fragmented records. Meaning a record stored in 2 db blocks is very cost to look up when it should be stored in just one. You also want to minimize the white space in a DB block so it doesn’t waist space.
Rebuild indexes regularly for tables that change a lot
Indexes on fields with low cardinality doesn't help much, unless you have bitmap indexes.
I've been running FF 3.6.4 for a 2 week now, download a beta, now the release one and on my laptop when I have a couple of YouTube videos open, if I put my laptop into sleep mode and when I come back all the pauses videos have frozen, they loop 4 frames.
Don't know if this is Flash or FF as both updated around the same time! It's very annoying
.. I won't shed a tear. As pointed out not, they have no games of worth. I enjoyed Assassin's Creed enough that'll I get the squeal. But they have no other titles of worth. Stop making games for the PC if you're worried about Piracy. But it's your lack of a good product that will be the death of you not the cold steal of the Pirate.
Sure you probably never bought them an way! XD
Battle House on the Prairie, the next chapter in BSG.
What about...
Double Dragon
Wolfenstein 3D
Operation Wolf, arguably the first FPS game! All be it a side scroller!
1942
Their list is crap because they want people to talk about how bad it is.
if they actually did a proper list no one would be talking about it.
This is all part of their cunning plan to get us to play the game on the Xbox!
A formal parsing algorithm should not always be used. -- D. Gries