Recently, I decided it was time to look toward my future, so I dumped multiple projects I've been working on since COVID onto Github, the main one being a custom logic engine and domain-specific language called Teleos DSL — by jaysyrk.
I posted it to a programming language community on Reddit, excited to finally show people what I built.
Instead, I got permanently banned and muted.
The mods told me that using Unicode dividers and writing 10,000 lines of incredibly clean code meant I was lying and using an LLM. I literally offered to hop on a call and break down the internal parsing logic line by line from memory. They didn't care. They just muted me so I couldn't even reply.
It sucked. BUT.. i have learned from this, i have created a background task in go that record my progress in my projects folder every 15 minutes so that if i accidentally don't upload to Github till the very end then I WILL STILL HAVE THE TIMLINE!!
Every 15 minutes, it checks if I’ve changed anything. If I have, it takes the 'git diff --stat' (which shows exactly how many lines I typed or deleted) and logs it.
But anyone can fake a regular text log. Sooooo... I used a hash chain. Every time it logs a new entry, it generates a SHA-256 hash by mixing the timestamp, the code changes, and the hash of the previous log entry.
It looks like this:
```text
┌─── TRACKER AUDIT: 2026-05-22 16:45:00 ─── │ Prev-Hash: 4a8b9c2d │ Curr-Hash: f3e2d1c0 ├─── CHANGES DETECTED ─── main.go | 42 ++++++++++++++------------ 1 file changed, 22 insertions(+), 20 deletions(-) └──────────────────────────────────────────────── ``` Because every single 15-minute block is mathematically tied to the one before it, you cannot fake the timeline. If you try to go back and alter a single line or a timestamp from two days ago, the whole chain breaks. It’s literal, un—fakable proof of work done by ME AND ME ONLY!
We’re in a weird time in tech where if you write messy, chaotic code, you're a human, but if you maintain absolute crisp and clean architecture, people think you're a bot.
I’m keeping my Unicode lines and em dashes. I’m keeping my clean formatting. If the internet communities we have right now are too cynical to believe a teenager can write clean systems code, don't waste your energy begging them for an appeal. I just want to find a spot where I can get actual feedback and not get shut down for having code that's "too good to be true for a 16 year old".