DEV Community

Akhouri Anmol Kumar
Akhouri Anmol Kumar

Posted on

๐Ÿ—๏ธ Akhouri Systems: 4 apps, 1 thirteen-year-old kid, 0 employees

No co-founder. No funding. No backend team. Just a laptop, a lot of failed builds, and a name I gave myself: Akhouri Systems.

Here's everything I've shipped so far โ€” and what I actually learned building it.

๐Ÿ”’ ATLOCK โ€” the flagship

A Windows security suite that does what most "lock" apps fake:

System Lockdown โ€” real OS-level enforcement, blocks Alt+Tab, Win key, kills Task Manager on sight
File Guard โ€” locks files using NTFS Access Control Lists, the same permission layer Windows itself enforces. Not even admin access bypasses it
Password Vault โ€” AES + PBKDF2-HMAC-SHA256 encrypted, fully local, zero cloud
Intruder Ops โ€” auto-captures a photo + video the moment someone enters the wrong password

It's fully offline. Independently reviewed and certified "100% Clean" by Softpedia.

๐Ÿ“ ANOTE

A multi-tab text editor with a built-in translator and a lock screen โ€” built because I wanted a Notepad replacement that didn't feel like it was designed in 2005.

๐Ÿงฎ ACALCU

A fully customizable calculator. My first product โ€” the one that started Akhouri Systems.

๐Ÿ“ท APIC

A local image processing tool โ€” no cloud upload required to edit or process images.

๐Ÿงญ What building this alone actually taught me

Every dependency is a dependency I maintain, forever, alone. That's the real reason ATLOCK doesn't have a server, a dashboard, or a subscription. Fewer moving parts means fewer things breaking with no team to catch it.

The hardest technical problem wasn't UI, it was NTFS ACLs. Getting Windows' own permission system to actually enforce a file lock โ€” instead of faking it with a password dialog โ€” meant working directly with the Win32 security API. Getting the save/restore cycle for permissions exactly right took the most iteration of anything I've built.

Shipping solo means every bug is mine, immediately. No triage meeting, no assigning tickets โ€” if something breaks, I'm the one who finds out and the one who fixes it. That's been the fastest way to actually learn how software behaves in the real world instead of just how it's supposed to.

๐Ÿ“Š Where things stand
415+ downloads, zero ad spend
Listed on Softpedia, SourceForge, AlternativeTo, IndiAlt
All builds free, open source, single .exe โ€” no installer, no subscription
Why I'm sharing this

I don't think age should be the reason to wait before building something real. If you're young and think you're "too early" to ship โ€” you're probably not. Start now, ship something small, and keep going.

๐Ÿ”— GitHub: https://github.com/Akhouri-Anmol-Kumar
๐Ÿ”— ATLOCK specifically: https://github.com/Akhouri-Anmol-Kumar/ATLOCK
๐Ÿ”— Direct Download Link (ATLOCK) : https://github.com/Akhouri-Anmol-Kumar/ATLOCK/releases/download/v4.0/ATLOCK.zip

Would love feedback from this community โ€” technical or otherwise. What should I build or fix next?

"We Build What Other Forgot To Fix"

Top comments (1)

Collapse
 
merbayerp profile image
Mustafa ERBAY

Impressive amount of work, especially as a solo developer. One thing Iโ€™d be careful with is the statement that NTFS ACL protection canโ€™t be bypassed even by an administrator. ACLs provide strong access control, but administrators with the appropriate privileges can still take ownership or modify permissions. Clarifying the threat model would make that claim both more precise and more credible.

Reference: