Builder of things in Python, Java, C++ & HTML. Running OSXSPACE and StarkXHub. Shipping soon.
Python is the language I reach for first. It reads almost like plain English, which means the gap between "I have an idea" and "I have working code" is small. That matters more than people admit — a language that gets out of your way lets you spend your time solving the actual problem instead of fighting syntax.
It's also genuinely everywhere. Automation scripts, backend APIs with Flask or FastAPI, Telegram bots (which I use a lot for OSXSPACE and StarkXHub), data work with pandas, and even small games with pygame — one language covers all of it. The standard library alone ("batteries included") handles files, networking, JSON, dates, and more without a single external package.
import requestsdef send_message(token, chat_id, text): url = f"https://api.telegram.org/bot{token}/sendMessage" return requests.post(url, data={"chat_id": chat_id, "text": text})
What makes Python 90% of my stack isn't just familiarity — it's that it scales down for a quick script and scales up for a real backend. Same language, both ends.
Java is stricter and more verbose than Python, but that strictness is a feature once a project grows. Static typing catches whole categories of bugs before the code ever runs, and the JVM's tooling — build systems like Maven / Gradle, and mature IDEs — makes large, multi-person codebases easier to reason about than looser dynamic languages.
I use Java mainly for Android-adjacent tools and anything that needs to run predictably at scale: object-oriented design, interfaces, and strong typing force you to plan a structure up front instead of discovering it halfway through, which is a different (and useful) way of thinking compared to Python's "just start writing" style.
When a project needs a lightweight web server or API instead of a full Python backend, I reach for Express, a minimal Node.js framework. It's a thin layer over Node's built-in HTTP server that gives you routing, middleware, and JSON handling without much boilerplate.
npm init -ynpm install expressconst express = require("express");const app = express();app.use(express.json());app.get("/", (req, res) => { res.send("Tʜᴜɴᴅᴇʀ's server is live");});app.listen(3000, () => console.log("Running on port 3000"));node server.js
That's the whole shape of it: define routes (GET, POST, etc.), attach middleware for things like JSON parsing or auth, and let Express handle the request/response cycle. It pairs naturally with a Python backend for heavier logic — Express handles the web-facing layer, Python handles processing, bots, or data work behind it.
Once a repo is public, getting a local copy is three commands:
git clone https://github.com/<username>/<repo-name>.gitcd <repo-name>npm install # if it's a Node/Express projectpip install -r requirements.txt # if it's Python
My previous main repository has been suspended, so it isn't live right now. A new one is being rebuilt from the ground up and will be made public soon — once it's up, the clone command above will point straight to it.
The original repository was suspended and is no longer accessible.
New Repo — Coming SoonA rebuilt, cleaner version is in progress and will go public soon. Watch the Telegram channel above for the drop.