eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

195
active users

#pygame

1 post1 participant0 posts today
Lien Rag<p>J'installe pygame sur ma Debian Bookworm avec apt install python3-pygame et apparemment y'a pas le répertoire des exemples ?</p><p>On fait comment pour les avoir, alors ?</p><p><a href="https://mastodon.tedomum.net/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> <a href="https://mastodon.tedomum.net/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a> <a href="https://mastodon.tedomum.net/tags/debian" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>debian</span></a></p>
Reverend Elvis<p>I can hardly believe it.<br>Deepseek, which runs locally on my regular laptop WITHOUT internet access, responded to my question of whether it could write me a game in Python similar to “PONG” with the following:</p><p>------</p><p>Can you write a python scrip to run a game like the classic Pong game? </p><p>Thinking...<br>Okay, so I want to create a Python script for a classic Pong game. Let me<br>think about how to approach this.</p><p>First, I remember that Pong is a two-player game where each player controls<br>a paddle, and they hit a ball back and forth. The goal is to make the ball<br>go past the opponent's paddle. So, I need to set up the game window, create<br>paddles for both players, a ball, and handle their movements.</p><p>I think using Pygame would be a good idea since it's a library designed for<br>creating games in Python. I'll need to initialize Pygame and set up the<br>display. The screen size can be something like 800x600 pixels. Setting the<br>title of the window to "Pong" makes sense.</p><p>Next, defining colors is important for visibility. White for the paddles and<br>ball, and black for the background. That should make everything stand out<br>clearly.</p><p>Now, I need to define the game objects: the left paddle, right paddle, and<br>the ball. Each will have their own positions and dimensions. For example,<br>the left paddle could be on the left side of the screen, centered<br>vertically. The same goes for the right paddle but on the opposite side. The<br>ball should start in the center.</p><p>Handling user input is crucial. I'll need to listen for key presses—like the<br>Up and Down arrows for moving the paddles. For each frame, if a key is<br>pressed, adjust the paddle's position accordingly. But I also need to make<br>sure the paddles don't move off the screen, so I should check their<br>positions against the window boundaries.</p><p>The ball movement involves updating its position based on its velocity.<br>Collision detection with the walls (top and bottom of the screen) will<br>reverse the y-component of the velocity. When the ball hits a paddle, it<br>should bounce back, changing the x-component of the velocity. This means I<br>need to check for collisions between the ball and each paddle.</p><p>Scoring is another important aspect. If the ball goes past the left or right<br>side, the corresponding player gets a point. Updating the score display will<br>require rendering text on the screen.</p><p>Putting it all together, the main loop will handle drawing the objects,<br>updating positions based on input and physics, checking for collisions, and<br>managing scoring. I'll also need to set a frame rate using Pygame's clock to<br>control how fast everything updates.</p><p>I should test each part as I go—maybe first make sure the paddles move<br>correctly without the ball, then add the ball movement, collision with<br>walls, paddle collisions, and finally scoring. Debugging will be necessary<br>if something doesn't work right, like the ball not bouncing or the paddles<br>moving too fast.</p><p>In summary, the steps are: set up Pygame, create game objects, handle user<br>input, move objects, detect collisions, update scores, and display<br>everything on screen. I'll write the code step by step, making sure each<br>part works before moving on to the next.<br>...done thinking.</p><p>Certainly! Below is a Python script that creates a classic Pong game using<br>the Pygame library:</p><p>This script creates a simple Pong game with the following features:</p><p>1. Two players can play using their respective controls:<br>- Player on the left uses 'W' and 'S' keys to move up and down.<br>- Player on the right uses UP and DOWN arrow keys.</p><p>2. The ball bounces off the paddles and walls.</p><p>3. Points are scored when the ball goes past an opponent's paddle.</p><p>4. The score is displayed in the top center of the screen.</p><p>To run this game:</p><p>1. Make sure you have Pygame installed. If not, install it using pip:<br>```<br>pip install pygame<br>```<br>import pygame<br>import random</p><p># Initialize Pygame<br>pygame.init()</p><p># Set up the display<br>width = 800<br>height = 600<br>window = pygame.display.set_mode((width, height))<br>pygame.display.set_caption(„Pong Game“)</p><p># Colors<br>WHITE = (255, 255, 255)<br>BLACK = (0, 0, 0)</p><p># Paddle dimensions<br>paddle_width = 10<br>paddle_height = 100</p><p># Ball dimensions<br>ball_size = 15</p><p># Paddles positions<br>left_paddle_y = height / 2 – paddle_height / 2<br>right_paddle_y = height / 2 – paddle_height / 2</p><p># Ball position and speed<br>ball_x = width / 2<br>ball_y = height / 2<br>ball_speed_x = random.choice([-5, 5])<br>ball_speed_y = random.choice([-5, 5])</p><p># Score<br>score_left = 0<br>score_right = 0<br>font = pygame.font.Font(None, 36)</p><p># Game loop variables<br>clock = pygame.time.Clock()<br>running = True</p><p>while running:<br># Handle events<br>for event in pygame.event.get():<br>if event.type == pygame.QUIT:<br>running = False</p><p># Get keys pressed<br>keys = pygame.key.get_pressed()</p><p># Move left paddle<br>if keys[pygame.K_w]:<br>left_paddle_y -= 5<br>if keys[pygame.K_s]:<br>left_paddle_y += 5</p><p>more ---&gt;</p><p><a href="https://word.undead-network.de/2025/08/22/ich-kann-es-kaum-glauben-i-can-hardly-believe-it/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">word.undead-network.de/2025/08</span><span class="invisible">/22/ich-kann-es-kaum-glauben-i-can-hardly-believe-it/</span></a><br><a href="https://social.undeadnetwork.de/tags/ai" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ai</span></a> <a href="https://social.undeadnetwork.de/tags/code" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>code</span></a> <a href="https://social.undeadnetwork.de/tags/deepseek" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>deepseek</span></a> <a href="https://social.undeadnetwork.de/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> <a href="https://social.undeadnetwork.de/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a></p>
Dendrobatus Azureus<p>Orienting myself in the IDE of mu (for python)</p><p>Initially it looks strange; no normal menu for help/about</p><p>It must be geared towards UI novices?</p><p><a href="https://codewith.mu/en/tutorials/1.0/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">codewith.mu/en/tutorials/1.0/</span><span class="invisible"></span></a></p><p><a href="https://mastodon.bsd.cafe/tags/IDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>IDE</span></a> <a href="https://mastodon.bsd.cafe/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a> <a href="https://mastodon.bsd.cafe/tags/UI" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>UI</span></a> <a href="https://mastodon.bsd.cafe/tags/mu" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>mu</span></a> <a href="https://mastodon.bsd.cafe/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a> <a href="https://mastodon.bsd.cafe/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> </p><p><a href="https://mastodon.bsd.cafe/tags/SBC" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SBC</span></a> <a href="https://mastodon.bsd.cafe/tags/ARM" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ARM</span></a> <a href="https://mastodon.bsd.cafe/tags/Pie" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pie</span></a> <a href="https://mastodon.bsd.cafe/tags/Raspberry" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Raspberry</span></a> <a href="https://mastodon.bsd.cafe/tags/GPIO" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GPIO</span></a> <a href="https://mastodon.bsd.cafe/tags/Electronics" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Electronics</span></a> <a href="https://mastodon.bsd.cafe/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://mastodon.bsd.cafe/tags/POSIX" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>POSIX</span></a></p>
Glitchy Pixel<p>Hey! I've been creating a <a href="https://mastodon.gamedev.place/tags/game" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>game</span></a> <a href="https://mastodon.gamedev.place/tags/engine" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>engine</span></a> <a href="https://mastodon.gamedev.place/tags/framework" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>framework</span></a> in <a href="https://mastodon.gamedev.place/tags/vala" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>vala</span></a> </p><p>Its ECS based, and its called Veggies (eat your veggies!). 🥦</p><p>My reasoning for this framework is to have a game framework alternative to <a href="https://mastodon.gamedev.place/tags/csharp" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>csharp</span></a>. I'm not liking the encroachment <a href="https://mastodon.gamedev.place/tags/microsoft" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>microsoft</span></a> has over <a href="https://mastodon.gamedev.place/tags/gamedev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>gamedev</span></a> and <a href="https://mastodon.gamedev.place/tags/indiedev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>indiedev</span></a></p><p>The video is the well known bunny mark demo. Renders up to 16000 bunnies before being under 30 fps. Still needs a lot of optimization.</p><p>I'm taking ideas from frameworks like <a href="https://mastodon.gamedev.place/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a>, <a href="https://mastodon.gamedev.place/tags/pine" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pine</span></a>, <a href="https://mastodon.gamedev.place/tags/FNA" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FNA</span></a> and <a href="https://mastodon.gamedev.place/tags/excaliburjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>excaliburjs</span></a></p>
tjhowse<p>What's the simplest way to visually convey text, aside from morse code blinking?</p><p>I'm doing some experiments in <a href="https://howse.social/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> to work out just how low-res I can go with scrolling text and still be legible.</p><p>These three animations show text scrolling across a simulated display with 1px, 2px and 3px width. I'm using a 5x3 pixel font from adafruit.</p><p>I think 2px is *barely* readable.</p><p>Imgur link because I can't upload the WEBMs to my masto instance for some reason.</p><p><a href="https://imgur.com/a/0nRBdc8" rel="nofollow noopener" target="_blank"><span class="invisible">https://</span><span class="">imgur.com/a/0nRBdc8</span><span class="invisible"></span></a></p><p><a href="https://howse.social/tags/electronics" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>electronics</span></a></p>
Denzil Ferreira<p>Yay our first game together (me and 12y old) is now on FlatHub! We built it as a vibe coding exercise, learning pygame and Python together 😊</p><p>Give it a go, two players on the same keyboard or two gamepads. 120 seconds, the one that gets more asteroids wins.</p><p><a href="https://techhub.social/tags/linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>linux</span></a> <a href="https://techhub.social/tags/game" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>game</span></a> <a href="https://techhub.social/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a></p>
Kennedy Richard maintains OSS<p>🔥 A recent breakthrough in my Python/pygame-ce research and coding practice is a feature that I call level chunk management.</p><p>Demonstrated in the video and explained in the thread below. 🧵👇</p><p><a href="https://fosstodon.org/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a>-ce <a href="https://fosstodon.org/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> <a href="https://fosstodon.org/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Podstawy fizyki w grach</p><p>Więcej informacji 👉 <a href="https://lttr.ai/AfGjv" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/AfGjv</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Zapraszam na stronę: <a href="https://kodujwpythonie.pl/pl/enigma" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">kodujwpythonie.pl/pl/enigma</span><span class="invisible"></span></a></p><p>Więcej informacji 👉 <a href="https://lttr.ai/AfD0m" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/AfD0m</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Solidna znajomość składni i struktur danych Pythona</p><p>Więcej informacji 👉 <a href="https://lttr.ai/AfCOk" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/AfCOk</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Implementacja interakcji użytkownika (obsługa klawiatury, myszy)</p><p>Więcej informacji 👉 <a href="https://lttr.ai/Ae9kv" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/Ae9kv</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Umiejętność korzystania z gotowych modułów i rozszerzeń</p><p>Więcej informacji 👉 <a href="https://lttr.ai/Ae5dI" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/Ae5dI</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Umiejętność korzystania z bibliotek i frameworków do tworzenia gier, takich jak Pygame</p><p>Więcej informacji 👉 <a href="https://lttr.ai/Ae2bl" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/Ae2bl</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Uczymy się Pythona wykorzystując grę.</p><p>Więcej informacji 👉 <a href="https://lttr.ai/Aet1d" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/Aet1d</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Gene Pasquet<p>Check out MacroKnight! My latest <a href="https://toot.cat/tags/game" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>game</span></a> for the <a href="https://toot.cat/tags/lispgamejam" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>lispgamejam</span></a> written with <a href="https://toot.cat/tags/hylang" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hylang</span></a> and <a href="https://toot.cat/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> </p><p><a href="https://etenil.itch.io/macroknight" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">etenil.itch.io/macroknight</span><span class="invisible"></span></a></p>
Adam Jurkiewicz<p>Podstawy projektowania gier i interfejsu użytkownika</p><p>Więcej informacji 👉 <a href="https://lttr.ai/Aemn6" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/Aemn6</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
VoidSalad<p>👋 New here, just exploring.</p><p>Into <a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a>, <a href="https://mastodon.social/tags/GameDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GameDev</span></a>, <a href="https://mastodon.social/tags/PyGame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PyGame</span></a>, <a href="https://mastodon.social/tags/AndroidDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AndroidDev</span></a>, <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a>, <a href="https://mastodon.social/tags/FOSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FOSS</span></a>, <a href="https://mastodon.social/tags/LiminalSpaces" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LiminalSpaces</span></a>, <a href="https://mastodon.social/tags/Backrooms" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Backrooms</span></a>, <a href="https://mastodon.social/tags/Brutalism" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Brutalism</span></a> and <a href="https://mastodon.social/tags/AIForGood" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AIForGood</span></a>.</p><p>Mostly introverted, always curious.</p><p><a href="https://mastodon.social/tags/Intro" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Intro</span></a> <a href="https://mastodon.social/tags/AIFriendly" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AIFriendly</span></a> <a href="https://mastodon.social/tags/DevLife" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevLife</span></a></p>
Gene Pasquet<p>Finally started making progress on my <a href="https://toot.cat/tags/game" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>game</span></a> for the the <a href="https://toot.cat/tags/springlispgamejam" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>springlispgamejam</span></a>!</p><p><a href="https://toot.cat/tags/lisp" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>lisp</span></a> <a href="https://toot.cat/tags/gamejam" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>gamejam</span></a> <a href="https://toot.cat/tags/lispgamejam" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>lispgamejam</span></a> <a href="https://toot.cat/tags/pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pygame</span></a> <a href="https://toot.cat/tags/hylang" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hylang</span></a></p>
Adam Jurkiewicz<p>Enigma to doskonały przykład na to, jak edukacja technologiczna może być kreatywna i inspirująca dla osób w każdym wieku.</p><p>Więcej informacji 👉 <a href="https://lttr.ai/AeXGF" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/AeXGF</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>
Adam Jurkiewicz<p>Praktyczne doświadczenie zdobyte poprzez realizację małych projektów gier jest nieocenione w rozwijaniu tych umiejętności</p><p>Więcej informacji 👉 <a href="https://lttr.ai/AeJQE" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">lttr.ai/AeJQE</span><span class="invisible"></span></a></p><p><a href="https://linux.social/tags/Pygame" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pygame</span></a> <a href="https://linux.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://linux.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a></p>