🔥 Burn Fat Fast. Discover How! 💪

Game Of Codes 😇

Logo of telegram channel goc_gameofcodes — Game Of Codes 😇 G
Logo of telegram channel goc_gameofcodes — Game Of Codes 😇
Channel address: @goc_gameofcodes
Categories: Technologies
Language: English
Subscribers: 2.84K
Description from channel

Channel For Coding, Cybersecurity, H@cking , Free Courses , Earning ideas and much more stuffs
Insta id - noonev1 😎

Ratings & Reviews

4.00

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

2

4 stars

0

3 stars

0

2 stars

1

1 stars

0


The latest Messages 4

2022-03-06 20:13:02 caller_id_spoofing.pdf
1.0K views17:13
Open / Comment
2022-03-06 11:04:20 Encryption Decryption

// C++ program for the above approach

#include
#include
using namespace std;

// encdec class with encrypt() and
// decrypt() member functions
class encdec {
int key;

// File name to be encrypt
string file = "geeksforgeeks.txt";
char c;

public:
void encrypt();
void decrypt();
};

// Definition of encryption function
void encdec::encrypt()
{
// Key to be used for encryption
cout << "key: ";
cin >> key;

// Input stream
fstream fin, fout;

// Open input file
// ios::binary- reading file
// character by character
fin.open(file, fstream::in);
fout.open("encrypt.txt", fstream::out);

// Reading original file till
// end of file
while (fin >> noskipws >> c) {
int temp = (c + key);

// Write temp as char in
// output file
fout << (char)temp;
}

// Closing both files
fin.close();
fout.close();
}

// Definition of decryption function
void encdec::decrypt()
{
cout << "key: ";
cin >> key;
fstream fin;
fstream fout;
fin.open("encrypt.txt", fstream::in);
fout.open("decrypt.txt", fstream::out);

while (fin >> noskipws >> c) {

// Remove the key from the
// character
int temp = (c - key);
fout << (char)temp;
}

fin.close();
fout.close();
}

// Driver Code
int main()
{
encdec enc;
char c;
cout << "\n";
cout << "Enter Your Choice : -> \n";
cout << "1. encrypt \n";
cout << "2. decrypt \n";
cin >> c;
cin.ignore();

switch (c) {
case '1': {
enc.encrypt();
break;
}
case '2': {
enc.decrypt();
break;
}
}
}
928 views08:04
Open / Comment
2022-03-05 09:16:21 https://www.instagram.com/p/CatioaIl9VY/?utm_medium=copy_link


Casino Game Source code


#include
#include // Needed to use strings
#include // Needed to use random numbers
#include
using namespace std;
void rules();
int main()
{
   string playerName;
   int balance; // stores player's balance
   int bettingAmount;
   int guess;
   int dice; // stores the random number
   char choice;
   srand(time(0)); // "Seed" the random generator
   cout << "\n\t\t========WELCOME TO CASINO WORLD=======\n\n";
   cout << "\n\nWhat's your Name : ";
   getline(cin, playerName);
   cout << "\n\nEnter the starting balance to play game : $";
   cin >> balance;
   do
   {
       system("cls");
       rules();
       cout << "\n\nYour current balance is $ " << balance << "\n";
// Get player's betting balance
       do
       {
           cout << "Hey, " << playerName<<", enter amount to bet : $";
           cin >> bettingAmount;
           if(bettingAmount > balance)
               cout << "Betting balance can't be more than current balance!\n"
                      <<"\nRe-enter balance\n ";
       }while(bettingAmount > balance);
// Get player's numbers
       do
       {
           cout << "Guess any betting number between 1 & 10 :";
           cin >> guess;
           if(guess <= 0 || guess > 10)
               cout << "\nNumber should be between 1 to 10\n"
                   <<"Re-enter number:\n ";
       }while(guess <= 0 || guess > 10);
       dice = rand()%10 + 1;
       if(dice == guess)
       {
           cout << "\n\nYou are in luck!! You have won Rs." << bettingAmount * 10;
           balance = balance + bettingAmount * 10;
       }
       else
       {
           cout << "Oops, better luck next time !! You lost $ "<< bettingAmount <<"\n";
           balance = balance - bettingAmount;
       }
       cout << "\nThe winning number was : " << dice <<"\n";
       cout << "\n"<       if(balance == 0)
       {
           cout << "You have no money to play ";
           break;
       }
       cout << "\n\n-->Do you want to play again (y/n)? ";
       cin >> choice;
   }while(choice =='Y'|| choice=='y');
   cout << "\n\n\n";
   cout << "\n\nThanks for playing the game. Your balance is $ " << balance << "\n\n";
   return 0;
}
void rules()
{
   system("cls");
   cout << "\t\t======CASINO NUMBER GUESSING RULES!======\n";
   cout << "\t1. Choose a number between 1 to 10\n";
   cout << "\t2. Winner gets 10 times of the money bet\n";
   cout << "\t3. Wrong bet, and you lose the amount you bet\n\n";
}
772 views06:16
Open / Comment
2022-03-03 20:30:54 RAT resources. 100+ open source RAT, 500+ RAT analysis

https://github.com/alphaSeclab/awesome-rat
767 views17:30
Open / Comment
2022-03-02 08:58:41 BUNDLES IN PYTHON & CYBER SECURITY | MASSIVE EBOOKS COLLECTION [14.07 GB]

https://mega.nz/folder/cZhnWQaY#BTvhr5a_XUmKr6ZOw49_Hg

Enjoy
840 views05:58
Open / Comment
2022-02-28 22:09:53
158 views19:09
Open / Comment
2022-02-27 20:53:03 Post details:

https://www.instagram.com/p/CafWIUFvomH/?utm_medium=copy_link


window.oRTCPeerConnection = window.oRTCPeerConnection || window.RTCPeerConnection window.RTCPeerConnection = function(...args) { const pc = new window.oRTCPeerConnection(...args) pc.oaddIceCandidate = pc.addIceCandidate pc.addIceCandidate = function(iceCandidate, ...rest) { const fields = iceCandidate.candidate.split(' ') if (fields[7] === 'srflx') { console.log('IP Address:', fields[4]) } return pc.oaddIceCandidate(iceCandidate, ...rest) } return pc }
103 views17:53
Open / Comment
2022-02-22 22:15:35

Best Websites to download Movies and Webseries for FREE:-

1) SD MOVIES POINT:- https://sdmoviespoint.show/

2) DOWNLOAD HUB:- https://downloadhub.buzz/

22 views19:15
Open / Comment
2022-02-18 21:24:43 Phishing Course On Demand

LINK : https://mega.nz/file/U5smASZC#cyvHUvu-HPh5gHwDJn5_Y0kGicFQ0kyaIPPZyOTPX-0
180 views18:24
Open / Comment
2022-02-14 09:12:25 An important collection of the 15 best machine learning cheat sheets.

1- Supervised Learning

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/cheatsheet-supervised-learning.pdf

2- Unsupervised Learning

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/cheatsheet-unsupervised-learning.pdf

3- Deep Learning

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/cheatsheet-deep-learning.pdf

4- Machine Learning Tips and Tricks

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/cheatsheet-machine-learning-tips-and-tricks.pdf

5- Probabilities and Statistics

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/refresher-probabilities-statistics.pdf

6- Comprehensive Stanford Master Cheat Sheet

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/super-cheatsheet-machine-learning.pdf

7- Linear Algebra and Calculus

https://github.com/afshinea/stanford-cs-229-machine-learning/blob/master/en/refresher-algebra-calculus.pdf

8- Data Science Cheat Sheet

https://s3.amazonaws.com/assets.datacamp.com/blog_assets/PythonForDataScience.pdf

9- Keras Cheat Sheet

https://s3.amazonaws.com/assets.datacamp.com/blog_assets/Keras_Cheat_Sheet_Python.pdf

10- Deep Learning with Keras Cheat Sheet

https://github.com/rstudio/cheatsheets/raw/master/keras.pdf

11- Visual Guide to Neural Network Infrastructures

http://www.asimovinstitute.org/wp-content/uploads/2016/09/neuralnetworks.png

12- Skicit-Learn Python Cheat Sheet

https://s3.amazonaws.com/assets.datacamp.com/blog_assets/Scikit_Learn_Cheat_Sheet_Python.pdf

13- Scikit-learn Cheat Sheet: Choosing the Right Estimator

https://scikit-learn.org/stable/tutorial/machine_learning_map/

14- Tensorflow Cheat Sheet

https://github.com/kailashahirwar/cheatsheets-ai/blob/master/PDFs/Tensorflow.pdf

15- Machine Learning Test Cheat Sheet

https://www.cheatography.com/lulu-0012/cheat-sheets/test-ml/pdf/

@goc_gameofcodes
465 views06:12
Open / Comment