End of Tech Run? Fortune Thinks So Community Center by Brian.oco …an HP laptop. That's pretty much the take from Fortune this week. The editors there are, metaphorically speaking, …s tech party is officially in hangover mode." Fortune points to Apple shares being down 14 percent from … 22 percent. "Why the buzz kill?," asks Fortune. "Blame the subprime mortgage fiasco, gas prices and… Setting up "fortune" for logins ... Hardware and Software Linux and Unix by Dani I want to set up the ever popular fortune program to display a random fortune each time a user logs in. The program is installed, but which config file do I need to edit to get the program to automatically run after each successful login? Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV … intro class that is requiring me to create Wheel of Fortune in c ++. I've made some decent head-way (I… void printHeading() { cout << "Welcome to Wheel of Fortune!" << endl; } //============================================================================= //Function that generates what the wheel… Re: Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV [CODE] //Wheel of Fortune Program #include<ctime> #include<iomanip> #include&… void printHeading() { cout << "Welcome to Wheel of Fortune!" << endl; } //============================================================================= //Function that generates what the wheel… Re: Setting up "fortune" for logins ... Hardware and Software Linux and Unix by Dani … .bash_profile) in my home directory ... I just typed /usr/games/fortune and it worked :) My problem now is trying to figure… Free Fortune+telling Community Center Geeks' Lounge by ahihihi... [URL="http://www.sara-freder.com/sff/?SOURCE=goog&KEYWORD=fortune+telling"]Free fortunetelling[/URL] [URL="http://www.webjc.com/num/"]meet yourself w/ #s[/URL] At the end your life & future depends on your hands Wheel of Fortune-esque game not behaving properly Programming Software Development by Jaxzen … program is supposed to essentially be something like Wheel of Fortune. As long as the user guesses letters that aren't… Wheel of fortune game. Changing ** to letters Programming Software Development by nerdygirl118 I am making a wheel of fortune game and have successfully figured out how to change the … Wheel of Fortune Game. Loop. Programming Software Development by nerdygirl118 Hello. I am making a wheel of fortune game and am getting stuck. This loop keeps repeating the … Re: Wheel of fortune game. Changing ** to letters Programming Software Development by dmalach I am also working on a Wheel of Fortune game. My version lets you play against a friend across the internet. I have the internet component working, and an just starting the UI. I would share the internet code with you if you'd like to share your UI code with me. What do you think? Do You Promote Your Business On Myspace? Digital Media Digital Marketing by InsightsDigital Fortune Magazine mentioned that Facebook has more US visitors than Myspace. Many businesses create some kind of Facebook presence but what about creating a Myspace presence? Do you advertise on Myspace? Re: Wheel of Fortune Program. Need Help Please Programming Software Development by SgtMe Please use code tags. Are you getting any compiler errors? Post them here. Re: Wheel of Fortune Program. Need Help Please Programming Software Development by WaltP Help with what? Do you really expect us to search through 246 lines of code looking for some unknown problem? When asking for help, you need to explain in detail what you need help with. Re: Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV [QUOTE=SgtMe;1382437]Please use code tags. Are you getting any compiler errors? Post them here.[/QUOTE] No, it was compiling fine. I was getting a runtime error that "int players isn't initialized." But, I have since taken care of that issue. However, I haven't set up all of my functions to be called - which will inevitably give me … Re: Wheel of Fortune Program. Need Help Please Programming Software Development by SgtMe On line 155: [CODE]return(player_turn);[/CODE] Surely you are trying to return the function itself? You don't appear to have a variable with this name in the function. Re: Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV [QUOTE=SgtMe;1383020]On line 155: [CODE]return(player_turn);[/CODE] Surely you are trying to return the function itself? You don't appear to have a variable with this name in the function.[/QUOTE] I'm hazy about returning values from functions. I'm confused because I should return a bool, yet, there isn't one declared in the function's … Re: Wheel of Fortune Program. Need Help Please Programming Software Development by SgtMe You don't HAVE to return a bool if you don't have one declared. Change the type of the function and then change the type of variable that receives the return. You could just use "void" and not have any return if you don't need it. (If people helped then upvote please :) ) Re: Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV Now, something that I am having some trouble with understanding is this. When the function int spin_wheel(); is called in line 263 (int spin_wheel(); function is on line 110) where does the return value go? Does luckyNumbers get assigned that return value after it has been called? Re: Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV [QUOTE=SgtMe;1383062]You don't HAVE to return a bool if you don't have one declared. Change the type of the function and then change the type of variable that receives the return. You could just use "void" and not have any return if you don't need it. (If people helped then upvote please :) )[/QUOTE] It's not required that I use a … Re: Wheel of Fortune Program. Need Help Please Programming Software Development by SgtMe Post 1: The return value will currently go no-where. If you want to write the return to the variable (luckyNumbers): [CODE]<type> luckyNumbers = spin_wheel();[/CODE] Post 2: If you want to repeat turns, then use a loop. Use, say, a while loop, to keep playing until the user presses a certain key or a variable is false or whatever. Re: Wheel of Fortune Program. Need Help Please Programming Software Development by dexter321 Do you go to FSU? Re: Wheel of Fortune Program. Need Help Please Programming Software Development by PinkyMV [QUOTE=dexter321;1383480]Do you go to FSU?[/QUOTE] Yup, and unfortunately this project isn't getting done before midnight =( Re: Wheel of Fortune Program. Need Help Please Programming Software Development by dexter321 I am in the same situation, I guess we're in the same class. Good luck! Mine doesn't look like it will be done on time either. Re: Wheel of Fortune Program. Need Help Please Programming Software Development by jimbof Join the club. F this project. Re: Wheel of Fortune Program. Need Help Please Programming Software Development by dexter321 Agreed. Re: Free Fortune+telling Community Center Geeks' Lounge by Lardmeister Numerology is very interesting, but sort of stupid too! Re: Free Fortune+telling Community Center Geeks' Lounge by ithelp This lady will take your email address and spam it to death , telling you if you give $19 , she will tell you 6 lucky numbers which can make you win million dollers. Re: Free Fortune+telling Community Center Geeks' Lounge by Ancient Dragon >> telling you if you give $19 , she will tell you 6 lucky numbers which can make you win million dollers :) what a scam ! does she guarentee those results? Re: Free Fortune+telling Community Center Geeks' Lounge by Salem Too easy. Just send out 6 random numbers to every schmuck who signs up. Just occasionally, some of the numbers will win enough for the schmuck to write some glowing piece of puff which'll go right up on the web page as "proof". Like it says "can". Every other combination of 6 numbers "can" as well. If you want to … Re: Wheel of Fortune-esque game not behaving properly Programming Software Development by Lerner I don't understand what lines 75-81 are supposed to do. wordstar has already been loaded with '*''s. Why do it again? Where do you define howManyChars()? Where do you replace the '*' in wordStar with guess if guess is in word? I believe the body of the if statement staring on line 71 should end on line 91, not on line 82.