Aww Man is an internet radio show hosted by Rory Hinchey, which also books concerts in Prague for musicians who play unusual music.
The next live radio show is scheduled for March 22, 2026 at 11:00 CET with an in-studio performance by LÁZ . The streaming page (which launches in a new window) cycles through a limited number of archived shows otherwise.
The playlists section below has links to all recorded editions of the show in downloadable .mp3 format, shows are available as podcasts on Apple Podcasts, Amazon Music, and TuneIn.
Email: r{@}awwman.net
Facebook: https://www.facebook.com/awwmanradiobooking/
Instagram: https://www.instagram.com/awwmanradiobooking/
Podcast RSS feed: https://awwman.net/rss/awwman-podcast.rss
Click on a link below to expand it for content:
Ludo Java Game 240x320 May 2026
class LudoCanvas extends Canvas // Board array: 15x15 cells, 4 colors // Token positions, dice value, turn logic protected void paint(Graphics g) g.setColor(0xFFFFFF); g.fillRect(0, 0, getWidth(), getHeight()); drawBoard(g); drawTokens(g); drawDice(g);
public LudoGame() gameCanvas = new LudoCanvas(); exitCmd = new Command("Exit", Command.EXIT, 1); menuCmd = new Command("Menu", Command.SCREEN, 2); gameCanvas.addCommand(exitCmd); gameCanvas.addCommand(menuCmd); gameCanvas.setCommandListener(this); Ludo Java Game 240x320
public void startApp() display = Display.getDisplay(this); display.setCurrent(gameCanvas); class LudoCanvas extends Canvas // Board array: 15x15
protected void keyPressed(int keyCode) int action = getGameAction(keyCode); if (action == FIRE) rollDiceOrMoveToken(); // handle navigation 4 colors // Token positions