2,839 Posted Topics
Re: >> Nice pic dude. Happy Easter to everyone. It's easter in spammerland? | |
Re: [URL="http://www.daniweb.com/forums/post1392531.html#post1392531"]link[/URL]. Closed | |
Re: >> What? No just cause 2? It is the most eppicest game I have! Perhaps that's because it wasn't created yet [B][U]in 2002 when this thread was started[/U][/B] :icon_frown: | |
Re: [QUOTE]Almost everything today IS CRAP so having stuff FROM THAT TIME would be beyond awesome[/QUOTE] I would hate to trade my hexacore for a C64 to be honest. Loading firefox from a tapedeck would suck bigtime :) | |
Re: Happy birthday Dani! @Eyal: Normally we revive [URL="http://www.daniweb.com/forums/thread96251.html"]one[/URL] [URL="http://www.daniweb.com/forums/thread35097.html"]of[/URL] [URL="http://www.daniweb.com/forums/thread13857.html"]these[/URL] threads, but this one is fine too :) | |
Re: Thread split and moved from C++ -> Python forum. Now read [URL="http://www.daniweb.com/forums/post3625.html#post3625"]this [/URL]and you're ready to start. | |
Re: This is the 44th post and no-one has mentioned Pulp-fiction yet, so I'll do it: Pulp Fiction Also: the Green Mile | |
Re: Also: using CAPS and [B]BOLDTAGS [/B]with [B]EXCLAMTIONMARKS!![/B] is probably not going to motivate the people here to help you. | |
Re: Just to give the right person credit: This code was originally posted [URL="http://www.codeproject.com/KB/cpp/cpphtml.aspx"]here[/URL]. | |
Re: >> If you go to a forum, there is a code snippets tab. Aha there they are... Thanks. @Dani: Do snippets still show up as a normal forum-thread with the "snippet" prefix as before or are they only listed in the "snippets" tab? [edit] After changing ~20 C++snippets back to … | |
Re: May I suggest [icode]std::reverse[/icode]? [code] #include <string> #include <iostream> #include <algorithm> [...] std::string name = "your name"; std::reverse(name.begin(), name.end()); std::cout << "reversed: " << name; [/code] | |
Re: This: [code] int n, i, j; cin >> n; int board[n][n], array[n][n]; [/code] is a good idea in theory, but the problem is that it won't work. If you're using a static array, the dimensions of that array need to be const when you declare it. So in your case, … | |
Re: Hello Professor Tyson, That's a great rule you have there and congratulations: you've found some of your students asking for help on the internet :| [QUOTE]Note that many people on these discussions boards are professionals and find cheating offensive[/QUOTE] Yes we do. This poster however showed that (s)he put in … | |
Re: [QUOTE=arkoenig;]I'm sorry if I've offended you, [/QUOTE] There's no need to apologize, our [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]rules[/URL] here at Daniweb clearly say: [quote=rules] Do provide evidence of having done some work yourself if posting questions from schoolwork assignments [/quote] So if someone needs to apologize, it's the OP for not reading/obeying the rules … | |
Re: [URL="http://www.daniweb.com/forums/post3625.html#post3625"]No[/URL] | |
Re: Please post your newest code. | |
| |
Re: >> I think many posts about that end up in Game Development as well. Hmmm, they should fit there. Only problem is that the game-dev forum is next to dead. We've gotten 5 new threads in the last 2 weeks.. (not counting the enormous amounts of spam I delete there … | |
Re: >> What time is it? [URL="http://www.youtube.com/watch?v=otCpCn0l4Wo"]Hammertime[/URL]! | |
Re: [QUOTE=vegaseat;1131439]So it's not the workers, but management?[/QUOTE] I would say design. I've owned a Ford Mondeo and it was a piece of crap. I bought it for 3000 dollars (or something) and it broke down 3 times in its first year. So I got rid of it. Next up was … | |
Re: [QUOTE=ana12;1159591]who's like pasta?[/QUOTE] The flying spaghetti-monster is like pasta. [attach]14599[/attach] | |
![]() | Re: I ride a 750cc 30 year old chopped Yamaha. 4 hollow pipes and weber carburetors make for an interesting sound :) I use it for hobby only. When I'm in a hurry, I just take the car. |
Re: [QUOTE]However, I am somewhat confused by the point of this research as surely what actually matters is not where you are accessing the Internet but how you are accessing and whether you are doing so in a 'safe' manner or not? Some link-clicking idiot will be more at risk in … | |
Re: ahem: [quote=Daniweb Rules] Do not ask anyone (member or moderator) for help by email or PM [/quote] Don't make me give you an infraction! :icon_twisted: | |
Re: [QUOTE=ashmew2;995093] Is there some way to simultaneously run two functions ? Because when the snake turns , it leaves behind a residue which i want to clear but cant figure out a way other than to make a separate function.[/quote] You could use multi-threading which allows you to run multiple … | |
Re: [quote] If it is a micro-controller, then WinAVR, AVR Studio, and Arduino are the typical examples of free software on which you can program and test your programs. [/quote] Only if you're going to use an Atmel-uC. @OP: The main question is: What micro controller are you using? | |
Re: this line is wrong: [icode]merge(words.begin(), words.end(), words2.begin(), words2.end(), results.begin());[/icode] You call the function with 5 parameters, but the function only expects 2 ([icode]void merge (string alpha, string beta)[/icode] What is your program supposed to do? | |
Re: You should use the atoi function in C++. Conversion are done easier with the use of a stringstream. By checking the stream after the conversion, we can see if the conversion has succeeded. [code] #include <sstream> #include <string> #include <iostream> #include <exception> int strToInt(std::string in) { int ret_val = 0; … | |
Re: Can you post the 3 files exactly as you're using them? | |
Re: this line `Measure Measure::area(Measure M2)` suggests that the area() function return a class Measure. But when you're saying: { int a1 = inches + (feet * 12); int a2 = M2.inches + (M2.feet * 12); return (a1 * a2); } You're actually returning an int. So if you change your … | |
Re: Good job on the copy-paste. Where's your program? | |
Re: >> Exploding rabbits are reserved for an Easter special, surely? That's right! [attach]17820[/attach] | |
Re: >> not sure why you think he does. He probably got the code from somewhere on the internet (or a classmate) and tried to implement it into his own program to get a homeworkfreebie. [quote] [code] * Created on: Oct 7, 2010 * Author: saturner [/code][/quote] | |
Re: [QUOTE=ithelp;1000277]On top of it your homework image is not readable [/QUOTE] What do you mean? Perfectly readable from here. Perhaps you need to buy some glasses! :icon_wink: | |
Re: [B]>>Letting people play as the Taliban might give them the wrong impression.[/B] I've played GTA and I haven't run over any hookers, cops or children with my car yet. I've played counter-strike as a terrorist, but I have never felt the need to take a bunch of people hostage, or … | |
Re: That's a damn shame, because I actually quite enjoined Mafia 1. Maybe I'll just download the demo and see it's as big a pile of crap as you make it believe to be. | |
Re: You need a ComputerVision library along with tracking (or write it yourself). Moving the mouse will be the easy part. Have a look at [URL="http://www.google.com/#hl=en&source=hp&q=opencv+tracking&aq=0&aqi=g8&oq=opencv+track&fp=c26c79a56c95bda8"]OpenCV [/URL]for example | |
Re: I'll keep it in mind and see if I can create some spare time next time I'm in the states. [edit] The other [URL="http://www.daniweb.com/forums/post1346215.html#post1346215"]thread [/URL] says "the second Wednesday of every month.", which one is right? | |
Re: Closed. Duplicate [URL="http://www.daniweb.com/forums/thread317345.html"]here[/URL] | |
Re: [URL="http://www.daniweb.com/forums/thread317051.html"]duplicate [/URL]. Thread closed | |
Re: [URL="http://eternallyconfuzzled.com/tuts/datastructures/jsw_tut_avl.aspx"]Read this[/URL] | |
Re: [QUOTE=iamthwee;997083]Sounds like another fail, I dare people not to help you.[/QUOTE] Why on earth did you dig up this thread to post such a reply? You [I]do[/I] realize that it's quite save to assume no-one was going to reply after a year of silence right? [QUOTE=haroonjamia;1001262]There is loophole in this … | |
| |
Re: Being Jewish apparently has a few benefits. I might consider it if it wasn't for one obvious downside, since I'm a guy and all. :S |
The End.