salgotraja.bsky.social
@salgotraja.bsky.social
Been seeing a lot of people complain about NextAuth being tricky. Gave it a shot recently, and honestly, it's one of the easiest integrations I've done. Quick setup, works like a charm. What I'm missing here? 🤔
November 16, 2024 at 9:55 AM
Reposted
#Java peers on #Bluesky 🦋

Some resources to bookmark:
1. dev.java (official Java portal)
2. inside.java (voices of the Java dev team)
3. inside.java/newsletter (Java newsletter)
4. dev.java/duke/corner/ (Java Community Podcast)
5. youtube.com/java (Official Java YT channel)
November 14, 2024 at 8:59 PM
If you are handling time-series data, a BRIN index is your best friend for massive datasets.

CREATE INDEX idx_logs_brin ON logs USING BRIN(timestamp);

Best for range queries like WHERE timestamp >= '2024-11-16'. Cheap to create, lightweight and fast! #PostgresTips #PostgreSQL
November 16, 2024 at 9:40 AM
Indexes in Postgres are like secret weapons. B-Tree, GIN, BRIN—know when to use which, and you’ll turn query execution time from seconds to milliseconds. #PostgresTips #PostgreSQL
November 16, 2024 at 9:39 AM