├── Bit-Boy ├── Jogo_Vazio_V1 │ ├── Jogo_Vazio_V1.ino │ ├── buttons.cpp │ ├── buttons.h │ ├── display.cpp │ ├── display.h │ ├── sounds.h │ ├── speaker.cpp │ ├── speaker.h │ ├── utils.cpp │ └── utils.h ├── Jogos │ ├── Pong │ │ ├── Pong.ino │ │ ├── buttons.cpp │ │ ├── buttons.h │ │ ├── display.cpp │ │ ├── display.h │ │ ├── pong.cpp │ │ ├── pong.h │ │ ├── sounds.h │ │ ├── speaker.cpp │ │ ├── speaker.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── Simon │ │ ├── Simon.ino │ │ ├── buttons.cpp │ │ ├── buttons.h │ │ ├── display.cpp │ │ ├── display.h │ │ ├── simon.cpp │ │ ├── simon.h │ │ ├── sounds.h │ │ ├── speaker.cpp │ │ ├── speaker.h │ │ ├── utils.cpp │ │ └── utils.h │ └── Sokoban │ │ ├── Sokoban.ino │ │ ├── buttons.cpp │ │ ├── buttons.h │ │ ├── display.cpp │ │ ├── display.h │ │ ├── sokoban.cpp │ │ ├── sokoban.h │ │ ├── sounds.h │ │ ├── speaker.cpp │ │ ├── speaker.h │ │ ├── utils.cpp │ │ └── utils.h └── Software_de_Seleção_de_Jogos_Bit-Boy_V1 │ └── Bit-Boy │ ├── Bit-Boy.ino │ ├── buttons.cpp │ ├── buttons.h │ ├── display.cpp │ ├── display.h │ ├── menu.cpp │ ├── menu.h │ ├── pong.cpp │ ├── pong.h │ ├── simon.cpp │ ├── simon.h │ ├── sokoban.cpp │ ├── sokoban.h │ ├── sounds.h │ ├── speaker.cpp │ ├── speaker.h │ ├── utils.cpp │ └── utils.h ├── Data_Science └── TensorFlow │ └── Predição_de_imagem_com_MNIST │ ├── README.md │ ├── mnist_model.keras │ ├── number viewer.py │ ├── numero_2.png │ ├── numero_5.png │ ├── prediction from images.py │ ├── requirements.txt │ └── training.py ├── Jogos_em_Python ├── 000_Em_desenvolvimento │ ├── 01_Xadrez │ │ ├── Xadrez.py │ │ └── images │ │ │ ├── bishop black.png │ │ │ ├── bishop white.png │ │ │ ├── dot greenish beige.png │ │ │ ├── dot greenish brown.png │ │ │ ├── king black.png │ │ │ ├── king white.png │ │ │ ├── knight black.png │ │ │ ├── knight white.png │ │ │ ├── mark greenish beige.png │ │ │ ├── mark greenish brown.png │ │ │ ├── pawn black.png │ │ │ ├── pawn white.png │ │ │ ├── queen black.png │ │ │ ├── queen white.png │ │ │ ├── rook black.png │ │ │ └── rook white.png │ └── 02_Em_Breve │ │ └── Em_Breve.py ├── 001_Simon_the_Game │ └── Simon_the_Game.py ├── 002_Jogo_da_Velha │ ├── V1 │ │ └── Tic_Tac_Toe_V1.py │ └── V2 │ │ ├── Bytes_Universe_Game_Engine_V2.py │ │ └── Tic_Tac_Toe_V2.py ├── 003_Jogo_da_Forca │ └── Jogo_da_Forca.py ├── 004_Sudoku │ └── Sudoku_V1.py ├── 005_Jogo_da_Cobrinha │ ├── Bytes_Universe_Game_Engine_V1.py │ └── Snake_Game_V1.py ├── 006_Guess_the_Number │ ├── Adivinhe_o_numero.py │ └── Guess_the_number.py ├── 007_Resta_1 │ └── Resta_1.py ├── 008_Sokoban │ ├── Sokoban.py │ ├── agent on target.png │ ├── agent.png │ ├── box on target.png │ ├── box.png │ ├── floor.png │ ├── target.png │ ├── tree.png │ └── wall.png ├── 009_Tetris │ └── Tetris.py ├── 010_Pong │ └── Pong.py ├── 011_Pedra_Papel_Tesoura_Lagarto_Spock │ ├── Pedra_Papel_Tesoura_Lagarto_Spock.py │ ├── lizard.png │ ├── paper.png │ ├── rock.png │ ├── scissors.png │ └── spock.png ├── 012_Pedra_Papel_Tesoura │ ├── Pedra_Papel_Tesoura.py │ ├── paper.png │ ├── rock.png │ └── scissors.png ├── 013_Jogo_de_Plataforma_2D │ ├── Sprites │ │ ├── Captain Clown Nose │ │ │ └── Captain Clown Nose without Sword │ │ │ │ ├── 01-Idle │ │ │ │ ├── Idle 01.png │ │ │ │ ├── Idle 02.png │ │ │ │ ├── Idle 03.png │ │ │ │ ├── Idle 04.png │ │ │ │ └── Idle 05.png │ │ │ │ └── 02-Run │ │ │ │ ├── Run 01.png │ │ │ │ ├── Run 02.png │ │ │ │ ├── Run 03.png │ │ │ │ ├── Run 04.png │ │ │ │ ├── Run 05.png │ │ │ │ └── Run 06.png │ │ └── Palm Tree Island │ │ │ ├── Background │ │ │ ├── BG Image.png │ │ │ ├── Big Clouds.png │ │ │ ├── Small Cloud 1.png │ │ │ ├── Small Cloud 2.png │ │ │ ├── Small Cloud 3.png │ │ │ ├── Water Reflect Big 01.png │ │ │ ├── Water Reflect Big 02.png │ │ │ ├── Water Reflect Big 03.png │ │ │ ├── Water Reflect Big 04.png │ │ │ ├── Water Reflect Medium 01.png │ │ │ ├── Water Reflect Medium 02.png │ │ │ ├── Water Reflect Medium 03.png │ │ │ ├── Water Reflect Medium 04.png │ │ │ ├── Water Reflect Small 01.png │ │ │ ├── Water Reflect Small 02.png │ │ │ ├── Water Reflect Small 03.png │ │ │ └── Water Reflect Small 04.png │ │ │ └── Terrain │ │ │ ├── Terrain (32x32).png │ │ │ ├── ground_1.png │ │ │ ├── ground_2.png │ │ │ ├── ground_3.png │ │ │ ├── ground_4.png │ │ │ ├── ground_5.png │ │ │ ├── ground_6.png │ │ │ ├── ground_7.png │ │ │ ├── ground_8.png │ │ │ └── ground_9.png │ └── Treasure Hunters.py ├── 014_Jogo_da_Memoria │ ├── Carta para baixo.png │ ├── Carta para cima.png │ ├── GalaxyBrain.png │ ├── GitHubSponsorBadge.png │ ├── HeartOnYourSleeve.png │ ├── Jogo_da_Memoria.py │ ├── OpenSourcerer.png │ ├── PairExtraordinaire.png │ ├── PullShark.png │ ├── QuickDraw.png │ ├── StarStruck.png │ ├── StarStruck_Gold.png │ └── YOLO_Badge.png ├── 015_Flappy_Birds │ ├── Background.png │ ├── Bird.png │ ├── Flap_Birds.py │ ├── Ground.png │ ├── Pipe Up Side Down.png │ └── Pipe.png ├── 016_Flow │ └── Flow.py ├── 017_Pac_Man │ ├── Pac_Man.py │ └── img │ │ ├── Apple.png │ │ ├── Bell.png │ │ ├── Blue_Ghost_Down_0.png │ │ ├── Blue_Ghost_Down_1.png │ │ ├── Blue_Ghost_Down_Right_0.png │ │ ├── Blue_Ghost_Down_Right_1.png │ │ ├── Blue_Ghost_Up_0.png │ │ ├── Blue_Ghost_Up_1.png │ │ ├── Blue_Ghost_Up_Right_0.png │ │ ├── Blue_Ghost_Up_Right_1.png │ │ ├── Cherry.png │ │ ├── Ghost_Eye.png │ │ ├── Green Coconut.png │ │ ├── Harmless_Ghost_0.png │ │ ├── Harmless_Ghost_1.png │ │ ├── Key.png │ │ ├── Orange_Ghost_Down_0.png │ │ ├── Orange_Ghost_Down_1.png │ │ ├── Orange_Ghost_Down_Right_0.png │ │ ├── Orange_Ghost_Down_Right_1.png │ │ ├── Orange_Ghost_Up_0.png │ │ ├── Orange_Ghost_Up_1.png │ │ ├── Orange_Ghost_Up_Right_0.png │ │ ├── Orange_Ghost_Up_Right_1.png │ │ ├── Pac_Man_0.png │ │ ├── Pac_Man_1.png │ │ ├── Pac_Man_10.png │ │ ├── Pac_Man_11.png │ │ ├── Pac_Man_12.png │ │ ├── Pac_Man_13.png │ │ ├── Pac_Man_14.png │ │ ├── Pac_Man_15.png │ │ ├── Pac_Man_16.png │ │ ├── Pac_Man_17.png │ │ ├── Pac_Man_2.png │ │ ├── Pac_Man_3.png │ │ ├── Pac_Man_4.png │ │ ├── Pac_Man_5.png │ │ ├── Pac_Man_6.png │ │ ├── Pac_Man_7.png │ │ ├── Pac_Man_8.png │ │ ├── Pac_Man_9.png │ │ ├── Pink_Ghost_Down_0.png │ │ ├── Pink_Ghost_Down_1.png │ │ ├── Pink_Ghost_Down_Right_0.png │ │ ├── Pink_Ghost_Down_Right_1.png │ │ ├── Pink_Ghost_Up_0.png │ │ ├── Pink_Ghost_Up_1.png │ │ ├── Pink_Ghost_Up_Right_0.png │ │ ├── Pink_Ghost_Up_Right_1.png │ │ ├── Red_Ghost_Down_0.png │ │ ├── Red_Ghost_Down_1.png │ │ ├── Red_Ghost_Down_Right_0.png │ │ ├── Red_Ghost_Down_Right_1.png │ │ ├── Red_Ghost_Up_0.png │ │ ├── Red_Ghost_Up_1.png │ │ ├── Red_Ghost_Up_Right_0.png │ │ ├── Red_Ghost_Up_Right_1.png │ │ ├── Strange Flower.png │ │ ├── Strawberry.png │ │ └── Tangerine.png ├── 018_Uno │ ├── Uno.py │ └── card back.png ├── 019_Travessia │ ├── Travesia.py │ ├── background.jpg │ ├── frog.png │ ├── plant.jpg │ ├── tree trunk.jpg │ └── turtle.jpg ├── 020_Xadrez │ ├── bishop black.png │ ├── bishop white.png │ ├── chess.py │ ├── king black.png │ ├── king white.png │ ├── knight black.png │ ├── knight white.png │ ├── pawn black.png │ ├── pawn white.png │ ├── queen black.png │ ├── queen white.png │ ├── rook black.png │ └── rook white.png ├── 021_Checkers │ └── Checkers.py └── 022_Typing_Shooter │ ├── Typing_Shooter.py │ ├── background.jpg │ ├── enemy_lv_1.png │ ├── enemy_lv_3.png │ ├── enemy_lv_5.png │ └── spaceship.png ├── Kaggle └── Competition - Digit Recognizer │ └── Analise.ipynb ├── LICENSE ├── Projetos_Maker ├── 001_Base_Giratoria_para_Cubo_Magico_V1 │ ├── Base.png │ ├── Conexoes_do_Arduino.png │ ├── MotorDePasso.ino │ ├── README.md │ └── STLs │ │ ├── Base.stl │ │ ├── Garra.stl │ │ └── Tampa.stl └── Proximos │ └── texto.txt ├── README.md └── Screenshots ├── 000_Playlist.png ├── 001_Simon_the_Game.png ├── 002_Jogo_da_Velha.png ├── 003_Jogo_da_Forca.png ├── 004_Sudoku_V1.png ├── 005_Jogo_da_Cobrinha.png ├── 006_Guess_the_Number.png ├── 007_Resta_1.png ├── 008_Sokoban.png ├── 009_Tetris.png ├── 010_Pong.png ├── 011_Pedra_Papel_Tesoura_Lagarto_Spock.png ├── 012_Pedra_Papel_Tesoura.png ├── 013_Jogo_de_Plataforma_2D.png ├── 014_Jogo_da_Memoria.png ├── 015_Flappy_Birds.png ├── 016_Flow.png ├── 017_Pac_Man.png ├── 018_Uno.png ├── 019_Travessia.png ├── 01_Xadrez.png ├── 020_Xadrez.png ├── 021_Checkers.png └── 022_Typing_Shooter.png /Bit-Boy/Jogo_Vazio_V1/Jogo_Vazio_V1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/Jogo_Vazio_V1.ino -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/buttons.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/buttons.h -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/display.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/display.h -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/sounds.h -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/speaker.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/speaker.h -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/utils.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogo_Vazio_V1/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogo_Vazio_V1/utils.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/Pong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/Pong.ino -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/buttons.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/buttons.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/display.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/display.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/pong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/pong.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/pong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/pong.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/sounds.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/speaker.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/speaker.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/utils.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Pong/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Pong/utils.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/Simon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/Simon.ino -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/buttons.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/buttons.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/display.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/display.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/simon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/simon.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/simon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/simon.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/sounds.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/speaker.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/speaker.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/utils.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Simon/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Simon/utils.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/Sokoban.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/Sokoban.ino -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/buttons.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/buttons.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/display.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/display.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/sokoban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/sokoban.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/sokoban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/sokoban.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/sounds.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/speaker.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/speaker.h -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/utils.cpp -------------------------------------------------------------------------------- /Bit-Boy/Jogos/Sokoban/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Jogos/Sokoban/utils.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/Bit-Boy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/Bit-Boy.ino -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/buttons.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/buttons.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/display.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/display.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/menu.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/menu.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/pong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/pong.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/pong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/pong.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/simon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/simon.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/simon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/simon.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/sokoban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/sokoban.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/sokoban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/sokoban.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/sounds.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/speaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/speaker.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/speaker.h -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/utils.cpp -------------------------------------------------------------------------------- /Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Bit-Boy/Software_de_Seleção_de_Jogos_Bit-Boy_V1/Bit-Boy/utils.h -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/README.md -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/mnist_model.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/mnist_model.keras -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/number viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/number viewer.py -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/numero_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/numero_2.png -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/numero_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/numero_5.png -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/prediction from images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/prediction from images.py -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.18.0 2 | matplotlib==3.9.2 -------------------------------------------------------------------------------- /Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Data_Science/TensorFlow/Predição_de_imagem_com_MNIST/training.py -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/Xadrez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/Xadrez.py -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/bishop black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/bishop black.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/bishop white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/bishop white.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/dot greenish beige.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/dot greenish beige.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/dot greenish brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/dot greenish brown.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/king black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/king black.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/king white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/king white.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/knight black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/knight black.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/knight white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/knight white.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/mark greenish beige.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/mark greenish beige.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/mark greenish brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/mark greenish brown.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/pawn black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/pawn black.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/pawn white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/pawn white.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/queen black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/queen black.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/queen white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/queen white.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/rook black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/rook black.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/rook white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/000_Em_desenvolvimento/01_Xadrez/images/rook white.png -------------------------------------------------------------------------------- /Jogos_em_Python/000_Em_desenvolvimento/02_Em_Breve/Em_Breve.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Jogos_em_Python/001_Simon_the_Game/Simon_the_Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/001_Simon_the_Game/Simon_the_Game.py -------------------------------------------------------------------------------- /Jogos_em_Python/002_Jogo_da_Velha/V1/Tic_Tac_Toe_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/002_Jogo_da_Velha/V1/Tic_Tac_Toe_V1.py -------------------------------------------------------------------------------- /Jogos_em_Python/002_Jogo_da_Velha/V2/Bytes_Universe_Game_Engine_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/002_Jogo_da_Velha/V2/Bytes_Universe_Game_Engine_V2.py -------------------------------------------------------------------------------- /Jogos_em_Python/002_Jogo_da_Velha/V2/Tic_Tac_Toe_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/002_Jogo_da_Velha/V2/Tic_Tac_Toe_V2.py -------------------------------------------------------------------------------- /Jogos_em_Python/003_Jogo_da_Forca/Jogo_da_Forca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/003_Jogo_da_Forca/Jogo_da_Forca.py -------------------------------------------------------------------------------- /Jogos_em_Python/004_Sudoku/Sudoku_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/004_Sudoku/Sudoku_V1.py -------------------------------------------------------------------------------- /Jogos_em_Python/005_Jogo_da_Cobrinha/Bytes_Universe_Game_Engine_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/005_Jogo_da_Cobrinha/Bytes_Universe_Game_Engine_V1.py -------------------------------------------------------------------------------- /Jogos_em_Python/005_Jogo_da_Cobrinha/Snake_Game_V1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/005_Jogo_da_Cobrinha/Snake_Game_V1.py -------------------------------------------------------------------------------- /Jogos_em_Python/006_Guess_the_Number/Adivinhe_o_numero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/006_Guess_the_Number/Adivinhe_o_numero.py -------------------------------------------------------------------------------- /Jogos_em_Python/006_Guess_the_Number/Guess_the_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/006_Guess_the_Number/Guess_the_number.py -------------------------------------------------------------------------------- /Jogos_em_Python/007_Resta_1/Resta_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/007_Resta_1/Resta_1.py -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/Sokoban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/Sokoban.py -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/agent on target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/agent on target.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/agent.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/box on target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/box on target.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/box.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/floor.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/target.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/tree.png -------------------------------------------------------------------------------- /Jogos_em_Python/008_Sokoban/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/008_Sokoban/wall.png -------------------------------------------------------------------------------- /Jogos_em_Python/009_Tetris/Tetris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/009_Tetris/Tetris.py -------------------------------------------------------------------------------- /Jogos_em_Python/010_Pong/Pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/010_Pong/Pong.py -------------------------------------------------------------------------------- /Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/Pedra_Papel_Tesoura_Lagarto_Spock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/Pedra_Papel_Tesoura_Lagarto_Spock.py -------------------------------------------------------------------------------- /Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/lizard.png -------------------------------------------------------------------------------- /Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/paper.png -------------------------------------------------------------------------------- /Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/rock.png -------------------------------------------------------------------------------- /Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/scissors.png -------------------------------------------------------------------------------- /Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/spock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/011_Pedra_Papel_Tesoura_Lagarto_Spock/spock.png -------------------------------------------------------------------------------- /Jogos_em_Python/012_Pedra_Papel_Tesoura/Pedra_Papel_Tesoura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/012_Pedra_Papel_Tesoura/Pedra_Papel_Tesoura.py -------------------------------------------------------------------------------- /Jogos_em_Python/012_Pedra_Papel_Tesoura/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/012_Pedra_Papel_Tesoura/paper.png -------------------------------------------------------------------------------- /Jogos_em_Python/012_Pedra_Papel_Tesoura/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/012_Pedra_Papel_Tesoura/rock.png -------------------------------------------------------------------------------- /Jogos_em_Python/012_Pedra_Papel_Tesoura/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/012_Pedra_Papel_Tesoura/scissors.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 01.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 02.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 03.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 04.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/01-Idle/Idle 05.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 01.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 02.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 03.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 04.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 05.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Captain Clown Nose/Captain Clown Nose without Sword/02-Run/Run 06.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/BG Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/BG Image.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Big Clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Big Clouds.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Small Cloud 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Small Cloud 1.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Small Cloud 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Small Cloud 2.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Small Cloud 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Small Cloud 3.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 01.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 02.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 03.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Big 04.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 01.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 02.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 03.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Medium 04.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 01.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 02.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 03.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Background/Water Reflect Small 04.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/Terrain (32x32).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/Terrain (32x32).png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_2.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_3.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_4.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_5.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_6.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_7.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_8.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Sprites/Palm Tree Island/Terrain/ground_9.png -------------------------------------------------------------------------------- /Jogos_em_Python/013_Jogo_de_Plataforma_2D/Treasure Hunters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/013_Jogo_de_Plataforma_2D/Treasure Hunters.py -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/Carta para baixo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/Carta para baixo.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/Carta para cima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/Carta para cima.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/GalaxyBrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/GalaxyBrain.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/GitHubSponsorBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/GitHubSponsorBadge.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/HeartOnYourSleeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/HeartOnYourSleeve.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/Jogo_da_Memoria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/Jogo_da_Memoria.py -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/OpenSourcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/OpenSourcerer.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/PairExtraordinaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/PairExtraordinaire.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/PullShark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/PullShark.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/QuickDraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/QuickDraw.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/StarStruck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/StarStruck.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/StarStruck_Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/StarStruck_Gold.png -------------------------------------------------------------------------------- /Jogos_em_Python/014_Jogo_da_Memoria/YOLO_Badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/014_Jogo_da_Memoria/YOLO_Badge.png -------------------------------------------------------------------------------- /Jogos_em_Python/015_Flappy_Birds/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/015_Flappy_Birds/Background.png -------------------------------------------------------------------------------- /Jogos_em_Python/015_Flappy_Birds/Bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/015_Flappy_Birds/Bird.png -------------------------------------------------------------------------------- /Jogos_em_Python/015_Flappy_Birds/Flap_Birds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/015_Flappy_Birds/Flap_Birds.py -------------------------------------------------------------------------------- /Jogos_em_Python/015_Flappy_Birds/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/015_Flappy_Birds/Ground.png -------------------------------------------------------------------------------- /Jogos_em_Python/015_Flappy_Birds/Pipe Up Side Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/015_Flappy_Birds/Pipe Up Side Down.png -------------------------------------------------------------------------------- /Jogos_em_Python/015_Flappy_Birds/Pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/015_Flappy_Birds/Pipe.png -------------------------------------------------------------------------------- /Jogos_em_Python/016_Flow/Flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/016_Flow/Flow.py -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/Pac_Man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/Pac_Man.py -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Apple.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Bell.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Down_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Blue_Ghost_Up_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Cherry.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Ghost_Eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Ghost_Eye.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Green Coconut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Green Coconut.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Harmless_Ghost_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Harmless_Ghost_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Harmless_Ghost_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Harmless_Ghost_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Key.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Down_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Orange_Ghost_Up_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_10.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_11.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_12.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_13.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_14.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_15.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_16.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_17.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_2.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_3.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_4.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_5.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_6.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_7.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_8.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pac_Man_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pac_Man_9.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Down_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Pink_Ghost_Up_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Down_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_Right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_Right_0.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_Right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Red_Ghost_Up_Right_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Strange Flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Strange Flower.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Strawberry.png -------------------------------------------------------------------------------- /Jogos_em_Python/017_Pac_Man/img/Tangerine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/017_Pac_Man/img/Tangerine.png -------------------------------------------------------------------------------- /Jogos_em_Python/018_Uno/Uno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/018_Uno/Uno.py -------------------------------------------------------------------------------- /Jogos_em_Python/018_Uno/card back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/018_Uno/card back.png -------------------------------------------------------------------------------- /Jogos_em_Python/019_Travessia/Travesia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/019_Travessia/Travesia.py -------------------------------------------------------------------------------- /Jogos_em_Python/019_Travessia/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/019_Travessia/background.jpg -------------------------------------------------------------------------------- /Jogos_em_Python/019_Travessia/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/019_Travessia/frog.png -------------------------------------------------------------------------------- /Jogos_em_Python/019_Travessia/plant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/019_Travessia/plant.jpg -------------------------------------------------------------------------------- /Jogos_em_Python/019_Travessia/tree trunk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/019_Travessia/tree trunk.jpg -------------------------------------------------------------------------------- /Jogos_em_Python/019_Travessia/turtle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/019_Travessia/turtle.jpg -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/bishop black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/bishop black.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/bishop white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/bishop white.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/chess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/chess.py -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/king black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/king black.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/king white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/king white.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/knight black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/knight black.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/knight white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/knight white.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/pawn black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/pawn black.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/pawn white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/pawn white.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/queen black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/queen black.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/queen white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/queen white.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/rook black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/rook black.png -------------------------------------------------------------------------------- /Jogos_em_Python/020_Xadrez/rook white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/020_Xadrez/rook white.png -------------------------------------------------------------------------------- /Jogos_em_Python/021_Checkers/Checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/021_Checkers/Checkers.py -------------------------------------------------------------------------------- /Jogos_em_Python/022_Typing_Shooter/Typing_Shooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/022_Typing_Shooter/Typing_Shooter.py -------------------------------------------------------------------------------- /Jogos_em_Python/022_Typing_Shooter/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/022_Typing_Shooter/background.jpg -------------------------------------------------------------------------------- /Jogos_em_Python/022_Typing_Shooter/enemy_lv_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/022_Typing_Shooter/enemy_lv_1.png -------------------------------------------------------------------------------- /Jogos_em_Python/022_Typing_Shooter/enemy_lv_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/022_Typing_Shooter/enemy_lv_3.png -------------------------------------------------------------------------------- /Jogos_em_Python/022_Typing_Shooter/enemy_lv_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/022_Typing_Shooter/enemy_lv_5.png -------------------------------------------------------------------------------- /Jogos_em_Python/022_Typing_Shooter/spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Jogos_em_Python/022_Typing_Shooter/spaceship.png -------------------------------------------------------------------------------- /Kaggle/Competition - Digit Recognizer/Analise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Kaggle/Competition - Digit Recognizer/Analise.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/LICENSE -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/Base.png -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/Conexoes_do_Arduino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/Conexoes_do_Arduino.png -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/MotorDePasso.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/MotorDePasso.ino -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/README.md -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/STLs/Base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/STLs/Base.stl -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/STLs/Garra.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/STLs/Garra.stl -------------------------------------------------------------------------------- /Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/STLs/Tampa.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Projetos_Maker/001_Base_Giratoria_para_Cubo_Magico_V1/STLs/Tampa.stl -------------------------------------------------------------------------------- /Projetos_Maker/Proximos/texto.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/000_Playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/000_Playlist.png -------------------------------------------------------------------------------- /Screenshots/001_Simon_the_Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/001_Simon_the_Game.png -------------------------------------------------------------------------------- /Screenshots/002_Jogo_da_Velha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/002_Jogo_da_Velha.png -------------------------------------------------------------------------------- /Screenshots/003_Jogo_da_Forca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/003_Jogo_da_Forca.png -------------------------------------------------------------------------------- /Screenshots/004_Sudoku_V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/004_Sudoku_V1.png -------------------------------------------------------------------------------- /Screenshots/005_Jogo_da_Cobrinha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/005_Jogo_da_Cobrinha.png -------------------------------------------------------------------------------- /Screenshots/006_Guess_the_Number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/006_Guess_the_Number.png -------------------------------------------------------------------------------- /Screenshots/007_Resta_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/007_Resta_1.png -------------------------------------------------------------------------------- /Screenshots/008_Sokoban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/008_Sokoban.png -------------------------------------------------------------------------------- /Screenshots/009_Tetris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/009_Tetris.png -------------------------------------------------------------------------------- /Screenshots/010_Pong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/010_Pong.png -------------------------------------------------------------------------------- /Screenshots/011_Pedra_Papel_Tesoura_Lagarto_Spock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/011_Pedra_Papel_Tesoura_Lagarto_Spock.png -------------------------------------------------------------------------------- /Screenshots/012_Pedra_Papel_Tesoura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/012_Pedra_Papel_Tesoura.png -------------------------------------------------------------------------------- /Screenshots/013_Jogo_de_Plataforma_2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/013_Jogo_de_Plataforma_2D.png -------------------------------------------------------------------------------- /Screenshots/014_Jogo_da_Memoria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/014_Jogo_da_Memoria.png -------------------------------------------------------------------------------- /Screenshots/015_Flappy_Birds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/015_Flappy_Birds.png -------------------------------------------------------------------------------- /Screenshots/016_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/016_Flow.png -------------------------------------------------------------------------------- /Screenshots/017_Pac_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/017_Pac_Man.png -------------------------------------------------------------------------------- /Screenshots/018_Uno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/018_Uno.png -------------------------------------------------------------------------------- /Screenshots/019_Travessia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/019_Travessia.png -------------------------------------------------------------------------------- /Screenshots/01_Xadrez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/01_Xadrez.png -------------------------------------------------------------------------------- /Screenshots/020_Xadrez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/020_Xadrez.png -------------------------------------------------------------------------------- /Screenshots/021_Checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/021_Checkers.png -------------------------------------------------------------------------------- /Screenshots/022_Typing_Shooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leonardo-Nunes-Armelim/Bytes_Universe/HEAD/Screenshots/022_Typing_Shooter.png --------------------------------------------------------------------------------