We just added dedicated guides for France in Boring Money 🇫🇷
After Switzerland, we're expanding with country-specific content to help you make better financial decisions.
Posts by Romain Lanz
Tracking your money is great. Understanding how it works is better.
We just shipped a Learn section for Boring Money. 13 free guides on personal finance fundamentals. Savings rate, compound interest, ETFs, and more.
Plus dedicated guides for Swiss residents (pension pillars, 3a, investing in CH).
Boring Money is coming out of beta soon.
This is your last chance to try it without a credit card.
boring-money.app
Boring Money is coming out of beta soon.
This is your last chance to try it without a credit card.
boring-money.app
Every year, JavaScript developers report the same problems.
Not because tools are missing
But because nothing works together
AdonisJS is built around one idea: cohesion over composition.
đź”— adonisjs.com/we-hear-you
DOOM.css is getting somewhere. Gameplay is pretty much done completely in JavaScript, but the whole rendering is 100% CSS. This map is 768 div's with 3D transforms.
Added a nice spectator view as well which is literally just adding a couple of CSS custom properties override for the rendering.
AdonisJS comes with opinions, but your stack is still your choice.
Want to use MikroORM instead of Lucid?
Thanks to MikroORM, there's now an official guide on how to integrate it with AdonisJS 👇
mikro-orm.io/docs/usage-w...
Reddit post with title: "Do you also end up rewriting the same error handling in every Node.js project?"
I love reading posts like this on Reddit.
To answer the question… yes, we do.
That's exactly why we built @adonisjs.com 10 years ago. So you stop rewriting the same things and stitching together 30 different libraries.
An experimental release of the AdonisJS queues package is now available.
Features include:
- multi-driver support
- typed job classes
- delayed jobs
- a job scheduler
- queue fakes for testing
- and more...
We're eager to hear your feedback.
docs.adonisjs.com/guides/diggi...
AdonisJS v7 is officially out today!
A major milestone after a long development cycle, and we couldn't be more excited about how it turned out.
What's new → adonisjs.com/blog/v7
Upgrade guide → docs.adonisjs.com/v6-to-v7
On se fait un petit live ce soir ?! Ca fait longtemps đź‘€
Si vous voulez être un meilleur développeur qu'hier, ne vous arrêtez pas au "comment".
Comprenez pourquoi vous faites les choses et comment elles fonctionnent.
C'est encore plus vrai à l'ère des IA. Écrire moins de code ne dispense pas de le comprendre. 🤓
We've released security fixes addressing two vulnerabilities in AdonisJS multipart body parsing (Prototype Pollution & DoS).
Update now:
- v6 users → adonisjs/core 6.20.0
- v7 users → adonisjs/core 7.0.0-next.28
Comments asking for a batteries included frameworks like RoR, Django or Laravel
"We need more batteries-included backend frameworks like Rails, Laravel or Django."
That's literally what AdonisJS has been doing for years.
Back-end Frameworks Pain Points as per State of JS Survey. Main one are Static typing, Browser support and Performance
State of JS Survey is out.
Interesting to see that many backend framework pain points people mention are things already addressed by @adonisjs.com.
If you haven't tried it yet, now might be a good time đź‘€
IA Assistant proposing to create a new goal for my new laptop
Sneak peek of what's coming next in BoringMoney đź‘€
An AI agent that understands you and helps you manage your budget:
"I want a new laptop, it costs 3000. can you create a goal?"
More soon.
IA Assistant proposing to create a new goal for my new laptop
Sneak peek of what's coming next in BoringMoney đź‘€
An AI agent that understands you and helps you manage your budget:
"I want a new laptop, it costs 3000. can you create a goal?"
More soon.
Changelog of boring-money foundable at https://boring-money.app/changelog
BoringMoney is officially moving to Open Beta 🎉
What's new:
- Privacy mode for demos & screen sharing
- New dashboard charts (categories & month-over-month)
- Broker transfers tracking
- Daily / weekly / monthly time scale
👉 Registration is now open to everyone
boring-money.app
Le jeu wordle
Il est très possible qu'au prochain stream, un Wordle apparaisse sur l’écran d'attente… et peut-être d'autres mini-jeux 👀🤪
boringnode/queue v0.3.0 is out! 🚀
This release adds bulk dispatch with dispatchMany(), job grouping, and full job retention/status tracking.
⚠️ Breaking: New storage layout for Redis & Knex adapters requires migration.
We've published a security fix for a Mass Assignment vulnerability affecting Lucid in AdonisJS (CVE-2026-22814).
Update now:
- v6 users → adonisjs/lucid 21.8.2
- v7 users → adonisjs/lucid 22.0.0-next.6
github.com/adonisjs/luc...
Latest changelog of Boring Money showing the new feature to add team member.
Team management is here! 🎉
You can now invite your partner to share your Boring Money account. The foundations are set.
Next up: payment system to exit beta and open the doors to everyone. ✌️
Clairement et c'est prévu !
export + import, avec un import assisté par l’IA pour comprendre le format, catégoriser automatiquement les dépenses et détecter les récurrentes
Latest changelog of Boring Money showing the new feature to add team member.
Team management is here! 🎉
You can now invite your partner to share your Boring Money account. The foundations are set.
Next up: payment system to exit beta and open the doors to everyone. ✌️
class ResizeImageJob extends Job<ResizeImagePayload> { constructor(private storage: StorageService) { super() } async execute() { const image = await this.storage.get(this.payload.path) const resized = await image.resize(this.payload.width) await this.storage.put(this.payload.outputPath, resized) } }
boringnode/queue v0.2.0 is out! 🚀
This release reworks the Job architecture to be DI-first.
The constructor is now fully reserved for your dependencies, payload and context are handled internally.
Job naming also defaults to the class name now.