AS much as I think it would be a shame for MONO to go down the drain. I do believe MONO will be modular enough to be fairly easy to rip out of Gnome if the need should arise. If not there are quite a few other window managers and Desktop ENvironment one can use rather than Gnome on Linux - oh, the power of multiple choice. Hey, it might prtobably even be enough to rip out the offending parts of MONO, replace it with something homegrown, and we'd still have a pretty good app framework!
Well, the probe will slowle loose it's temperature through thermal radiation, until it's around 5K, might take a little while but it'll still get there.
users have full root (er, Administrator) access to their machines, and if necessary could use debuggers and/or virtual machines to figure out how Word is decrypting documents
ouch, you never seen proper encryption? If MS would do it properly, one wouldn't just be able to 'debug' the doc in order to find out what it means. A brute force attack would take *years*.
God some people are arrogant today. You do not have to use the IDE if you don't want to. Makefiles are perfectly possible with VS. The guy Tom haven't even been able to come up with one single reason why XP would be worse to develop than win2K, all he (and you) has been able to do is trying badmouth Evil Adrian.
I though we're talking about XP from a developer's point of view. Never done XP. but I assume it got the same API as win2K, which is fairly OK, not perfect, but OK. Despite what people say, MS is very good in keeping their old API in there, hence trying to avoid breaking old code. Yeah, it bloats the whole thing out but I can live with that. YOu also got a fairly OK STL implementation in there, no need to use MFC.
One example: Link back from 1999 for example, company sues MS since MS wont let it *continue* to see it's source code. http://www.wired.com/news/politics/0,1283,2 0788,00.html http://rss.com.com/2100-1001-245237.html?ta g=rn
For the very same reason MS strongly discourage their employees to look at the source of OpenSource projects. They can themselves get lashed very badly as well.
think final scratch looks like the perfect marriage of digital and analog tech. You use the prefered method of input (vinyl) and can store all your tunes on your laptop. Never tried it myself, but our soundsystem are thinking of investing in one. What does worry me would be the sound quality, especially if you mix from a normal record to a final scratch one, but I suppose if you store your tunes as uncompressed.wav files (I suppose fs can read them as well as mp3's) the result might be OK.
do what I do then; always do a: memset(szbuf, 0, sizeof(szbuf)); before using the string. then when you use strncpy make sure you always use the length sizeof(szbuf) - 1 guarantees that there always will be a trailing null char in the end
very true, also, when a program get to a sufficient size. You can run into the uncomfotable position of not *daring* to delete some of your memory allocation since you cannot be sure it's not used elsewhere. shitty design - yes, but I bet you there are many commercial apps out there with this problem.
indeed, just saw episode one again yesterday on tv. Everytime that f**ker came in view I just couldn't help to cringe.
Re:What desktop users want to know..
on
AMD's 64-bit Plot
·
· Score: 1
Not that I'm a doctor but IIRC our brain is very, very slow compared to any CPU of today, it removes that weakness by working in parallell, very much so as well.
Re:What desktop users want to know..
on
AMD's 64-bit Plot
·
· Score: 1
I agree with you to a point, but I must say I do find there's is a noticable difference between a 866 and s 2.4G machine. Maybe not for everyday tasks, but if you got a compilation running in the background you be happy for that extra horsepower. But yes, buying the latest and greatest of CPUs might not be the cleverest thing to do from a price/performance perspective.
Re:What desktop users want to know..(OFF TOPIC)
on
AMD's 64-bit Plot
·
· Score: 1
HEY! Don't talk bad about vinyl! All decent tunes are still released on 12 inch first and sometimes only!
oh, maybe I should get a live part form playing records....
AS other pointed out Hubble would probably get fried. ALso, even if it could do it, it would only be able to see things down to about 100 meters across.
AS much as I think it would be a shame for MONO to go down the drain. I do believe MONO will be modular enough to be fairly easy to rip out of Gnome if the need should arise. If not there are quite a few other window managers and Desktop ENvironment one can use rather than Gnome on Linux - oh, the power of multiple choice. Hey, it might prtobably even be enough to rip out the offending parts of MONO, replace it with something homegrown, and we'd still have a pretty good app framework!
London underground? Not sure I would like to have that on my merit list! (londoners will understand...) ;-)
...GNU/stalgia??
Well, the probe will slowle loose it's temperature through thermal radiation, until it's around 5K, might take a little while but it'll still get there.
aaaah, never thought about that! I stand corrected
DOS had no concept of kernel space/user space. SOunds like you're confused over real mode/protected mode which is something else.
users have full root (er, Administrator) access to their machines, and if necessary could use debuggers and/or virtual machines to figure out how Word is decrypting documents
ouch, you never seen proper encryption? If MS would do it properly, one wouldn't just be able to 'debug' the doc in order to find out what it means. A brute force attack would take *years*.
God some people are arrogant today.
You do not have to use the IDE if you don't want to. Makefiles are perfectly possible with VS.
The guy Tom haven't even been able to come up with one single reason why XP would be worse to develop than win2K, all he (and you) has been able to do is trying badmouth Evil Adrian.
You made it onto my shitlist with your attitude
I though we're talking about XP from a developer's point of view. Never done XP. but I assume it got the same API as win2K, which is fairly OK, not perfect, but OK. Despite what people say, MS is very good in keeping their old API in there, hence trying to avoid breaking old code. Yeah, it bloats the whole thing out but I can live with that. YOu also got a fairly OK STL implementation in there, no need to use MFC.
One example:2 0788,00 .htmla g=rn
Link back from 1999 for example, company sues MS since MS wont let it *continue* to see it's source code.
http://www.wired.com/news/politics/0,1283,
http://rss.com.com/2100-1001-245237.html?t
For the very same reason MS strongly discourage their employees to look at the source of OpenSource projects. They can themselves get lashed very badly as well.
windows we're talking c/c++ here, you alwys need to escape '\' no matter platform.
think final scratch looks like the perfect marriage of digital and analog tech. You use the prefered method of input (vinyl) and can store all your tunes on your laptop. Never tried it myself, but our soundsystem are thinking of investing in one. What does worry me would be the sound quality, especially if you mix from a normal record to a final scratch one, but I suppose if you store your tunes as uncompressed .wav files (I suppose fs can read them as well as mp3's) the result might be OK.
Vestax does quite decent decks though, tried them once, feels rather different from technics though - suppose you get used to them
I think you you just figured out the purrfect wedding gift to the couple!
do what I do then; always do a:
memset(szbuf, 0, sizeof(szbuf));
before using the string.
then when you use strncpy make sure you always use the length sizeof(szbuf) - 1
guarantees that there always will be a trailing null char in the end
very true, also, when a program get to a sufficient size. You can run into the uncomfotable position of not *daring* to delete some of your memory allocation since you cannot be sure it's not used elsewhere. shitty design - yes, but I bet you there are many commercial apps out there with this problem.
indeed, just saw episode one again yesterday on tv. Everytime that f**ker came in view I just couldn't help to cringe.
Not that I'm a doctor but IIRC our brain is very, very slow compared to any CPU of today, it removes that weakness by working in parallell, very much so as well.
I agree with you to a point, but I must say I do find there's is a noticable difference between a 866 and s 2.4G machine. Maybe not for everyday tasks, but if you got a compilation running in the background you be happy for that extra horsepower.
But yes, buying the latest and greatest of CPUs might not be the cleverest thing to do from a price/performance perspective.
HEY!
Don't talk bad about vinyl! All decent tunes are still released on 12 inch first and sometimes only!
oh, maybe I should get a live part form playing records....
I think he used the word thrashing a bit 'loose' there, but you can almost see it as thrashing from point of view of the CPU.
try the lo-fi theme, my absolute favourite. extremely simple, but does the job
AS other pointed out Hubble would probably get fried. ALso, even if it could do it, it would only be able to see things down to about 100 meters across.
see here
and here
Well, if you gonna do it, you should do it with style! ;-)