home.social

#hackmenow — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #hackmenow, aggregated by home.social.

fetched live
  1. Day 7 of building HackMeNow, my terminal-style hacking puzzle game.

    I’m back after a few days away, and today I’m starting Level 3.

    This is where the game begins moving from early coffee-machine puzzles into proper sysadmin investigation.

    The player will need to explore logs, read files, search for clues, and use commands like:

    ls
    cat
    grep

    HackMeNow is about learning real terminal habits through story-driven puzzles.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

    #HackMeNow #IndieGameDev #Python #Pygame #Linux #CyberSecurity #SysAdmin #GameDev

  2. Day 7 of building HackMeNow, my terminal-style hacking puzzle game.

    I’m back after a few days away, and today I’m starting Level 3.

    This is where the game begins moving from early coffee-machine puzzles into proper sysadmin investigation.

    The player will need to explore logs, read files, search for clues, and use commands like:

    ls
    cat
    grep

    HackMeNow is about learning real terminal habits through story-driven puzzles.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

  3. Day 6 of building HackMeNow, my terminal-style hacking puzzle game.

    Today I’m adding save and load support for Level 2: The Missing Logs.

    The game now remembers more than just level complete or not complete.

    It saves terminal output, puzzle progress, restored files, wrong restore attempts, and whether the player used sudo correctly.

    When the player returns later, the level can rebuild the correct state and continue from where they left off.

    This is not the flashiest system, but it makes the game feel real.

    I’m leaving for a few days, so the next build update will be after the weekend.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

    #HackMeNow #IndieGameDev #Python #Pygame #Linux #GameDev #TerminalGame #SysAdmin

  4. Day 6 of building HackMeNow, my terminal-style hacking puzzle game.

    Today I’m adding save and load support for Level 2: The Missing Logs.

    The game now remembers more than just level complete or not complete.

    It saves terminal output, puzzle progress, restored files, wrong restore attempts, and whether the player used sudo correctly.

    When the player returns later, the level can rebuild the correct state and continue from where they left off.

    This is not the flashiest system, but it makes the game feel real.

    I’m leaving for a few days, so the next build update will be after the weekend.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

  5. Day 5 of building HackMeNow, my terminal-style hacking puzzle game.

    Today I’m adding path autocomplete to the fake Linux terminal.

    In Level 2, the player has to restore a missing log file, so they need to type paths like:

    /var/log
    /var/backups/coffee.log.bak

    Typing long paths manually is annoying, so now the player can press TAB to autocomplete files and directories.

    This makes the game feel closer to a real Linux shell while still running safely inside a fake filesystem.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

    #HackMeNow #IndieGameDev #Python #Pygame #Linux #SysAdmin #GameDev #TerminalGame #LearnLinux

  6. Day 5 of building HackMeNow, my terminal-style hacking puzzle game.

    Today I’m adding path autocomplete to the fake Linux terminal.

    In Level 2, the player has to restore a missing log file, so they need to type paths like:

    /var/log
    /var/backups/coffee.log.bak

    Typing long paths manually is annoying, so now the player can press TAB to autocomplete files and directories.

    This makes the game feel closer to a real Linux shell while still running safely inside a fake filesystem.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

  7. Day 4 of building HackMeNow in Python.

    Today I’m building Level 2: The Missing Logs.

    `/var/log/coffee.log` is gone, so the player has to find the backup, inspect it, and restore it using Linux-style commands:

    find
    cat
    cp
    mv
    sudo

    Try copying without sudo and you get permission denied. Use the right command and the system is restored.

    Linux learning, but make it a terminal puzzle game.

    Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

    #HackMeNow #IndieGameDev #Python #Pygame #Linux #GameDev

  8. Day 4 of building HackMeNow in Python.

    Today I’m building Level 2: The Missing Logs.

    `/var/log/coffee.log` is gone, so the player has to find the backup, inspect it, and restore it using Linux-style commands:

    find
    cat
    cp
    mv
    sudo

    Try copying without sudo and you get permission denied. Use the right command and the system is restored.

    Linux learning, but make it a terminal puzzle game.

    Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

  9. Day 3 of building HackMeNow, my terminal-style hacking puzzle game.

    Today I made Level 1 playable.

    The player starts as a Junior SysOps Engineer at AngrySysOps Corp with one critical mission: make a coffee.

    But BREWTRON-9000 refuses normal user access.

    make me a coffee → permission denied
    sudo make me a coffee → success

    This is where the game starts teaching Linux concepts through puzzles, jokes, and terminal commands.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

    #HackMeNow #IndieGameDev #Python #Pygame #Linux #CyberSecurity #GameDev #TerminalGame

  10. Day 3 of building HackMeNow, my terminal-style hacking puzzle game.

    Today I made Level 1 playable.

    The player starts as a Junior SysOps Engineer at AngrySysOps Corp with one critical mission: make a coffee.

    But BREWTRON-9000 refuses normal user access.

    make me a coffee → permission denied
    sudo make me a coffee → success

    This is where the game starts teaching Linux concepts through puzzles, jokes, and terminal commands.

    Steam Wishlist: store.steampowered.com/app/477
    Discord: discord.gg/jqNhXd22VX

  11. Day 1 of building HackMeNow, my indie terminal-style hacking game.
    Today I’m adding command history so the game behaves more like a real Linux terminal.
    Follow the build: playhackmenow.com
    Join Discord: discord.gg/EAUWvBkApK

    #HackMeNow #IndieGameDev #GameDev #Python #Linux #Devlog

  12. Day 1 of building HackMeNow, my indie terminal-style hacking game.
    Today I’m adding command history so the game behaves more like a real Linux terminal.
    Follow the build: playhackmenow.com
    Join Discord: discord.gg/EAUWvBkApK

  13. 💬 The HackMeNow Discord server is now live!

    I’ve created a community space for everyone following HackMeNow — backers, Steam wishlist supporters, testers, Linux fans, sysadmins, cybersecurity learners, and anyone interested in terminal-style hacking puzzle games.

    Join here:
    discord.gg/jqNhXd22VX

    The Discord will be used for:

    ✅ Development updates
    ✅ Bug reports
    ✅ Beta feedback
    ✅ Kickstarter backer discussion
    ✅ Gameplay questions
    ✅ Linux / terminal / cybersecurity puzzle chat
    ✅ Community announcements

    HackMeNow is growing, and I’d love to build the community around it properly from the start.

    Join the server, say hello, and I’ll see you in the terminal.

    #HackMeNow #Discord #IndieGame #GameDev #Linux #Cybersecurity #SysAdmin #Steam #Kickstarter

  14. 💬 The HackMeNow Discord server is now live!

    I’ve created a community space for everyone following HackMeNow — backers, Steam wishlist supporters, testers, Linux fans, sysadmins, cybersecurity learners, and anyone interested in terminal-style hacking puzzle games.

    Join here:
    discord.gg/jqNhXd22VX

    The Discord will be used for:

    ✅ Development updates
    ✅ Bug reports
    ✅ Beta feedback
    ✅ Kickstarter backer discussion
    ✅ Gameplay questions
    ✅ Linux / terminal / cybersecurity puzzle chat
    ✅ Community announcements

    HackMeNow is growing, and I’d love to build the community around it properly from the start.

    Join the server, say hello, and I’ll see you in the terminal.

  15. 🎁 HackMeNow Launch Giveaway is live!

    To celebrate the HackMeNow Steam page approval and Kickstarter campaign, we are running a community giveaway sponsored by NordVPN, NordPass, Saily and Incogni.

    Six selected participants will receive a privacy and security prize bundle:

    ✅ 1-year NordVPN subscription
    ✅ 1-year NordPass subscription
    ✅ 1-year Incogni subscription
    ✅ 1GB Saily data

    Enter here:
    playhackmenow.com/nord-giveawa

    Wishlist HackMeNow on Steam, complete the giveaway form, and optionally back the Kickstarter to support development.

    No purchase necessary. Backing the project is appreciated but not required to enter and does not increase your chances of winning.

    #HackMeNow #IndieGame #Cybersecurity #Linux #Steam #Kickstarter #giveaway

  16. 🎁 HackMeNow Launch Giveaway is live!

    To celebrate the HackMeNow Steam page approval and Kickstarter campaign, we are running a community giveaway sponsored by NordVPN, NordPass, Saily and Incogni.

    Six selected participants will receive a privacy and security prize bundle:

    ✅ 1-year NordVPN subscription
    ✅ 1-year NordPass subscription
    ✅ 1-year Incogni subscription
    ✅ 1GB Saily data

    Enter here:
    playhackmenow.com/nord-giveawa

    Wishlist HackMeNow on Steam, complete the giveaway form, and optionally back the Kickstarter to support development.

    No purchase necessary. Backing the project is appreciated but not required to enter and does not increase your chances of winning.

  17. 🐍 NEW MINI GAME: Python Chaos

    Your mission is simple:

    Write something that looks like Python code.
    Survive the active rules.
    Score points live.
    Climb the leaderboard.

    Sounds easy? The interpreter has other plans.

    Break syntax. Climb ranks. Survive the interpreter.

    Play it here:
    playhackmenow.com/games/python

    Share your score and see who can survive the longest.

    #Python #Programming #IndieGame #GameDev #HackMeNow #CodingGame

  18. 🐍 NEW MINI GAME: Python Chaos

    Your mission is simple:

    Write something that looks like Python code.
    Survive the active rules.
    Score points live.
    Climb the leaderboard.

    Sounds easy? The interpreter has other plans.

    Break syntax. Climb ranks. Survive the interpreter.

    Play it here:
    playhackmenow.com/games/python

    Share your score and see who can survive the longest.

  19. 🎮 HackMeNow Web Demo is live!

    This is a small, terminal-style hacking puzzle you can play directly in your browser — no install required.
    You’ll adjust firewall profiles, run a diagnostic script, discover the correct sigil, and attempt to open a training gateway while the Blue Team watches for mistakes.

    Play the demo:
    playhackmenow.com/demo.html

    Support the full game on Kickstarter:
    kickstarter.com/projects/hackm

    Would love to hear how far you get before the IDS triggers.

  20. Game dev: (terminal-style hacking puzzles) → playhackmenow.com

    Dev logs, sneak peeks, and release updates here.

  21. Hi, I’m Piotr — @AngrySysOps. Senior System Engineer sharing VMware fixes, AI video labs, and my terminal-puzzle game #HackMeNow. Expect hands-on #VMware #vSphere #NSX, #Homelab builds, and #AI experiments. #introduction

  22. Hi, I’m Piotr — @AngrySysOps. Senior System Engineer sharing VMware fixes, AI video labs, and my terminal-puzzle game #HackMeNow. Expect hands-on #VMware #vSphere #NSX, #Homelab builds, and #AI experiments. #introduction

  23. Hi, I’m Piotr — @AngrySysOps. Senior System Engineer sharing VMware fixes, AI video labs, and my terminal-puzzle game #HackMeNow. Expect hands-on #VMware #vSphere #NSX, #Homelab builds, and #AI experiments. #introduction

  24. Hi, I’m Piotr — @TheTechWorldPod, Senior System Engineer sharing VMware fixes, AI video labs, and my terminal-puzzle game #HackMeNow. Expect hands-on #VMware #vSphere #NSX, #Homelab builds, and #AI experiments. #introduction

  25. Hi, I’m Piotr — @TheTechWorldPod, Senior System Engineer sharing VMware fixes, AI video labs, and my terminal-puzzle game . Expect hands-on , builds, and experiments.