| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14
Comments:
<0> So go shut down the schools and the jails then <1> Whenever is found what is called a paternal government, there is found state education. It has been discovered that the best way to ensure implicit obedience is to commence tyranny in the nursery. Benjamin Disraeli, 1874 <0> Disraeli was a pervert. Atleast in The Difference Engine. <2> See Noidea, you're making people leave <1> Khan? Big loss. <0> Wa Alaikum <0> http://science.howstuffworks.com/asteroid-mining.htm <0> Lets make a space ship and go get all that astro-platinum <3> where to get a reference for gcc/g++ Makefile syntax? <1> The usual road to slavery is that first they take away your guns, then they take away your property, then last of all they tell you to shut up and say you are enjoying it. James A. Donald <1> Every friend of freedom must be as revolted as I am by the prospect of turning the United States into an armed camp, by the vision of jails filled with casual drug users and of an army of enforcers empowered to invade the liberty of citizens on slight evidence. Milton Friedman, Nobel Prize-winning economist <4> hi <5> hi. <4> how are you today Twister? <5> I am well, but not a large fan of small talk.
<4> understandable <0> He prefers prolog <5> no, I am an enemy of prolog. <4> lol <4> have any of you guys used wxWidgets? <4> i suppose not lol <5> can't say I have <4> what do you use for development? <4> lol i am an independant programmer, sort of picking things up by myself <5> WTL, and a few misc libs here and there <4> ah that's cool <4> just curious about the industry is all <4> i want to go into the software development practice <5> choose the tools according to the scope of the job <4> i started with C++ and want to continue to use it, i build miscellanious things just to try out theories and such <4> words of wisdom :) <4> sorrie if i start to ask too many questions <5> its somewhat difficult to get a job without a degree (as a programmer) <4> yeah <4> i am going to go to college this fall <4> i have to graduate high school first lol <4> welcome enloco <4> what degree do you have Twister? <4> i will major in Computer Science Engineering, but i have time to change my mind in the case that i am not going in the right direction <0> Well you are not going in the right direction <5> I have a Bachelors, went for IT, but I am hired as a programmer <0> There is a oversupply of software developers and not much being developed <0> an* <5> I would go CS over IT now days. <0> And the world has had its honeymoon with CS/IT <5> I disagree IRR. <5> Things have gotten better recently rather than worse <0> Twister76 ok <0> explain how <4> lol <5> in 2001, 2002 there was a very low hireing rate for IT and CS majors. <5> No one could get a job. <0> I graduated in 2002 <0> I got a job <5> well, congrats. <4> i hope that doesn't happen to me :( <0> You mean getting a job <0> ? <4> i don't want to spend 4 years in college to flip burgers <4> nah <4> i hope that i can get a job <5> getting good grades and being somewhat intelligent and having good social skillz will help. <5> I got hired off a paid interneship. <4> ah <4> well, i make fairly good grades (As and Bs) <4> i will hopefully be able to upkeep that into college <4> (keep that up into my college years) <5> I graduated with a 3.5 sumthin, and partied every other day. <4> lol <4> :P sounds like you were a very good multitasker <5> heh... president of fraternity, living at fraternity... still made the grades. <5> Its just a matter of work ethic and responsibility <4> yes <4> there is a large lack of those fundimentals these days <4> i have some friends that are in my AP Chemistry cl***... <4> they aren't doing so well and they choose to take a mini-vacation rather than study
<4> i hope that they can catch up, because our teacher sort of skipped ahead on them <5> I have seen more friends fail out than graduate. <4> everyone tells me that college will be very intimidating, and i can believe that <5> its not. Its easier than high school. <4> but whenever i feel like it is unbearable, i have to realize the chance that i have been given and the opprotunity that i have <4> is it? <5> there just aint anyone telling you what to do. <4> ah <0> Well if you take fewer courses and leave your ***ignments to others then its quite easy. <4> and that is where alot of people falter? <6> If I have a string of length k, and generate all unique permutations of length n from this string, how many permutation will I create? <0> Its important to know the work you shouldn't do. <5> threat, n! <4> yep <4> statistics :P <6> Twister76, ok <4> yay <5> err k! in your terminology <5> err no <5> wait <6> Twister76, is there a factorial function in C++ by any change? <4> string of length k <5> I misraed the question <4> char szString[k] <5> threat, n! is for strings of n length with n characters <0> k!/(k - n)! <5> yeah, IRR got it. <6> IRR, woot <6> IRR, that looks familuar :) <4> ^_^ <6> IRR, thanx <0> You are welcome bad boy <6> IRR, so is there a factorial function in c++ <6> IRR, or so I need to write my own ? <6> so = do <0> No factorial OPERATOR <0> Yeah do that <6> ok <6> that is easy :) <5> its the prime example of recursive algorithms <0> fac(int x){ if (x==1) return 1; return x * fac(x-1);} <6> I was going to do it iteratarly <0> Handle also the < 1 case, and give it an int return type <4> I am teaching a really basic C++ cl*** to some students at my high school as part of a final year project thing <1> The Ten Commandments contain 297 words. The Bill of Rights is stated in 463 words. Lincoln's Gettysburg Address contains 266 words. A recent federal directive to regulate the price of cabbage contains 26,911 words. The Atlanta Journal <1> heh <4> it is going fairly well <6> IRR, what is a negative factorial? 0 ? <0> 1 <4> it is suprising how much people get stuff when you relate it to mathematics :) <0> Better to use unsigned int <6> IRR, ok, so I just change my base condition to if (x <=1) <0> And forget about -ve <4> yep <5> Noidea, LOL I read one of those papers on the standards for canned pineapple or something <0> Ok folks I am off <6> is it a good idea to make a recursive inline function? <5> not bad as far as I can recall <6> inline function cannot be recursive? <5> eh? why not? <4> inline functions place their opcodes at the function call... <4> right? <5> right <4> hmm... <4> i guess they could jump back to their own beginning <5> the compiler should take care of it <4> yeah <4> the compiler will probably know that inline is inappropriate <4> recursive inline functions would cause concurrency issues because the same address of code would be reached that is waiting for the returns in the first place? <5> well, you can only do it iteratively <5> but it is the compilers job to make it work <7> lain_prolian why would recursive inline be a problem? <4> i think that it would do as aforementioned <4> but don't take my word for it, i am only a student lol
Return to
#c++ or Go to some related
logs:
#c++ sexy genmask #linux WPC54Gv3 Fedora mayleen.de #MissKitten GHARWENIN #AllNiteCafe #php #AllNiteCafe
|
|