Comment Re:Anonymous? (Score 2) 151
This guy goes into it more: http://www.cydeweys.com/blog/2008/01/28/scientology-sac/
Comment Re:Can't wait to see... (Score 3, Interesting) 185
Stainless steel is similarly naturally antimicrobial.
No, it's not. Which you'd have known if you'd clicked on the GP's link. From Wikipedia:
Unlike copper alloys, stainless steel (S30400) does not exhibit any degree of bactericidal properties. This material, which is one of the most common touch surface materials in the healthcare industry, allows toxic E. coli O157:H7 to remain viable for weeks.
The GP is also inaccurate in implying that copper alloys are used in all hospitals; this seems to be a relatively recent realization and is only slowly being rolled out.
St. Francis Private Hospital
Comment Re:3k - 64cores + 54+GB of ram. (Score 1) 205
Interlagos only has 1 floating point unit for every 2 integer cores.
Not really true. It has one 256 bit FP unit which can do AVX instructions, or it can be used as two 128 bit FP units.
There seems to be lots of confusion about the bulldozer architecture. Its real limitations are that it shares the L1 instruction cache, L2 cache, and decoder between (essentially) two cores, and that it has not-so-hot branch prediction (compared to Intel) combined with a longer pipeline resulting in lower IPC compared to Phenom. The FP performance has remained pretty much the same, except it can do FMAC and AVX now.
Comment Re:Are we going to build it? (Score 4, Interesting) 182
Comment Re:Maybe the I.T. guys are right after all. (Score 1) 212
90% of all people are idiots.
FTFY
Comment Re:Vundo and friends (Score 4, Informative) 120
Fist off, it's foolish and counterproductive to try to remove malware by using the OS that's infected. Boot to a live CD (like BartPE so you can mount the registry) and at the very least disable it from startup. From there feel free to boot to the OS and repair the damage.
The start menu is indeed moved to the user's Temp folder. In detail:
smtemp\1 is the public start menu
smtemp\2 is the user's start menu
smtemp\3 is the public desktop (I think, I've only seen this folder once)
smtemp\4 is the user's desktop
It also disables the listing of recently used programs in the start menu and un-pins everything. It's easy to turn that back on.
The following is a terrible idea:
attrib -h
as it will unhide everything on the computer.
It's quite easy to instead just select all the profiles under \Users\, go to properties, uncheck hidden, and apply to all sub objects. Afterwards, go into each profile and rehide only the top folder of AppData and all of the files in the root of the profile (things like ntuser.dat). In XP there are a number of other folders under the profile that are hidden by default. Reference a known good computer to see which ones.
It may also set some group policies to disable the desktop, the task manager, and disable changing the wallpaper. Delete these.
The particular malware that does this does not alter
Another spot to look out for is IFEO debugger entries. Look under:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options
Inside you will find keys of image names (like iexplore.exe). Under each key you may see a string value called Debugger. It's data will be set to the path of the malware that's infected the computer. If such a key exists, the 'debugger' will be launched whenever you try to execute the specified image.
That about sums it up for all of the 'modern' 'viruses'. Quite pathetic. The only reason these things work is because people are tricked into letting them through UAC. The new Mac infections function nearly identically. They require that the user enter their root password for them to install, and all they do is put themselves in the Mac's startup locations, so they're even easier to remove.
Comment Re:Dome (Score 1) 122
Comment Re:fdsfds (Score 1) 133
Comment Re:Remember what happened to Fry (Score 1) 375
Comment Re:Hamiltonian path != traveling salesman (Score 1) 135
Comment Hamiltonian path != traveling salesman (Score 3, Insightful) 135
I would be more impressed if they found the shortest path on an undirected graph with variable length edges.