Devlog #1 — Slack bot
Built a small Slack bot today. Kept it minimal just a few commands to start.
Commands:
/help — lists what the bot can do
/ping — replies “pong”, quick way to check the bot’s alive
/jke — tells a random joke
That’s it for now.
Devlog #1 — Building my portfolio
Started working on my personal portfolio site today. Nothing fancy just HTML, CSS and vanilla JS, no frameworks.
What’s in it:
A short “who I am” section
A projects grid linking to what I’ve built so far (Decimation MOD, One ID, and this site itself)
A simple contact section with links to GitHub and Stardance
That’s it for now.
Hello everyone new updates!!
The original mod talked to a server over raw TCP/UDP sockets (using a Java networking library called KryoNet) for things like player stats, the server list screen, and update checks. That backend was never open source and doesn’t exist anymore, so I’ve been writing a brand new one that speaks the exact same “language” the client expects matching its wire protocol message by message so the old client just works against new server code without needing to be rewritten itself.
So far that new server handles:
Player profiles (kills/deaths/stats)
The in game server list
Live player count
More message types (server-side crash reports, supporter status, the update system) are getting added one at a time as I work through them.
Networking infrastructure.
Got a relay set up so the client’s existing hardcoded connection info actually reaches the new server, DNS pointed at the right place, and both sides talking over the same ports without falling over which involved learning more about TCP vs UDP port binding and firewall/security groups than I expected to going in.
Fixed a pile of dead links. A handful of things the mod calls out to at runtime (update checks, a resource pack, some JSON it fetches for the main menu) pointed at old GitHub links that don’t exist anymore. Tracked those down one at a time and replaced them with working equivalents, including chasing down a sneaky “blocked because of the default Java user-agent” issue that looked like a permissions bug at first.
Hey everyone, It’s been a while but Decimation is alive again. I want to give you a real update on where things stand, because a lot has happened behind the scenes and I don’t want that work to go unnoticed. (and i have no clue why it logged only 46m over the +100 hours of work done but whatever.)
Like some of you may know, development on Decimation stalled a long time ago and the original source code was never made public. For a long time that meant the mod was effectively frozen, no fixes, no updates, no working mod. Over the past weeks I’ve been working on reviving the project from the ground up: rebuilding a working development environment, restoring the codebase to a buildable state, and getting the whole thing running on modern tooling instead of the outdated setup it originally shipped with.
This has been a genuinely massive undertaking. We’re talking about thousands of individual issues that needed to be worked through one by one, some tiny, some structural, across a codebase that spans dozens of systems. It has not been a quick job, and there were several points where the smart move was to stop, rethink the approach, and redo work rather than push forward on a shaky foundation.
The immediate focus now is functional testing, going system by system to confirm everything behaves the way it’s supposed to, catching runtime issues that don’t show up until you actually play the mod, and gradually cleaning up the codebase so future changes are easier to make than this initial recovery was.
I’m not going to promise a release date, because anyone who’s done a project like this knows those promises tend to age badly. What I can promise is that this isn’t a “one big push and abandon it again” situation, the goal is to get Decimation back to a state where it can actually be maintained and built upon going forward.
i’m continuing to build the backend for the app and adding customization like dark/white mode + adding the possibility to export the pgp keys of the vault allowing to restore it later on after a logout that wipes everything.
more info soon.
hi everyone, i started to make the “create your password” page to integrated with the set up with PGP, all the data is stored locally encrypted by the key that the user creates/imports and is never exposed as plain text. starting to work now on the safe storing of sensitive data with predefined categories and tags for easier sharing and storing.
Here are some screenshots of the current pages.
Currently made in electron.
hi, my name is jack and I’m creating an app that allows to share sensitive data with services provider, a service provider is just anyone that wants to use the service.
it’s obviously totally free and works mainly with a local desktop react app that handles all the data that the user wants to share and a little server. users can also add id with face scan that wont be provided directly to the services provider, but they will get a string that verifies the authenticities of the id (ill figure something up to make it work and be safe)
for now i built a really really basic graphic interface for creating a password and store safely them, I’m starting now to build the structure that i will share soon.
thank you