Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Works for me: (Score 1) 753

hello.c:

#include
#include

int main(int argc, char *argv[])
{
    printf("Hello world!\n");
    return EXIT_SUCCESS;
}

hello.bat:

@ECHO OFF
SETLOCAL
CALL "%VS80COMNTOOLS%..\..\vc\vcvarsall.bat" x86
cl /MT /c hello.c
ENDLOCAL
SETLOCAL
CALL "%VS80COMNTOOLS%..\..\vc\vcvarsall.bat" amd64
link /MACHINE:x86 /LIBPATH:"%VCINSTALLDIR%\lib" libcmt.lib hello.obj
ENDLOCAL

output:

C:\Project>hello.bat
Setting environment for using Microsoft Visual Studio 2005 x86 tools.
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86

Copyright (C) Microsoft Corporation. All rights reserved.

hello.c
Setting environment for using Microsoft Visual Studio 2005 x64 tools.
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation. All rights reserved.

C:\Project>hello.exe
Hello world!

Comment Raytracing vs Rasterization (Score 1) 158

The future of rendering in video games has always been evident if you look at high-end rendering for films. If you look at a product like Renderman, ray-tracing is used for specific materials in the scene, but not commonly used for rendering the whole frame. Getting realistic materials out of the renderer is the real problem, not rendering mirror balls.

Government

LulzSec Posts First Secret Document Dump 835

Dangerous_Minds writes "LulzSec has been vowing to expose government secrets for the last few days. Now they have delivered. According to ZeroPaid, LulzSec has posted secret documents about Arizona Law Enforcement. The release has been posted to file-sharing website ThePirateBay. LulzSec says the release is because they are 'against SB1070 and the racial profiling anti-immigrant police state that is Arizona.'"
Science

Human Genome Contaminated With Mycoplasma DNA 123

KentuckyFC writes "The published human genome is contaminated with DNA sequences from mycoplasma bacteria, according to bioinformatics researchers who blame an epidemic of mycoplasma contamination in molecular biology labs around the world. The researchers say they've also found mycoplasma DNA in two commercially available human DNA chips made by biotech companies for measuring levels of human gene expression. So anybody using these chips to measure human gene expression is also unknowingly measuring mycoplasma gene expression too. The mycoplasma genes are clearly successful in reproducing themselves in silico raising the possibility that we're seeing the beginnings of an entirely new kind of landscape of infection. One option to combat this kind of virtual infection is to protect databases with the genomic version of antivirus software, a kind of virtual immune system. But this in itself could make things worse by triggering an evolutionary arms race that selects genes most capable of beating the safeguards."

Comment Exactly like every oil pumping operation (Score 1) 964

So, Deepwater Horizon (and hundreds of other smaller disasters, still with larger environmental impact than the Fukushima incident) never happened?

The reality is that nuclear is safer than oil, and yet there is so much fear, It's like airplanes, occasionaly one falls down and people are afraid of flying even though it is 100x safer than driving a car which people do every day without fear.

Comment Re:Drivers (Score 1) 240

I'm working in a company that does Scientific Visualization, and we have driver issues on a regular basis and have to find workarounds for them. It's a big pain to do testing with all kinds of different configurations and try to work around the problems in the drivers. The reason you don't have driver issues is because you play games and the poor graphics programmers have had to work around all the issues in the drivers you're running. If you have some combination of driver/graphics card that the developers didn't test, chances are you're going to have issues.

Slashdot Top Deals

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...