2,867 Posted Topics
http://answers.google.com/answers/ That URL will soon lose its usefulness for answering your questions. Google is now going to abandon its Google Answers service at the end of this week, which it launched 4 years ago. Google is not entirely clear on [I]why[/I] they are quitting it, other than "[it] was a … | |
The French parliament is now going to dump Windows in favour of open-source. More specifically, Linux. The planned switch date is June 2007, with over 1000 parliament workers switching. No word yet on what Linux distribution they're going to use, or what email client -- one thing is for sure: … | |
Re: You do have very good points about viruses, however, a lot of companies not only use only one operating system because they believe it's more stable, but it's much cheaper to buy 1 copy and network license for all their computers (commerical OS), and it's also much cheaper to maintain … | |
Re: From what I've read, (or at least according to their website) ReactOS does not have any more Windows application compatility than WINE. I'm not switching anytime soon. It's a neat idea for people who find Linux too complex for everyday use, though. | |
[URL]http://www.mozilla.org/projects/bonecho/releases/2.0b2.html[/URL] "Firefox 2 Beta 2 is a developer preview release of our next generation Firefox browser and it is being made available for testing purposes only. Firefox 2 Beta 2 is intended for Web application developers and our testing community. Current users of Firefox 1.x should not use Firefox 2 … | |
Re: >Has the same effect as strcmp but I just decided to write my own and save compiler time Yes, it definitely saves a lot of compiler time when the thing doesn't even get to the linking stage. You've made one or two corrections, but the snippet still leaves much lacking, … | |
Re: And you've posted a duplicate here: [url]http://www.daniweb.com/forums/thread216071.html[/url] | |
Re: Thread closed because a duplicate exists here: [url]http://www.daniweb.com/forums/thread216043.html[/url] Unless you can prove that there's something language-specific for this problem, there's no need to have two threads going in two different forums. | |
Re: >Is that not possible when I am using a 2d array? Of course not. You're using a 2D array; you need a row AND a column. | |
Re: Make sure sshd is running on the Linux machine, then connect to it from Vista via [URL="http://www.chiark.greenend.org.uk/~sgtatham/putty/"]PuTTY[/URL]. | |
Re: Duplicate exists here: [url]http://www.daniweb.com/forums/thread214408.html[/url] | |
Re: You definitely need to use matrices. Either use glGetFloatv to get the modelview matrix, or you can use your own matrix to keep track of the rotations. Once you've got the matrix, multiply it by the object's original coordinates, and then you'll have the object's coords for world space. If … | |
Re: Soft-deleting has [I]nothing[/I] to do with the spam references you see in search results. This site's search is powered by Google, and it can take a day or more before the site is reindexed to take into account the removed threads. | |
Re: [QUOTE=serkan sendur;957039]jonh a , instead of giving me ****ing infractions why dont you spare some time to help solve one of my threads?[/QUOTE] With an attitude like that, why would I want to? | |
Re: Thread exists here: [url]http://www.daniweb.com/forums/thread213885.html[/url] Closing. | |
Re: Your thread already exists here: [url]http://www.daniweb.com/forums/thread213675.html[/url] Closing. | |
Re: First, you should search for DiskImageMounter.app on your hard disk. On normal installations of OS X 10.3 (Panther) and later, it will be located in /Library/CoreServices/. It it's not there, you'll have to somehow get a replacement (reinstalling OS X is usually the easiest method). By the way, Stuffit Expander … | |
Re: Very sorry folks, but this party is coming to a rather abrupt end. | |
Re: You've already asked this question here: [url]http://www.daniweb.com/forums/thread209274.html[/url] This thread is, for all intents and purposes, closed. | |
Re: [URL="http://catb.org/~esr/faqs/smart-questions.html"]Lnk[/URL] ![]() | |
Re: Shouldn't be too much of a roadblock. [url]http://twitter.zendesk.com/forums/26257/entries/18367[/url] | |
Re: >I can revive it once a while. I doubt it. | |
Re: [quote=missionpilot;330422]Hmmm...well it appears that you're in Visual C++ so what kind of project do you think that a person might make in a C++ IDE? This isn't rocket science my friend....[/quote] After nearly 3 YEARS, do you really think that the OP cares? | |
Re: [quote=p.bondam;297277]it seems that i´m lost in the wrong forum, but i could recommend everyone to go to JAVA immediately.[/quote] Although you [I]can[/I] write just about anything with Java, that doesn't mean you should. Just like using the right tools for a job, there is no end-all programming language or tool … | |
Re: [url]http://www.daniweb.com/forums/thread209972.html[/url] | |
Re: >I like the nice green colours when viewing that base That has got to be the most worthless comment I've read all day. | |
Re: >[code=c#] Actually it should be [code=csharp]. "c#" isn't really a language in our code highlighter. | |
Re: I see the same too. [quote]John A, you do not have permission to access this page. This could be due to one of several reasons: 1. Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or … | |
Re: Space Mountain at DisneyLand (128 ft): [url]http://en.wikipedia.org/wiki/Space_Mountain_%28Disneyland%29[/url] By far the most interesting coaster I've been on - completely dark, except for stars all around you, so you have no idea when the next sharp turn or drop is going to occur. Been meaning to go to some Six Flags amusement … | |
Re: >How can I access ID and Who in the waitNode??? [code] // for example head->waitHead->ID head->waitTail->Who[/code] They're all private members, so it all has to be accessed within a class function or a function that's a friend of the class. | |
Re: Nothing to see here folks, move along, move along. | |
Re: If you have more than one statement within an if/else/else if, you need braces around the block. [code]if ( newBalance < 0) [COLOR="Red"]{[/COLOR] printf("***I am sorry, you have bounced this check. $10 will be"); printf("deducted\n"); printf("Current balance: %.2f\n", newBalance - 10); scanf("%.2f", &newBalance); [COLOR="Red"]}[/COLOR] [/code] | |
Re: >is threr any way to read 'em? Yes. [url]http://en.wikipedia.org/wiki/FASTA_format[/url] | |
Re: Sorry, we don't support illegal activities on this forum. Either go to the store and buy a DVD of Leopard legally, or find your answer elsewhere. | |
Re: After opening the file in vim, run the following command: [code]:set key=[/code] Then save the file. | |
Re: This is going downhill. | |
Re: Perhaps take a look at [URL="http://www.sgi.com/tech/stl/bitset.html"]bitset[/URL]? Or you can do it "manually": [url]http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1074727388&id=1073086407[/url] Keep in mind that signed/unsigned, big endian/little endian issues could affect your implementation's portability. | |
Re: Cool. Let us know when you're done. | |
Re: >It's illegal what he's trying to do. And you can prove this exactly how....? >Pirate Bay is an illegal site, The Pirate Bay does not actually host illegal content, it just hosts torrent files which point to the illegal material. Under Swedish law, this is still legal (as far as … | |
Re: On Windows, a page file is a single file that acts as virtual memory, and is usually stored in the root of the filesystem. At first, Windows page files were just one file that expanded as needed to acommodate the data needed. However, these quickly became corrupt as the files … | |
Re: Do you have the install log? The problem most likely stems from the fact that you're using a machine-specific disk (rather than the retail version of Leopard). Other people with this issue have reportedly solved it with Target Disk Mode, though you'll need a Firewire cable -- USB isn't supported … | |
Re: [URL="http://lmgtfy.com/?q=web+editor+linux"]Here you go[/URL] | |
Re: In the first iteration of your while() loop, you divide the number by itself, which will always divide evenly, thus making your sum twice as large as it should be. | |
Re: >Is this array initialization static or dynamic? It's called a [URL="http://en.wikipedia.org/wiki/Variable-length_array"]variable-length array[/URL], and as far as you're concerned, it's static. However, as has already been noted, the current C++ standard doesn't support variable-length arrays (C99 does though). >Thus, is that the only difference between the usage of static and dynamic, … | |
Re: If you haven't had any problems with Windows so far, there's no real reason to switch. Graphics/designer people have historically favored Macs over PCs, as Macs have been better at running Photoshop and other designer software, but there isn't really much difference any more. Unless you're just bored and want … | |
Re: [QUOTE=jbennet;756865]WINE isnt very good, it will only run fairly basic windows programs, and not very well[/QUOTE] Yeah, only a few insignificant programs like [URL="http://appdb.winehq.org/objectManager.php?sClass=version&iId=14154"]WoW[/URL], [URL="http://appdb.winehq.org/objectManager.php?sClass=version&iId=6584"]Photoshop CS3[/URL], [URL="http://appdb.winehq.org/objectManager.php?sClass=version&iId=7120"]Flash CS3[/URL], [URL="http://appdb.winehq.org/"]etc.[/URL].. | |
Re: Or you can just click on my [url=http://embed.mibbit.com/?userListWidth=50&server=irc.daniweb.com%3A6667&chatOutputNickWidth=80&channel=%23daniweb]signature link[/url], hit the big "Connect" button and you're good to go :P | |
Re: New forums aren't created unless there's an observed demand for them in the other existing forums. Just because you have a new fetish with mobile programming doesn't mean we're going to modify our forum structure to cater to your needs. For what it's worth, the current setup works fine. 'K, … |
The End.