Jump to content

LIQUIDFOX00200

Member
  • Posts

    427
  • Joined

  • Last visited

Everything posted by LIQUIDFOX00200

  1. ASIAN COUNTRIES! Including China, Nepal, India, Bhutan, Japan! Is that enough???
  2. What are best Virtual Debit Card Provider?? I need a Virtual Card for my Netflix subscriptions, Porn subscriptions, iTunes subscriptions, etc. And Virtual Cards Keep your cards safe! I found Some Like Entropay, Privacy.com (But MayBe Privacy.com is only Available for the USA) So, Please Suggest Me Some Of The Best Virtual Card Provider, that also works in my country!! Thank You
  3. okay its fixed but now its asking 2 times!! that if you want to play again or not!!! first choice is ignored and second choice will work!
  4. please take a look at this code:- #include <iostream> #include <string> using namespace std; void PrintIntro(); void PlayGame(); string GetGuess(); bool AskToPlayAgain(); // the entry point for our application int main() { bool bPlayAgain = false; do { PrintIntro(); PlayGame(); AskToPlayAgain(); bPlayAgain = AskToPlayAgain; } while (bPlayAgain); return 0; // exit the application } // introduce the game void PrintIntro() { constexpr int WORLD_LENGTH = 9; cout << "Welcome to Bulls and Cows, a fun word puzzel game.\n"; cout << "Can you guess the " << WORLD_LENGTH; cout << " letter isogram I'm thinking of?\n"; cout << endl; return; } void PlayGame() { // loop for the number of turns asking for guesses constexpr int NUMBER_OF_TURNS = 5; for (int count = 1; count <= NUMBER_OF_TURNS; count++) { string Guess = GetGuess(); cout << "Your guess was: " << Guess << endl; cout << endl; } } string GetGuess() { // get a guess from the player cout << "Enter your guess: "; string Guess = ""; getline(cin, Guess); return Guess; } bool AskToPlayAgain() { //Ask the player that if he/she wants to play again or not! cout << "Do you wanna play again? (Y/N)"; string Response = ""; getline(cin, Response); return (Response[0] == 'y') || (Response[0] == 'Y'); } as you can see i programmed a conditional loop (response == 'y') but its producing a infinite loop!!! whatever i press it starts again!!! please help
  5. Okay!! Please suggest me some cheap wifi adapter that supports this feature!
  6. ppfpfpfpfpfpfpf!! I Didn't mentioned anything about "pentesting" yet, i just asked a simple question. MATE!!
  7. One of them is USB based and specs- Company- iBall, Manufacturer- Ralink Technology, Corp. 150M Wireless - N Mini USB Adapter Model No : iB-WUA150NM Enhanced 150Mbps Wireless data transmission rate With 64 / 128-bit WEP, WPA & WPA2-PSK Wireless Security Support Infrastructure & Ad-Hoc Operation mode USB 2.0 High speed interface Bundled utility helpssimple configuration & easy monitoring OS Compatible: WinXP / Win7 / Win8 / win 8.1 / Win10 & MAC OS 10.10* (Intel Platform) MRP : 150M Wireless - N Mini USB Adapter - Rs. 575.00 Second one is in my Laptops mPcie- Manufacturer- Qualcomm Atheros Communications Inc., Company- Dell inc. Dell Wireless 1705 (2.4Ghz)
  8. How to know that my WiFi adapter supports following features?? :- - Listening Mode - Packet Injection PLEASE HELP!!
  9. yeah i like crime based with touch of sci fi, going to watch mindhunters any other suggestions??
  10. Lost is space is quite good, and I like it but altered carbon is too dramatic.
  11. Is Mindhunter and money heist is crime based?? I like to watch mindhunter!! I like tv shows like mindhunter,money heist,13 reasons why and stranger things. i watched stranger things but I didn’t watched 13 reason why yet!! Any suggestion based on them?? I also like sci-fi but not too much like lost in space and altered carbon!!
  12. Okay!! Anymore shows to suggest?? Something relevant/related to tv show money heist?? I really like money heist!!
  13. My most hilarious/stupid/pointless post ever?? I realised that some of my post are dumb, so I decided to post this!! Do I really post dumb?? If yes then I APOLOGISE FOR ANY INCONVENIENCE! ?????????????????????????????????????????????
  14. What are the Best series/movies/shows/etc to watch on Netflix!! I have watch some shows like stranger things, Money heist, Boss baby, iron fist, defenders, Jessica Jones. please suggest some good shows to watch on Netflix!!
  15. Hi, I wanna know that can someone gain access to target computer if hackers know little about the target and target is far away (Not too far away! It’s like 6-7 Km) and hacker has the target’s email address and he is friend of target in Facebook?? How Can you deliver backdoors to his computer?? Can you brute force his/her Facebook account and deliver backdoor through it?? Is it possible??
  16. Thanks, I will use all three game engine, I like these three engines very much! This will help me broaden my knowledge on game development by using different game engine and getting deeper knowledge on these three engines!
×