Re: Do you participate in any other communities? Community Center Geeks' Lounge by midnightbastet Reddit, warrior forum, site point, currency dynamics forum and I guess that is all. Mostly it is or technical forums or forex. Just trying to understand that niche better that is all. Site point is a good ui/ux design forum btw so worth I guess to check! ABC for Github-programs and Python Programming Software Development by Audun … in it. A GUI? Is that what it is? I guess the more relevant question is; is there a GUI like… Re: what's the correct way of learning programming? Programming by Dani … it is being used just about everywhere nowadays! However, I guess the bigger question is, as a math major, what’s… Re: How to effectively promote blogger challenge games on the internet? Digital Media Digital Marketing by Dani I guess I'm confused what this project is or does. For example, I am a publisher who operates the publication DaniWeb (this one). I am also an SEO. What benefit would I get from participating? Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani I guess that’s changed since I submitted my site what I feel like is at least a decade ago. Re: Mastodon Community Center Geeks' Lounge by Dani I just stumbled upon this and had no idea that Mastodon was even a thing 6 years ago, pty! I first became aware of them back when Elon bought Twitter (ahem, X) and everyone fled ship trying to find an alternative. Sorry no one replied to this thread until now. Guess you were just too ahead of your time. ;) Re: Read file properties of video files in C++ Programming Software Development by Thomasio … for that, but of course I'm not sure. I guess in the end it comes down to ..... that MediaInfo program… Re: Improve HAVING BY performance Programming Databases by Dani … SSDs, but I had never heard of M2 SSDs. I guess I'll have to talk to blud (our sysadmin) about… Re: ABC for Github-programs and Python Programming Software Development by Reverend Jim I have an apps folder on D: where I keep all my portable/homegrown software. Let's say I want to create a virtual enviromnent in `D:\apps\MyVirtual`. To do this I open a command shell and do D:\>cd apps D:\apps>python -m venv MyVirtual If I install any packages in this session, they will be installed in the virtual python. … Re: ABC for Github-programs and Python Programming Software Development by Reverend Jim I have developed a number of GUI applications in python. I found that the wxpython package was far better than tkinter. wxpython is based on wxwidgets which is essentially windows controls. Because wxwidgets are compiled for each major system, controls rendered by wxpython look like the native controls for whatever system is hosting. Guess the number Programming Software Development by marium.aslam.18 … range while the second player attempts to guess the number. After each guess, the first player answers either “Higher”,…py). Suggested development strategy for the basic version of “Guess the number” is: 1. Decide on a set…immediately starts. Since the strategy above for playing “Guess the number” approximately halves the range of possible secret… Re: Guess the number Programming Software Development by BearofNH I guess 53. guess the nunmber! Programming Software Development by xiansen …; using namespace std; void secretNum(int&); void guessResponse(int guess, int answer); void countResponse(int count); int main() { int number…"; //Guessing Loop do { cout << "Enter a guess:"; cin >> spec; ++tries; guessResponse( spec, tries); } while… Re: guess the nunmber! Programming Software Development by xiansen … namespace std; void secretNum(int &num); void guessResponse(int guess, int answer); void countResponse(int count); int main() { int number…"; //Guessing Loop do { cout << "Enter a guess:"; cin >> spec; ++tries; guessResponse( spec, number); } while… Guess Computers number program that i need help with Programming Software Development by strongguy12345 ….println("Please enter in your first guess:"); int guess1 = sc.nextInt(); System…randomNumber) { System.out.println("Good job! Your first guess:" + guess1 + " was exact to my…randomNumber) { System.out.println("Good job! Your first guess:" + guess2 + " was exact to my… Re: Guess Computers number program that i need help with Programming Software Development by strongguy12345 …more. now for saying that if guess 1 and guess 2 equal each other would it … System.otu.println("Please enter your second guess again:"); int guess3 = sc.nextInt(); … randomNumber) { System.out.println("Good job! Your first guess:" + guess1 + " was exact to my number… Guess my number computer version Programming Software Development by pawel1 … "You chose", guess, "but my number is lower..." guess = random.randint(1, guess+1) elif guess < the_number: print &…quot;You chose", guess, "but my number… Re: Guess my number computer version Programming Software Development by pawel1 … "You chose", guess, "but my number is lower..." guess = random.randint(1, guess + 1) elif guess < the_number: print &…quot;You chose", guess, "but my number… Re: Guess my number computer version Programming Software Development by Gribouillis …working version with a varying 'guessrange' :) # CPU Guess My Number # # You pick a random number … 1 and 100 # The computer tries to guess it in the fewest attempts # automatically saying…guessrange = (guessrange[0], guess) elif guess < the_number: print "You chose", guess, "but my number … Re: Guess my number computer version Programming Software Development by TrustyTony …here for comparision systematic one with average # CPU Guess My Number # # You pick a random number… 1 and 100 # The computer tries to guess it in the fewest attempts # automatically saying…guessrange = (guessrange[0], guess) elif guess < the_number: print "You chose", guess, "but my number … Guess My Number program Programming Software Development by jason.craft.5439 … System.EventArgs) Handles checkGuessButton.Click 'users guess Dim guess As Single 'Dim answer As Single 'answer… End If 'Single.TryParse(guessTextBox.Text, guess) If guess = randomNumber Then MessageBox.Show("Congratulations!… Guess number game Programming Software Development by RASHA_T …<< endl; gameSession(); showResult(guess, secret); } while (guess != secret); cout << …endl; finished = true; break; } //test = showResult(guess, secret); //OK if (!finished) { cout <&… Re: Guess number game Programming Software Development by RASHA_T …lt; endl << endl; gameSession(); //test = test(guess, secret); } while (guess != secret); cout << "One more time (… number between 1-100: "; cin >> guess; Guess[nrOfTries] = guess; ++nrOfTries; for (int i = 0; i < nrOfTries; i++)… Re: Guess a word Programming Software Development by Mouche … a code snippet? [code=python] # Word Guess Game by LaMouche # # This game takes a… 1: print "You get 1 guess to guess the word." else: print "… (word_guesses) while word_guess != word_guesses: guess = raw_input("Guess the word: ").lower() if guess == word: print "Congratulations,… Guess number Programming Software Development by Testa …clue == "lower": guess2 = random.randint(1, guess ) tries +=1 print("Your number is ", guess2,…elif clue == "higher": guess2 = random.randint(guess, 20) tries +=1 print("Your number is "… Guess My Number Program Programming Software Development by apaulogy … end the game and display an appropriately chastising message. # Guess My Number # The computer picks a random number between 1… and 100 # The player tries to guess it and the computer lets # the player know if …right on the money import random print "\tWelcome to 'Guess My Number'!" print "\nI'm thinking of … Re: Guess My Number program Programming Software Development by jason.craft.5439 …setup() Exit Sub End If If guess = randomNumber Then MessageBox.Show("Congratulations… guessTextBox.Clear() guessTextBox.Focus() 'reset guess count limitor guessLimit = 0 'Generate … Guess Number Programming Software Development by En-Motion …always exits after 2 guesses abd says the guess was correct even if it's wrong.…("%d", &guess); } if (guess > NUMBER) { count++; printf("Too big - guess again> "); scanf…("%d", &guess); } if (guess==NUMBER) { loop=1; … Re: Guess Number Programming Software Development by Narue …the correct message won't print unless the guess really is correct, but you only ever …int main ( void ) { int count = 1; int guess; do { printf ( "Guess> " ); fflush ( stdout ); scanf ( &…quot;, count ); } while ( count++ < 5 && guess != NUMBER ); if ( count > 5 ) printf ( "… Re: guess the nunmber! Programming Software Development by Duki You haven't corrected it. Take another look at firstPerson's post. You can implement your function just like you did the other three. [code=c++] bool checkGuess(int ans, int guess) { if ( ans != guess ) return false; else return true; }[/code]