惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
V
V2EX
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
Jina AI
Jina AI
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
B
Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I got tired of bad mobile puzzle games, so I built my own...
Xela · 2026-06-16 · via DEV Community

I've been a mobile gamer for years. Not hardcore — just someone who picks up their phone on a commute, during a lunch break, or at the end of a long day and wants something that actually feels good to play.

The problem is, almost everything in the puzzle game category is the same. A thin mechanic wrapped in a monetization strategy. Ads every 90 seconds. An energy system designed to frustrate you into paying. Progression that feels artificial because it is — the game is slowing you down on purpose.

I kept downloading games, playing for a day, and deleting them. Not because I lost interest in puzzle games, but because none of them respected my time.

So I stopped looking for the game I wanted and started building it.

What is MerjUp?

MerjUp is an arcade can-merging puzzle game for iOS and Android. The mechanic is simple to learn: you tap to fire a can upward, slide to angle your shot, and when two cans of the same type collide, they merge into the next tier. Chain enough merges and you climb from the lowest tier (Duo) all the way to the top (Omega).

Eight tiers. Three game modes. One goal: keep climbing.

The three modes exist because different moods call for different experiences:

  • Story is a 100-level campaign where you're recovering the Core. Each level introduces new board layouts and merge challenges.
  • Classic is time attack — you have a score target and a clock. Precision and speed both matter.
  • Survival is endless. Merge fast before the stack crosses the line. See how long you can last.

Why cans?

Honestly? The aesthetic came from thinking about what makes a satisfying merge feel satisfying. There's something visually chunky and physical about a can. When two of them collide and become something bigger and stranger-looking, it reads immediately. You feel the tier-up without needing a tutorial.

The progression tier names — Duo, Tres, Quanttor, Quinque, Octo, Hexa, Septa, Omega — are loosely numerical (two, three, four, five, eight, six, seven, and then the legendary finish). They give the game a naming vocabulary that's weird enough to be memorable.

Building the web presence

The game needed a home before it was on the App Store. I built the landing page in Next.js 14 with the App Router, Tailwind CSS, and shadcn/ui components. The waitlist is backed by MongoDB, and joining it fires a welcome email through Resend.

I wanted the site to feel like the game — dark, kinetic, with a neon palette and cans that float. Framer Motion handles the animations. The cans on the hero section literally float and rotate. The background plays music the moment you interact with the page.

The whole stack: Next.js + Bun + MongoDB + Resend + Vercel. Fast to build, zero ops overhead.

What I actually learned

The mechanic has to be the reward. Every time I played a session and felt nothing, it was because the merge didn't feel like anything. Getting the physics — the timing of the collision, the visual of the merge — to feel crisp was where most of the design iteration happened.

Waitlists are underrated for solo devs. Building the list in public gives you a real signal. The number of people who sign up before launch is the most honest feedback you can get before anyone has played the game.

Ship the web presence early. The landing page exists at MerjUp now, before the game is live on the App Store. That means Google starts indexing the name, early players can find us, and I have somewhere to point people when I talk about the game.

Avoid the feature trap. My first instinct was to add more — more modes, more mechanics, more can types. The design discipline of MerjUp is that the core loop is the product. Everything else is window dressing until the toss-aim-merge rhythm feels perfect.


Early access is open now. Join the waitlist at MerjUp and you'll get 200 bonus coins when the game drops on iOS and Android.

If you're building something in the mobile game space, I'd love to hear about it — drop a comment below.