Sometimes you just need more layout flexibility.
You now have full freedom in Snipcast.
This opens the door to many great usecases, especially long form coding tutorials.
We are excited to announce the arrival of our most requested adapter! 🚀
OpenRouter adapter lands in TanStack AI with over 300+ models for you to play with! 🔥
Try it out with the latest version today!
#Laravel Tip
Did you know.... tap() = Tweak and Return 🪄
Yes, Laravel's tap() lets you modify an object and return it — perfect for clean, chainable code.
I just bought @SnipCastDev to try to make an announcement post for something that drops soon.
It is amazing!!!
If you want to create code snippets it's everything you're looking for and more!
You should NEVER use var.
Instead, use let or const.
Why?
var is function-scoped: variables can 'leak' outside the block and introduce bugs.
let is block-scoped: i.e. no accidental overrides, less bugs and better code.