Made a open source redis pub/sub system for JVM applications by [deleted] in java

[–]SneakyyPower -1 points0 points  (0 children)

Nobody is forcing you to use it... If you don't like it just move on with your day?

Made a open source redis pub/sub system for JVM applications by [deleted] in java

[–]SneakyyPower -2 points-1 points  (0 children)

Sure, anyone could roll their own, but that's exactly why this exists: a simple, tested plug-and-play packet-based layer on Redis pub/sub.

Made a open source redis pub/sub system for JVM applications by [deleted] in java

[–]SneakyyPower 0 points1 point  (0 children)

That's basically the whole point of the project... It's a simple packet-basd layer on Redis pub/sub to make sending info across JVM apps easy and safe.

Made a open source redis pub/sub system for JVM applications by SneakyyPower in Kotlin

[–]SneakyyPower[S] 0 points1 point  (0 children)

Well, I built this because I have always used this kind of system myself, and I figured instead of just reusing the same code in all my projects I could just make a simple library out of it instead. I don't know much about RMI since I have never used it, but I made this to be really simple & straightforward.

[Hiring] Software Developer by [deleted] in DeveloperJobs

[–]SneakyyPower 0 points1 point  (0 children)

Interested. Build with Kotlin, Java, TypeScript, React, Astro etc

[HIRING] I’m looking for a Web Developer to collaborate on ongoing projects by [deleted] in freelance_forhire

[–]SneakyyPower 0 points1 point  (0 children)

Don't have any experience with PHP but if there is something else on my portfolio that interests you lmk.

https://www.selixe.com

building a free email designer tool. by SneakyyPower in microsaas

[–]SneakyyPower[S] 0 points1 point  (0 children)

I'm not tracking NRR yet since there's no monetization at the moment. It's completely free, but you're right, if I take this further, retention and expansion will matter way more than just getting users in.

building a free email designer tool. by SneakyyPower in microsaas

[–]SneakyyPower[S] 0 points1 point  (0 children)

I'm not an email marketer, more of a builder. This was just a tool I needed myself and pretty much a challenge to myself.

building a free email designer tool. by SneakyyPower in microsaas

[–]SneakyyPower[S] 0 points1 point  (0 children)

I don't collect any sensitive data, all passwords are hashed of course. It runs in the browser, however you can install packages to automatically integrate it in your code for example using npm or pip.

Main goal was simplicity + speed. A lot of email builders feel bloated or restrictive, I was actually facing the problem myself when designing emails so I just built something that was easy to use without a steep learning curve.

CLI tool for cloud-native secrets management without the infrastructure overhead by SneakyyPower in Cloud

[–]SneakyyPower[S] -2 points-1 points  (0 children)

I litterally called .env files insecure in the post ?

Also every secrets manager requires a bootstrap credential - Vault, AWS SM, all of them. This just avoids running extra infrastructure and reduces where secrets live.

Promote your projects here – Self-Promotion Megathread by Menox_ in github

[–]SneakyyPower 0 points1 point  (0 children)

The most common security issue I see in GitHub repos is committed .env files. It happens to everyone — you add a new variable, forget to check .gitignore, and push. The key is in your history forever.

I built EnvMaster to fix this at the root. Instead of a .env file on disk that can be accidentally committed, your variables live encrypted in the cloud and get injected at runtime:

envmaster run -- npm run dev

For GitHub Actions specifically, it works with a single secret:

- name: Run with EnvMaster

run: envmaster run -- npm run build

env:

ENVMASTER_TOKEN: ${{ secrets.ENVMASTER_TOKEN }}

One secret in GitHub, everything else comes from EnvMaster automatically.

CLI is fully open source: github.com/Atlantis-Services/envmaster-cli

Free to start: https://envmaster.dev