A GUI program that will generate a word search puzzle image

Word Search Puzzle Generator Table of Contents About The Project Getting Started Usage Roadmap Contributing Contact About The Project About WSPG I started this project because belive it or not in school we had an assignment to do a search word puzzle butI didn’t know if theres diagnoals in the puzzle so i was a bit frustrated, So I asked myself: “Can I maybe make something like this? maybe better?”Well first of all I hope i was right and it’s […]

Read more

A Tetris Game for programming education

プログラミング学習を目的とした、ブロックを操作してスコアを競うゲームです。FAQはこちら。tutorialはこちら。 実行環境準備 Mac環境 Finder→Application→Utility→Terminalから、ターミナルを起動して以下コマンドを実行する。 # install pyqt5 and NumPy brew install python3 pip3 install pyqt5 pip3 install numpy # install other packages brew install git doc/files/install_mac.mdに上記手順を記載 Ubuntu/JetsonNano環境 doc/files/install_ubuntu.mdに手順を記載 windows環境 WSL(Windows Subsystem for Linux)を使う場合の手順Docker for Windowsを使う場合の手順 docker環境 docker/README.mdに手順を記載 実行方法 本リポジトリを取得 cd $HOME git clone https://github.com/seigot/tetris_game ゲーム開始用スクリプトを実行

Read more

Small game for you to run on your terminal

Pequeno joguinho pra você rodar no seu terminal Olá! Joguinho legal pra vc rodar no seu terminal!! (rode no terminal, pra melhor experiencia) Instalação, Clonagem e Acesso $ pkg upgrade $ pkg update $ pkg install git $ pkg install python $ git clone https://github.com/yScottLuck/JokenPython $ cd JokenPython $ python3 main.py GitHub View Github    

Read more

Ultimaze : a 2.5D game, produced as part of a NSI project

Ultimaze est un jeu en 2.5D, réalisé dans le cadre d’un projet de NSI. La consigne était d’utiliser la librairie pygame pour créer un jeu en mettant à profit des classes. Sommaire: installation utilistation le labyrinth le raycasting 1. Installation pip install ultimaze python main.py Ou utlisé l’installer dans /dist/ultimaze.exePuis exécutez l’installer 2. Utilisation Quand vous êtes prêt, appuyez sur “Play” pour commencer le jeu. Devez collecter toutes les murs multicolorts en marchant dessus avant de trouver la sortie (attention […]

Read more

Pokemon game made in Python with open ended requirements from Codecademy

Pokemon game made in Python with open ended requirements from Codecademy.This is one of my first projects utilizing OOP and classes! -This game is a 2 player game run from the terminal-Player can select their pokemon choices at the beginning-Then players can battle and perform 1 of 3 actions: attack opponent, use a potion, or switch out pokemon-intial release has some known bugs (they will be resolved in future iterations):-when pokemon is knocked out, trainer cannot reselect it. Currently, this […]

Read more

Simple RGB to HEX game made in python

import random r = random.randint(0,255); g = random.randint(0,255); b = random.randint(0,255); def rgb_to_hex(r, g, b): return (‘{:X}{:X}{:X}’).format(r, g, b); solution = “#” + rgb_to_hex(r, g, b); print(“replace RGB to HEX game, use uppercase, author: github.com/maciekkoks”); print(“RGB:”, r, g, b); input1 = input(“Enter a    

Read more

Get notified as soon as your next CPU, GPU, or game console is in stock

This bot helped me snag an RTX 3070… hopefully it will help you get your hands on your next CPU, GPU, or game console. Requirements Raspberry Pi 2 or newer (alternatively, you can use an always-on PC or Mac) Docker (tutorial) You will also need one of the following: Quick Start For instructions specific to Windows, please see this guide instead: Instructions for Windows These steps should work on any supported Docker platform, but they have been specifically tested on […]

Read more

A two player snake game using python

This is a two player snake game How to play the game There is food and two players.You try to eat food to become large and gain points. Player one uses q and w to turn left and right, respectively.Player two uses o and p to turn left and right, respectively. Credits The game is inspired by the great Python/Turtle tutorials by Christian Thompson (wynand1004):https://github.com/wynand1004/Projects GitHub View Github    

Read more
1 2 3 4 5 6 9