ct2k7
Apr 24, 06:30 PM
I lived for 5 years in Saudi Arabia. And yes, the above pretty much sums up their version of Islam. And, the only allowed religion is Islam, and if you live there women must dress and act appropriately, to include western women. It is a screwed up culture, but so be it.
Maybe because it's their country?
I definitely got the opposite impression when I was there a few years ago... People looked like they were having fun.
Maybe because it's their country?
I definitely got the opposite impression when I was there a few years ago... People looked like they were having fun.
Sounds Good
Apr 5, 09:36 PM
Dragging your Applications folder to the right hand side of the Dock as a stack shows every single application you have installed on the computer, just like the Start Menu.
What if I just want my top 10 favorites? In Windows I just drag the icon (of whatever I want) to the Start button, then drop it into the list of my favorites (I'm not sure of the actual term for this). Can this be done on a Mac?
Since I open the same 10 or 12 programs or folders or files many times throughout the day, every day, this is pretty important to me. It would absolutely mess up my work flow to lose this feature.
What if I just want my top 10 favorites? In Windows I just drag the icon (of whatever I want) to the Start button, then drop it into the list of my favorites (I'm not sure of the actual term for this). Can this be done on a Mac?
Since I open the same 10 or 12 programs or folders or files many times throughout the day, every day, this is pretty important to me. It would absolutely mess up my work flow to lose this feature.
JediZenMaster
May 6, 10:13 AM
I'm not letting AT&T off easily, but I still argue that half of the problem is the iPhone itself. When I'm the only person with an iPhone and everyone else around me is on old cell phones on the same network and they have 5 bars and I have no signal, there's a problem.
True and look at the European Carriers like 02 that have the iphone. They have the same issue. And if verizon ever gets the iphone they will have the same issue too.
True and look at the European Carriers like 02 that have the iphone. They have the same issue. And if verizon ever gets the iphone they will have the same issue too.
mr evil brkfast
Oct 7, 11:12 AM
I think it is pretty sad when the comparisons are not between the best of the best of each manufacturer and Apple still looses with the top of the line.
I dunno what AMD's best is but to see how close/ or far behind Apple is the comparison should at least include a 2.5-2.8 ghz pentium 4.
I dunno what AMD's best is but to see how close/ or far behind Apple is the comparison should at least include a 2.5-2.8 ghz pentium 4.
ddtlm
Oct 12, 03:30 PM
Wow I missed a lot by spending all of Friday away from this board. I am way behind in posts here, and I'm sure I'll miss a lot of things worth comment. But anyway, the code fragment:
int x1,x2,x3;
for (x1=1; x1<=20000; x1++) {
for(x2=1; x2<=20000; x2++) {
x3 = x1*x2;
}
}
Is a very poor benchmark. Compilers may be able to really dig into that and make the resulting executable perform the calculate radically different. In fact, I can tell you the answer outright: x1=20000, x2=20000, x3 = 400000000. It took me 2 seconds or so. Does this mean that I am a better computer than a G4 and a P4? No, it means I realized that the loop can be reduced to simple data assignments. I have a better compiler, thats it.
Anyway, lets pretend that for whatever reason compilers did not simplify that loop AT ALL. Note that this would be a stupid stupid compiler. At each stage, x1 is something, we ++x2, and we set x3 = x1 * x2. Now notice that we cannot set x3 until the result of X2++ is known. On a pipelined processor that cannot execute instructions out of order, this means that I have a big "bubble" in the pipeline as I wait for the new x2 before I can multiply. However, after the x3 is started into the pipe, the next instruction is just another x2++ which does not depend on x3, so I can do it immediately. On a 7-stage in-order chip like a G4, this means that I fill two stages of the pipe and then have to wait for the results on the other end before I can continue. You see that this is very inefficient (28% or so). However, the G3 is a 4-stage design and so 2/4 of the stages can stay busy, resulting in a 50% efficientcy (so a 700mhz G3 is "the same as" a 350mhz G3 at 100% and a 800mhz G4 is "the same as" a 210mhz G4 at 100%). These are of course simplified cases, the actual result may very a bit for some obscure reason.
Actually the above stuff is inaccurate. The G3 sports 2 integer units AFAIK, so it can do x3 = x1*x2 at the same time as it is doing x2++ (for the next loop of course, not this one). This means that both pipes start one bit of work, then wait for it to get out the other end, then do one bit of work again. So this is 25% efficientcy. A hypothetical single-pipe G3 would do x3 = x1*x3 and then do x2++, however it could not do x3 = x1 * x2 again until the x2++ was out the other end, which takes 4 cycles and started one after the previos x3 = x1*x2, which should mean 3 "bubble" stages and an efficientcy of 20%.
Actually, it may be worse than that. Remember that this is in a loop. The loop means a compare instruction (are we done yet?) followed by a jump depending on the results of the compare. We therefore have 4 instructions in PPC I think per loop, and we can't compare x2 to 20000 until x2++ has gone through all the pipe stages. (Oh no!) And we can't jump until we know r]the result of the compare (oh no!). Seeing the pattern? Wanna guess what the efficientcy is for a really stupid compiled version of this "benchmark"? A: really freaking low.
I'll see about adding more thoughts later.
int x1,x2,x3;
for (x1=1; x1<=20000; x1++) {
for(x2=1; x2<=20000; x2++) {
x3 = x1*x2;
}
}
Is a very poor benchmark. Compilers may be able to really dig into that and make the resulting executable perform the calculate radically different. In fact, I can tell you the answer outright: x1=20000, x2=20000, x3 = 400000000. It took me 2 seconds or so. Does this mean that I am a better computer than a G4 and a P4? No, it means I realized that the loop can be reduced to simple data assignments. I have a better compiler, thats it.
Anyway, lets pretend that for whatever reason compilers did not simplify that loop AT ALL. Note that this would be a stupid stupid compiler. At each stage, x1 is something, we ++x2, and we set x3 = x1 * x2. Now notice that we cannot set x3 until the result of X2++ is known. On a pipelined processor that cannot execute instructions out of order, this means that I have a big "bubble" in the pipeline as I wait for the new x2 before I can multiply. However, after the x3 is started into the pipe, the next instruction is just another x2++ which does not depend on x3, so I can do it immediately. On a 7-stage in-order chip like a G4, this means that I fill two stages of the pipe and then have to wait for the results on the other end before I can continue. You see that this is very inefficient (28% or so). However, the G3 is a 4-stage design and so 2/4 of the stages can stay busy, resulting in a 50% efficientcy (so a 700mhz G3 is "the same as" a 350mhz G3 at 100% and a 800mhz G4 is "the same as" a 210mhz G4 at 100%). These are of course simplified cases, the actual result may very a bit for some obscure reason.
Actually the above stuff is inaccurate. The G3 sports 2 integer units AFAIK, so it can do x3 = x1*x2 at the same time as it is doing x2++ (for the next loop of course, not this one). This means that both pipes start one bit of work, then wait for it to get out the other end, then do one bit of work again. So this is 25% efficientcy. A hypothetical single-pipe G3 would do x3 = x1*x3 and then do x2++, however it could not do x3 = x1 * x2 again until the x2++ was out the other end, which takes 4 cycles and started one after the previos x3 = x1*x2, which should mean 3 "bubble" stages and an efficientcy of 20%.
Actually, it may be worse than that. Remember that this is in a loop. The loop means a compare instruction (are we done yet?) followed by a jump depending on the results of the compare. We therefore have 4 instructions in PPC I think per loop, and we can't compare x2 to 20000 until x2++ has gone through all the pipe stages. (Oh no!) And we can't jump until we know r]the result of the compare (oh no!). Seeing the pattern? Wanna guess what the efficientcy is for a really stupid compiled version of this "benchmark"? A: really freaking low.
I'll see about adding more thoughts later.
gugy
Sep 12, 04:05 PM
I have to disagree with many of the comments on this thread. I think this is an ideal device. I don't want a computer connected to my TV I want to gain access to the content on my computer on my TV. It is two different ways of looking at these products.
As far as not having a DVR/tuner that should be done on your computer. The products available from elgato eyeTV etc. are already excellent and probably much better then Apple could start up and hope to compete with. EyeTV is already compatible with iTunes and the iPod, and it will be for this too. You just have to realize that the recording is going to happen at your computer not your TV. I really think the combination of eyeTV, iTunes and iTV is going to be much better then any competitors MCE etc.
It all goes back to Apple's philosophy of making the computer the center of your digital life. The TV is just a tool now to view what you have on your computer.
This does also offer one advantage over the mini besides price component video.
Ditto.
I think the idea is brilliant if it work flawlessly. If the wireless transmission is great then this will be a killer product.
Why not buy Elgato, They make good stuff and Apple do not have to worry about networks being mad at them for making a dvr.
Guys this is the future.
It seems that will stream HDTV content, so I have my Elgato recording my favorite show in HDTV than it streams it to my flat panel and I can control it from my couch without having to go back to my computer on the other room.
I can access the itunes store, see my photos listen my music, etc.
What else you guys want?
As far as not having a DVR/tuner that should be done on your computer. The products available from elgato eyeTV etc. are already excellent and probably much better then Apple could start up and hope to compete with. EyeTV is already compatible with iTunes and the iPod, and it will be for this too. You just have to realize that the recording is going to happen at your computer not your TV. I really think the combination of eyeTV, iTunes and iTV is going to be much better then any competitors MCE etc.
It all goes back to Apple's philosophy of making the computer the center of your digital life. The TV is just a tool now to view what you have on your computer.
This does also offer one advantage over the mini besides price component video.
Ditto.
I think the idea is brilliant if it work flawlessly. If the wireless transmission is great then this will be a killer product.
Why not buy Elgato, They make good stuff and Apple do not have to worry about networks being mad at them for making a dvr.
Guys this is the future.
It seems that will stream HDTV content, so I have my Elgato recording my favorite show in HDTV than it streams it to my flat panel and I can control it from my couch without having to go back to my computer on the other room.
I can access the itunes store, see my photos listen my music, etc.
What else you guys want?
mixel
Apr 9, 06:23 PM
iOS needs big games. I hope having these guys in PR can help persuade big studios to give iOS better support. I mean treating it as a legitimate platform for premium content not just cut down stuff.
As others have said.. An official add-on with buttons and analogue sticks would be really interesting. That single simple gadget would be a blow to the NGP & 3DS. Ideally it'd have a separate battery in to make long gaming sessions more viable. Mmmm.
Touch can't totally replace tactile controls, even if it's great for some genres there are others where it falls flat, and I'd like those genres to be represented properly on iOS. If Apple really want to attack the 'hardcore' gaming portables it'd make sense.
Obviously they can continue on the touch/gyro only path they're on now but it's still limiting the game developers.
As others have said.. An official add-on with buttons and analogue sticks would be really interesting. That single simple gadget would be a blow to the NGP & 3DS. Ideally it'd have a separate battery in to make long gaming sessions more viable. Mmmm.
Touch can't totally replace tactile controls, even if it's great for some genres there are others where it falls flat, and I'd like those genres to be represented properly on iOS. If Apple really want to attack the 'hardcore' gaming portables it'd make sense.
Obviously they can continue on the touch/gyro only path they're on now but it's still limiting the game developers.
sinsin07
Apr 9, 04:17 AM
The delusion is this thread is hilarious. I'm seeing little casual gamers saying that Nintendo should be bought out, that Sony and Microsoft are doomed because their consoles are cheap on eBay because of device malfunctions (like Apple computers / handhelds don't?), and people claiming that touchscreens are going to replace the buttons for controllers sooner or later.
This 2008 calendar will print
calendars printable 2011.
2011 calendar printable
2011 calendar, 12 month
printable yearly calendar 2011
2011 calendar printable
2011 Printable One Page Excel
annual calendar 2011 printable
2011 calendar printable yearly
Printable 2011 Calendar
calendar-vertical-no-grid-
I'mAMac
Oct 29, 10:08 AM
I heard somewhere that the Clovertowns are actually slower than the Xeons, but with 2x as many cores will there be much difference?
SuperCachetes
Apr 25, 10:06 PM
But Allah is a great poster boy for Atheists as to why religion is the root of all problems lol
Uh, what lol?. :rolleyes:
Do try to keep your bias contained to yourself.
Uh, what lol?. :rolleyes:
Do try to keep your bias contained to yourself.
Rt&Dzine
Mar 14, 04:29 PM
The fact remains that most of America's energy problems are caused by conspicuous consumption.
And according to many Republicans, Americans are entitled to conspicuous consumption. It is as American as apple pie.
And according to many Republicans, Americans are entitled to conspicuous consumption. It is as American as apple pie.
munkery
May 2, 05:41 PM
What is "an installer" but an executable file and what prevents me from writing "an installer" that does more than just "installing".
My response, why bother worrying about this when the attacker can do the same thing via shellcode generated in the background by exploiting a running process so the the user is unaware that code is being executed on the system.
I don't know of any Javascript DOM manipulation that lets you have write/read access to the local filesystem. This is already sandboxed.
The scripting engine in the current Safari is not yet sandboxed.
Here is a list of Javascript vulnerabilities:
http://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=Mac+OS+X+Javascript
The issue is Safari is launching an executable file that sits outside the browser sandbox.
In the current Safari, only some plugins are sandboxed, so this wasn't execution outside the sandbox.
All that having been said, UAC has really evened the bar for Windows Vista and 7 (moreso in 7 after the usability tweaks Microsoft put in to stop people from disabling it). I see no functional security difference between the OS X authorization scheme and the Windows UAC scheme.
Except this:
Switching off or turning down UAC in Windows also equally impacts the strength of MIC (Windows sandboxing mechanism) because it functions based on inherited permissions. Unix DAC in Mac OS X functions via inherited permissions but MAC (mandatory access controls -> OS X sandbox) does not. Windows does not have a sandbox like OS X.
UAC, by default, does not use a unique identifier (password) so it is more susceptible to attacks the rely on spoofing prompts that appear to be unrelated to UAC to steal authentication. If a password is attached to authentication, these spoofed prompts fail to work.
Unix DAC is turned off in OS X in the root user account.
My response, why bother worrying about this when the attacker can do the same thing via shellcode generated in the background by exploiting a running process so the the user is unaware that code is being executed on the system.
I don't know of any Javascript DOM manipulation that lets you have write/read access to the local filesystem. This is already sandboxed.
The scripting engine in the current Safari is not yet sandboxed.
Here is a list of Javascript vulnerabilities:
http://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=Mac+OS+X+Javascript
The issue is Safari is launching an executable file that sits outside the browser sandbox.
In the current Safari, only some plugins are sandboxed, so this wasn't execution outside the sandbox.
All that having been said, UAC has really evened the bar for Windows Vista and 7 (moreso in 7 after the usability tweaks Microsoft put in to stop people from disabling it). I see no functional security difference between the OS X authorization scheme and the Windows UAC scheme.
Except this:
Switching off or turning down UAC in Windows also equally impacts the strength of MIC (Windows sandboxing mechanism) because it functions based on inherited permissions. Unix DAC in Mac OS X functions via inherited permissions but MAC (mandatory access controls -> OS X sandbox) does not. Windows does not have a sandbox like OS X.
UAC, by default, does not use a unique identifier (password) so it is more susceptible to attacks the rely on spoofing prompts that appear to be unrelated to UAC to steal authentication. If a password is attached to authentication, these spoofed prompts fail to work.
Unix DAC is turned off in OS X in the root user account.
chirpie
Apr 13, 11:40 AM
I'm not too familiar with the FC app, but I'm wondering if this FCSX is the newer version of the previous $999 application... Why'd they drop the price by ~$700?
That's not quite right.
The $999 application wasn't just an application, it was a suite of applications.
Motion, Compressor, Soundtrack Pro, DVD Studio Pro... all of these apps were part of that $999 umbrella.
That's why I'm surprised people are amazed by the price... it used to be this price when it was standalone a few years back.
That's not quite right.
The $999 application wasn't just an application, it was a suite of applications.
Motion, Compressor, Soundtrack Pro, DVD Studio Pro... all of these apps were part of that $999 umbrella.
That's why I'm surprised people are amazed by the price... it used to be this price when it was standalone a few years back.
Backtothemac
Oct 7, 01:54 PM
Originally posted by ddtlm
Backtothemac:
Does it annoy you to know that even in Photoshop (gasp!) those 25-year old ISA x86 machines kick the snot out of the latest and greatest Mac? Sure seems to.
2.8ghz, by the way.
Um,
Don't know what chart you were looking at, but with both processors being used, the 1.25 kicked the "snot" out of the PC's.
Backtothemac:
Does it annoy you to know that even in Photoshop (gasp!) those 25-year old ISA x86 machines kick the snot out of the latest and greatest Mac? Sure seems to.
2.8ghz, by the way.
Um,
Don't know what chart you were looking at, but with both processors being used, the 1.25 kicked the "snot" out of the PC's.
Tobsterius
Apr 13, 07:57 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5)
The concerns expressed here have been echoed by many who have attended the Supermeet.
FCP needed an overhaul and it got it. No complaints there.
The concerns expressed here have been echoed by many who have attended the Supermeet.
FCP needed an overhaul and it got it. No complaints there.
chatin
Sep 26, 07:24 PM
Apple should put much needed development into the notebooks. The current crop of Mac Pros are perfect.
Let software catch up!
Let software catch up!
Edge100
Apr 15, 12:09 PM
Right, because civil marriage is required for gays to have sex with each other. Nobody is forcing you to do anything. You can have sex with whomever you want to.
We're talking about gay Catholics here, who ostensibly value being Catholic more than they value satisfying their sexual desires in a manner compatible with their sexuality. There is no theocratic regime forcing them to live as Catholics in good standing - it is a personal lifestyle choice, if you will.
I absolutely agree with you; there is no compulsion for anyone to be Catholic (well, that's not strictly true, since people are often forced to accept Catholicism as children, before they are capable of making the decision for themselves).
But that doesn't in any way imply that the position of the Catholic church on this issue (and so, so, so many others) isn't hateful and discriminatory.
Tell me again: do condoms help prevent the spread of HIV (http://www.ncbi.nlm.nih.gov/pubmed?term=condom%20hiv%20transmission), or do they actually cause the spread of HIV (http://news.bbc.co.uk/2/hi/7014335.stm)? Which was it? I can't recall.
We're talking about gay Catholics here, who ostensibly value being Catholic more than they value satisfying their sexual desires in a manner compatible with their sexuality. There is no theocratic regime forcing them to live as Catholics in good standing - it is a personal lifestyle choice, if you will.
I absolutely agree with you; there is no compulsion for anyone to be Catholic (well, that's not strictly true, since people are often forced to accept Catholicism as children, before they are capable of making the decision for themselves).
But that doesn't in any way imply that the position of the Catholic church on this issue (and so, so, so many others) isn't hateful and discriminatory.
Tell me again: do condoms help prevent the spread of HIV (http://www.ncbi.nlm.nih.gov/pubmed?term=condom%20hiv%20transmission), or do they actually cause the spread of HIV (http://news.bbc.co.uk/2/hi/7014335.stm)? Which was it? I can't recall.
takao
Mar 14, 07:44 PM
according to tepco a 8000+ microsievert 8mSV+) value of radiation has been measured on the power plant grounds
yearly average dosage 2.4mSV
and while the values have since then dropped again to lower levels the situation has become more serious than before
yearly average dosage 2.4mSV
and while the values have since then dropped again to lower levels the situation has become more serious than before
WilliamBos
Apr 14, 05:34 PM
After getting a new mini for my b-day, I have to wait until tomorrow to use it, as I need the apple only DVI-VGA adapter. Aftermarket stuff don't work... :(
SPUY767
Sep 26, 10:40 AM
Pardon Me But Would You Please Track Down The Link To That Card And IM Me and post it here? I need it NOW! Thanks.
I will be on this thread until the Mac Pro Clovertown option ships. :D
This is the Mac Pro I have been waiting for.
This is not the one I use but the same in concept. Gigayte i-RAM (http://www.anandtech.com/storage/showdoc.aspx?i=2480) This item uses PCI and not PCIe.
The one that I use doesn't work with the Macintosh, but apparently, the PCIe/SATAII version of the one that Eld is talking about will as mine uses no SATA interface for data transfer.
I will be on this thread until the Mac Pro Clovertown option ships. :D
This is the Mac Pro I have been waiting for.
This is not the one I use but the same in concept. Gigayte i-RAM (http://www.anandtech.com/storage/showdoc.aspx?i=2480) This item uses PCI and not PCIe.
The one that I use doesn't work with the Macintosh, but apparently, the PCIe/SATAII version of the one that Eld is talking about will as mine uses no SATA interface for data transfer.
r1ch4rd
Apr 22, 11:15 PM
I know my fair share of theists, and I think that they 'know' they're is a god. They see him in everything and feel him in their every action. I don't think that assuming near 100% certainty is too much of an overstatement.
This is hitting on something important. A viewpoint that I would consider to be a belief is considered fact on the "inside". If something is considered fact then it is difficult to challenge. It would generally seem that atheists like the idea of scientific method and will be open to having their ideas questioned. In this case, I think agnostic atheist is where most sit. It's that distinction between belief and knowledge that I dislike.
EDIT: Grammar
This is hitting on something important. A viewpoint that I would consider to be a belief is considered fact on the "inside". If something is considered fact then it is difficult to challenge. It would generally seem that atheists like the idea of scientific method and will be open to having their ideas questioned. In this case, I think agnostic atheist is where most sit. It's that distinction between belief and knowledge that I dislike.
EDIT: Grammar
jegbook
Apr 12, 04:20 PM
Aside from the part about installing Mac OS on the pc, which isn't THAT far off if you have the right hardware, nothing else that he said is really that inaccurate.
Did you not read the thread title? The op was specifically asking for people's opinions and what they don't like. And that's exactly what he stated.
Good grief, he didn't attack your mom. Your statement here, and really the entire post is uncalled for. He is well within the subject of the thread. If you don't believe so, report him and move on. If you don't like his reasoning, perhaps you are far to pro-Mac to be able to know the difference. Chill.
+99
Really, the original post was totally reasonable.
Did you not read the thread title? The op was specifically asking for people's opinions and what they don't like. And that's exactly what he stated.
Good grief, he didn't attack your mom. Your statement here, and really the entire post is uncalled for. He is well within the subject of the thread. If you don't believe so, report him and move on. If you don't like his reasoning, perhaps you are far to pro-Mac to be able to know the difference. Chill.
+99
Really, the original post was totally reasonable.
Edge100
Apr 15, 10:48 AM
Are you sure you are from 'Planet Earth'? :rolleyes:
Sadly, I think he shares the opinion of many, many people here on good 'ole Earth. It boggles the mind that anyone believes any of this nonsense in the 21st century.
Sadly, I think he shares the opinion of many, many people here on good 'ole Earth. It boggles the mind that anyone believes any of this nonsense in the 21st century.
dethmaShine
May 2, 04:47 PM
There, fixed it for ya (and the "'s too) ;)
OS X and Windows have their pro's and con's, no OS is 100% secure. However (and read my posts), working in the field I can assure you 75%+ of my clients have security/virus/malware issues with everything from XP-W7. Executable's are the equivalent to barfing into your system; they get everywhere and are difficult to remove.
If Windows followed Apple and developed hardware to utilize their OS instead of coding an OS for a myriad of profiles (and ditching antiquated BIOS for EFI) it would allow for a better end user experience and for MS to focus on better security. Yet this would mean millions to billions for businesses to reinvest in new hardware as well as MS producing a good product (based on their industrial design team and product history, I wouldn't bet on it).
OS X based systems are generally more secure than Windows systems. I could google "OS X safer than Windows" and find as many claims as you suggest, but that would be bias. Google " 'OS X versus Windows' security' ", you will most likely discover articles/studies with no bias/agenda. If OS X wasn't more secure than Windows OS systems, why aren't more users running anti-virus/malware utilities?
Ah well, forget google-ing "windows is more secure than OS X",
just ask google; they know better I guess. ;)
OS X and Windows have their pro's and con's, no OS is 100% secure. However (and read my posts), working in the field I can assure you 75%+ of my clients have security/virus/malware issues with everything from XP-W7. Executable's are the equivalent to barfing into your system; they get everywhere and are difficult to remove.
If Windows followed Apple and developed hardware to utilize their OS instead of coding an OS for a myriad of profiles (and ditching antiquated BIOS for EFI) it would allow for a better end user experience and for MS to focus on better security. Yet this would mean millions to billions for businesses to reinvest in new hardware as well as MS producing a good product (based on their industrial design team and product history, I wouldn't bet on it).
OS X based systems are generally more secure than Windows systems. I could google "OS X safer than Windows" and find as many claims as you suggest, but that would be bias. Google " 'OS X versus Windows' security' ", you will most likely discover articles/studies with no bias/agenda. If OS X wasn't more secure than Windows OS systems, why aren't more users running anti-virus/malware utilities?
Ah well, forget google-ing "windows is more secure than OS X",
just ask google; they know better I guess. ;)
No comments:
Post a Comment