Skip to content

Instantly share code, notes, and snippets.

View CodeMasterX20's full-sized avatar
🎯
Focusing

Misty CodeMasterX20

🎯
Focusing
View GitHub Profile
@CodeMasterX20
CodeMasterX20 / Rolling.cpp
Created October 6, 2025 16:12
Hello! this is a die rolling simlulator!
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <chrono>
#include <thread>
using namespace std;
int main()
{
srand(time(0));
@CodeMasterX20
CodeMasterX20 / Genarator.py
Last active October 6, 2025 15:28
Python pass generator
#I have made a pass generator in C++ but now I will make one in python!
import random
import string
nouns = [
"apple", "banana", "cat", "dog", "elephant", "flower", "garden", "house",
"ice", "jungle", "kite", "lion", "mountain", "notebook", "ocean", "pencil",
"queen", "river", "sun", "tree", "umbrella", "violin", "window", "xylophone",
"yacht", "zebra", "airplane", "book", "car", "desk", "egg", "forest",