Alternatives
Products that do what Aetylis does
You'll just want one more turn
- 1PP
Hello, HN - I wanted to share this puzzle game I made during my vacation. I'm rather fond of the pipes puzzle where your goal is to restore a scrambled network of connections by rotating tiles. It's usually played on a grid of squares and this all started when I decided to make a programmatic solver for that kind of puzzle. Then I realized that with some minor changes the solver could generate new puzzle instances. I thought about what kind of puzzle to make and someone suggested a hexagonal grid. Adapting the generator wasn't too hard but then I had to create a way to play this variant. So…
2022 · hexapipes.vercel.app
- 2IM
This is the first iteration of a short game I’m making that tries to interactively explain some of my favorite math questions / ideas. My goal is mostly to get the player curious and not necessarily to explain absolutely everything. There were a lot of fun technical parts to building this: - For implementation reasons, it’s much easier if the lines all have integer intersection points with each other. To do this, when a new line is added I “cheat” by rounding intersections to integers and then splitting the old lines at the intersection into new linds (with potentially different slopes)…
2024 · rahulilango.com
- 3IM
2022 · quaxio.com
- 4HT
I created a puzzle game after some recent years of hiatus from game development. It was a puzzle game where you have to assemble a randomized tiles. You can view the preview using eye icon on the top right side. You also can undo your previous step. I created this game using Unity because I am already familiar with it. If you encounter the tiles is not randomized, please try recreate the tile again, I don't exactly know why it's happenning. Thank you
2024 · yunusefendi52.itch.io
- 5IW
I’ve been working on a puzzle game for a few years as a side project. The game is based on a small region of tiles in a grid that is mirrored, modified, and mirrored again. It’s based on a novel phenomenon I noticed where, once these mutations happen a few times, the original region can be hard to recognize. You have a feeling there are symmetries in the image, but they are just out of grasp. Going further, if only part of the region is visible, such as mirroring off the edge of the board, it adds to the feeling and it becomes a satisfying puzzle to solve. I originally published this on the…
2024 · hidden-mirrors.com
- 6TC
I'm experimenting game mechanics that are usually seen on a typical grid, but transposed on an irregular one. This is a first game based on Minesweeper. The changes an irregular grid brings are that cells don't all have 8 neighbors. Some can have less, some can have more. So when you try and deduce if a tile has a mine, you have to pay closer attention at the number clues and which tiles neighbors it. My intention is to make a very classic game a bit more challenging & fun. I've also released a first version of Checkers/Draughts, and plan to test similar variants for Chess, Othello and…
2024 · polyreplay.com
- 7DF
Domino fit is a domino tiling puzzler I spent a lot of time both making and playing. Its like sudoku but with a geometric angle, the sum of the dots must match the row and column numbers. It's running on Betsy, the server under my couch, and was made with typescript. I'm proud of it. I hope you give it a shot, and appreciate any thoughts or criticisms!
2024 · dominofit.isotropic.us
- 8

- 9IB
Hi, I built Equatile, a logic-based puzzle game where you arrange number tiles on a grid to make every row and column equal their target values. It's built using Expo and is available for free on iOS, Android, and the Web. It's a game I've had in mind for almost 10 years now but never got to actually develop, until I came across Expo which made the process incredibly easy. I might open source the code on GitHub. I hope you enjoy playing it!
2025 · equatile.com
- 10SA
Sep 2025 · swapple.fuglede.dk
- 11

- 12SA
Hello! Try out a 3x3 puzzle and click the question mark in the top right for a tutorial. I'd really appreciate any feedback! Thanks
2024 · slidecross.io
- 13LO
"Lights Out" is a mathematical puzzle that lives on an grid where each cell of the grid is one of two colors: either red or white. The goal is to eventually get all the cells in the grid to be red. What's the catch? Clicking a cell will not only flip its color, but also that of all cells sharing the same row or column as it. To me, this game feels like playing with a Rubik's cube --- every time you think you are fixing one cell, you mess up its neighbors! There are many ways to arrive at a solution... some mathematical (linear algebra, or combinatorics), others more logical,... and yet…
Oct 2025 · raymondtana.github.io
- 14IC
Hello everyone! I created a short game in just a few days, just for fun, where you play as an ant and feed it apples This game also features random landscape generation, with clouds and trees arranged in a chaotic pattern across all coordinates. This is what took me the longest time :) I would appreciate your feedback ^ ^
Sep 2025 · aanthonymax.github.io
- 15CTChess Twist▲29
I continue my experiment of transposing classic games onto an irregular grid. I've previously released variants of minesweeper and checkers. And now I'd like to share my variant of Chess. Chess can be a pretty punishing game, but I thought this was nevertheless a way to make it even more challenging by making it trickier to anticipate your opponent, even though both players still have the same information. From the playtests I've done, that challenge is pretty compelling. It also seems to be more fun at 2 people, where both players keep surprising one another.
2024 · polyreplay.com
- 16

- 17HL
Hypersplit is like Neal's Infinite Craft but turned upside down. Instead of crafting your way up from the four elements, you start big and go small, down to quarks. It's using GPT-4 to split the words, but a big difference from Infinite Craft is that I can precalculate the possible paths since they are limited (sooner or later you hit a quark or a loop). This means that I can ship it with the whole dictionary locally instead of hitting an LLM every split. While it started with just the splitting, I quickly got the urge to split things faster... which turned the app into the incremental…
2024 · lantto.github.io
- 18EA
Hi HN, I made this small game in my spare time. It's quite addictive, I spent a lot of hours playing instead of polishing it. My own highscore is 96,792. Source code is at https://github.com/MikeBellika/tile-game. It's made with react, tailwind, and framer motion. Hope you enjoy!
2024 · bellika.dk
- 19PP
I’ve been a big fan of Hexapipes since it came out last year. I also wanted to learn about Penrose tiling. So I implemented a Penrose grid for Hexapipes! My intention is to contribute the code back to Hexapipes. Earlier this year I contributed the Cube grid as a practice run. It is a joy working with the brilliant @gereleth. It will take some work to raise the code to the Hexapipes standard. But the game is ready to play, so I thought I’d release it at its own domain. It is based on a new JS library for generating a random area of Penrose tiles, implementing algorithms by Simon Tatham. Demo…
2023 · penrosepipes.vercel.app
- 20IM
While on paternal leave, I wanted to create a game my newborn daughter could eventually play and learn something from. I was heavily inspired by the daily puzzle games I consistently play such as Wordle and Strands. Refractor is a game about connecting colored tiles together to reach all the goals. Use "refractor" tiles to combine two colors together but be careful not to trap yourself in! The game is won when all goals are fulfilled. The tech stack is: Laravel + Inertia, React + TypeScript, and DaisyUI + TailwindCSS. Open to any questions or feedback. Hope you might find it interesting!
2024 · refractor-game.com
- 21OA
Hi everybody. I occasionally make little browser-based games, and this is my latest attempt. It's not quite done, but it's quite playable (note: it does include audio): https://www.omiword.com/ This has been my occasional tinker target for ~5 years now, starting in the early days of Covid. The objective is to drag letter tiles within certain boundaries to spell four common American-English words. It hasn't got ads or anything, it's just supposed to be fun for its own sake. If people happen to like it, I might add an option for folks to make a small, one-time payment to unlock…
2025 · omiword.com
- 22

- 23FA
Hi everyone, I built FuseCells, a minimalistic logic puzzle game where every level is handcrafted (no procedural generation). It started as a personal challenge to design a clean rule-set and scale it to thousands of puzzles without losing difficulty balance. What’s unique: • 2,500 handcrafted levels across multiple grid sizes • Deterministic logic — no guessing required • A rule system inspired by constraint-solving and path-finding concepts • Daily challenges and global progress tracking • Fully built as a solo dev project Technical notes for those curious: • Level generation tools I wrote…
Dec 2025 · apps.apple.com
- 24IB
It's like a mix between Picross (Nonograms) and Polyominoes. It's a minimalist puzzler which has no text, no tutorials (none required) and no ads set in a relaxing environment. App Store: https://itunes.apple.com/gb/app/shapeuku-shape-puzzle-game/i... Play Store: https://play.google.com/store/apps/details?id=com.dtbgames.s... I have a bulk load of Android promo codes to give away, so if you'd like one let me know! (Sorry iOS users, I have no free codes left!)
2018
Ranked by how close each launch is in meaning, then by votes. Refine with a description →