.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $6.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #11  
Old August 20th, 2003, 10:07 PM
DavidG's Avatar

DavidG DavidG is offline
Lieutenant Colonel
 
Join Date: Jan 2002
Location: Dundas, Ontario, Canada
Posts: 1,498
Thanks: 0
Thanked 0 Times in 0 Posts
DavidG is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by Suicide Junkie:
4) Just because it is from a big, well known company does NOT prevent it from being a scam!
Ditto on this. here is a scam I could have fallen for if the scammer had not been so greedy.
It was (well claimed to be) from my ISP (sympatico.ca) claiming my account was not up todate. The kind of message you get when say your Visa expires and they don't have the new expiry date.
So I click the link and get to a Sympatico page (a fake one but very well done). The only thing that triggered the warning flags were that the moron asked for some very personal info the the ISP would never want (ie PIN number, drivers license etc) Had he just asked for the Visa I may have fallen for it.
__________________
SE4Modder ver 1.76
or for just the EXESE4Modder EXE Ver 1.76
SE4 Mod List
Reply With Quote
  #12  
Old August 20th, 2003, 10:25 PM
Jack Simth's Avatar

Jack Simth Jack Simth is offline
Major General
 
Join Date: Oct 2002
Posts: 2,174
Thanks: 0
Thanked 0 Times in 0 Posts
Jack Simth is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by DavidG:
It's hard not to be paranoid when MS sends you the F#$&*#^ thing 100 times!! I also got it multiple times. Why the heck would they do that??
They send it to everyone on their lists once. However, apparently, it's possible to get on their lists more than once. With the number of addresses they have, and the fact that removing duplicates is an O(n^2) operation, I can understand why they do.
__________________
Of course, by the time I finish this post, it will already be obsolete. C'est la vie.
Reply With Quote
  #13  
Old August 21st, 2003, 01:03 AM
Thermodyne's Avatar

Thermodyne Thermodyne is offline
Lieutenant Colonel
 
Join Date: Dec 2000
Location: DC Burbs USA
Posts: 1,460
Thanks: 0
Thanked 1 Time in 1 Post
Thermodyne is on a distinguished road
Default Re: Scam Or Not?

Read this before patching...

http://www.theinquirer.net/?article=11124
__________________





Think about it
Reply With Quote
  #14  
Old August 21st, 2003, 12:43 PM
DavidG's Avatar

DavidG DavidG is offline
Lieutenant Colonel
 
Join Date: Jan 2002
Location: Dundas, Ontario, Canada
Posts: 1,498
Thanks: 0
Thanked 0 Times in 0 Posts
DavidG is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by Jack Simth:
quote:
Originally posted by DavidG:
It's hard not to be paranoid when MS sends you the F#$&*#^ thing 100 times!! I also got it multiple times. Why the heck would they do that??
They send it to everyone on their lists once. However, apparently, it's possible to get on their lists more than once. With the number of addresses they have, and the fact that removing duplicates is an O(n^2) operation, I can understand why they do.
The biggest software company in the world that has written some of the most complex programs can't remove duplicate addresses from a list??? What's wrong with this picture.
__________________
SE4Modder ver 1.76
or for just the EXESE4Modder EXE Ver 1.76
SE4 Mod List
Reply With Quote
  #15  
Old August 22nd, 2003, 12:54 AM
Krsqk's Avatar

Krsqk Krsqk is offline
Lieutenant Colonel
 
Join Date: Jul 2001
Location: Orlando, FL
Posts: 1,259
Thanks: 0
Thanked 0 Times in 0 Posts
Krsqk is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by dogscoff:
I always strip MSN and MSMessenger off all my systems at the earliest opportunity. Microsoft tries very hard to stop you doing this (for example, on XP messenger has no uninstall function) but if you're determined there's always a way...
Yeah, like searching the registry for every occurance of "Messenger" I finally got those dratted Messenger popups to stop.
__________________
The Unpronounceable Krsqk

"Well, sir, at the moment my left processor doesn't know what my right is doing." - Freefall
Reply With Quote
  #16  
Old August 22nd, 2003, 01:01 AM
Fyron's Avatar

Fyron Fyron is offline
Shrapnel Fanatic
 
Join Date: Jul 2001
Location: Southern CA, USA
Posts: 18,394
Thanks: 0
Thanked 12 Times in 10 Posts
Fyron is an unknown quantity at this point
Default Re: Scam Or Not?

Umm... ever opened "msconfig" from the run prompt? Or perhaps the Services Manager from the Admin Tools? msconfig can control what programs start up with Windows. The Services Manager can control when Windows services (such as Messenger) start. No registry editing needed (at least, not manually ).
__________________
It's not whether you win or lose that counts: it's how much pain you inflict along the way.
--- SpaceEmpires.net --- RSS --- SEnet ModWorks --- SEIV Modding 101 Tutorial
--- Join us in the #SpaceEmpires IRC channel on the Freenode IRC network.
--- Due to restrictively low sig limits, you must visit this link to view the rest of my signature.
Reply With Quote
  #17  
Old August 22nd, 2003, 01:52 AM
Jack Simth's Avatar

Jack Simth Jack Simth is offline
Major General
 
Join Date: Oct 2002
Posts: 2,174
Thanks: 0
Thanked 0 Times in 0 Posts
Jack Simth is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by DavidG:
The biggest software company in the world that has written some of the most complex programs can't remove duplicate addresses from a list??? What's wrong with this picture.
They could, it's just a matter of the computer time required. The standard algorythm for removeing duplicates goes something like:
code:
for(i=0; i<max; i++)
{
for(j=i-1; j>=0; j--)
{
if(entry(i) == entry(j))
{
clear(i)
}
}
}

If they have 10^9 entries, the statement
code:
if(entry(i) == entry(j))

gets run, at most (1 + 2 + 3 + 4 + 5 + ... + ((10^9)-1) +(10^9)) times - roughly (10^9)^2, or about 10^18 times. As it is almost impossible to hold 10^9 e-mail addresses in live memory at once (if you allow, say, 100 bytes per entry, that works out to 10^11 bytes - about one hundred gigabytes - of RAM for a single project; not likely), disk access times need to be used for dealing with the entries. If you then assign a disk acess time of, say, 10^-6 seconds per entry, and multiply that by the number of entries accessed (roughly 10^18 accesses) you get an estimate on the amount of time the algorythm will take: 10^12 seconds. That's roughly 16,666,666,666 minutes, 277,777,777 hours, 11,574,074 days, or 31,688 years. Throw 10,000 machines at the task, and it still takes a little over three years (actually, more than that, due to communication time between them). It isn't that they couldn't, it's just that it would cost more resources to eliminate the duplicates than doing so would save them.

Granted, there are several ways to shave time off of the above analysis, but that just gives a general idea of what it would take.
__________________
Of course, by the time I finish this post, it will already be obsolete. C'est la vie.
Reply With Quote
  #18  
Old August 22nd, 2003, 01:59 AM
Fyron's Avatar

Fyron Fyron is offline
Shrapnel Fanatic
 
Join Date: Jul 2001
Location: Southern CA, USA
Posts: 18,394
Thanks: 0
Thanked 12 Times in 10 Posts
Fyron is an unknown quantity at this point
Default Re: Scam Or Not?

You do not have to load every single address into active memory at once. In fact, with that loop, each address is deleted from active memory (essentially) after it is checked against the one you are comparing it to.

[ August 22, 2003, 01:00: Message edited by: Imperator Fyron ]
__________________
It's not whether you win or lose that counts: it's how much pain you inflict along the way.
--- SpaceEmpires.net --- RSS --- SEnet ModWorks --- SEIV Modding 101 Tutorial
--- Join us in the #SpaceEmpires IRC channel on the Freenode IRC network.
--- Due to restrictively low sig limits, you must visit this link to view the rest of my signature.
Reply With Quote
  #19  
Old August 22nd, 2003, 02:18 AM
Jack Simth's Avatar

Jack Simth Jack Simth is offline
Major General
 
Join Date: Oct 2002
Posts: 2,174
Thanks: 0
Thanked 0 Times in 0 Posts
Jack Simth is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by Imperator Fyron:
You do not have to load every single address into active memory at once. In fact, with that loop, each address is deleted from active memory (essentially) after it is checked against the one you are comparing it to.
Apparently you missed the numerous disclaimers:
Quote:
... goes something like:
rather than "is"; my note at the bottom
Quote:
Granted, there are several ways to shave time off of the above analysis, but that just gives a general idea of what it would take.
and the
Quote:
at most
to indicate it was a worst-case (for that algorythm, worst-case = no duplicates) analysis.

In the worst case, the Last entry checked must be checked against every other entry, and so all must be available (in memory, or accessed from the disk). The point was to give a general idea of what was required, not the exact algorythm needed. Things would be further complicated by the likelyhood that it isn't a matter of a single database of addresses being worked with. There are a zillion (exaggeration) assumptions in my analysis, and several valid shortcuts that could be built into the algorythm. It's an estimate to support what I said that DavidG had doubts about, not an exact analysis for that particular number set.
__________________
Of course, by the time I finish this post, it will already be obsolete. C'est la vie.
Reply With Quote
  #20  
Old August 22nd, 2003, 02:22 AM
DavidG's Avatar

DavidG DavidG is offline
Lieutenant Colonel
 
Join Date: Jan 2002
Location: Dundas, Ontario, Canada
Posts: 1,498
Thanks: 0
Thanked 0 Times in 0 Posts
DavidG is on a distinguished road
Default Re: Scam Or Not?

Quote:
Originally posted by Jack Simth:
quote:
Originally posted by DavidG:
The biggest software company in the world that has written some of the most complex programs can't remove duplicate addresses from a list??? What's wrong with this picture.
They could, it's just a matter of the computer time required. The standard algorythm for removeing duplicates goes something like:

Well I'm not going to dispute your math (frankly I didn't take the time to really understand it ) But I have MSN Messanger at work. I signed up for the service and provided my e-mail adress to MS exactly ONE time. And yet I got that message 10 times. Face it MS got something screwed up. Other corps with large databases seem to get things OK. (like Symantec)
__________________
SE4Modder ver 1.76
or for just the EXESE4Modder EXE Ver 1.76
SE4 Mod List
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 07:41 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.