Home New Trending Search
About Privacy Terms
#
#backenddev
Posts tagged #backenddev on Bluesky
Post image

Quarkus 3.31 & 3.32 shipped more than bug fixes.

They removed reflection from Jackson by default.
They added AOT JAR packaging.
They improved OIDC for enterprise compliance.
They simplified TLS in Kubernetes.

Here’s what you probably missed
buff.ly/fYF5d6r

#Java #Quarkus #CloudNative #BackendDev

5 2 0 0
Video thumbnail

A subtle networking behavior many devs miss:

If you bind 192.168.1.10:8080 AND 0.0.0.0:8080 (same port) on the same host, the specific binding takes precedence.

The wildcard doesn't override—it fills the gaps.
The full tuple is the rule, not just the port.

#Networking #BackendDev #TCP

0 0 0 0
Post image

Reorgs break org charts.
Recursive SQL doesn’t care.

I built an interactive org chart with:
• Java + Quarkus
• PostgreSQL recursive CTEs
• Hibernate Panache
• D3.js

It survives restructures. And it’s fully copy-pasteable.

buff.ly/CYMf4Hl

#Java #Quarkus #Postgres #D3js #BackendDev

5 2 0 0
Post image

🚀 Learned real JWT auth flow today:
• Access Token → stored in memory
• Refresh Token → stored in HTTP-Only cookie 🔐
• Avoid localStorage for JWT (XSS risk)
• Use Bearer headers to access protected APIs
• Refresh token auto-generates new access token when expired
#NodeJS #JWT #BackendDev

0 0 0 0
Post image

Most Java input validation assumes ASCII-era rules.
Unicode breaks that assumption.

A deep dive into Unicode security:
• invisible characters
• homograph attacks
• BiDi overrides
• production-grade defenses in Quarkus

buff.ly/4sTgaBx

#Java #Quarkus #Unicode #SecurityEngineering #BackendDev

3 2 0 0
Preview
REST API Caching Strategies Every Developer Should Know A practical breakdown of REST API caching strategies that improve performance and cut database load.

A practical breakdown of REST API caching strategies that improve performance and cut database load.

This guide covers everything you need to implement effective API caching.

#RESTAPI #BackendDev #SystemDesign

pixicstudio.medium.com/rest-api-cac...

1 0 0 0
Preview
Reading SQL Execution Plans: A Beginner's Guide (Why Your Query is Slow) Learn how to read an Execution Plan, spot the dreaded "Table Scan," and optimize your database indexing strategy.

"It works on my local" is a lie. 🛑 Check your SQL Execution Plans before production breaks. 💾🔍

📃 scriptdatainsights.blogspot.com/2026/01/sql-...
🎞 youtu.be/aeoKEaDeIy4
🛒 scriptdatainsights.gumroad.com/l/january-sk...

#SQL #Database #PostgreSQL #MySQL #SoftwareEngineering #BackendDev #CodingTips

0 0 0 0

There’s a version of backend dev that feels dramatically calmer than what most of us are used to.

We’re very close to sharing it.

#backenddev #devexperience #software #comingsoon #engineering

0 0 0 0

Shipping is easier when your mental model fits in your head.

Containers, sidecars, cold starts, env glue… that stuff adds cognitive tax fast.

#developerexperience #infra #backenddev #simplicity #engineering

0 0 0 0

Overview: The HN discussion dives into migrating Rails background jobs from Redis to SolidQueue. It explores simplifying infra by using database-backed queues vs. dedicated systems. Key trade-off: operational simplicity vs. specialized performance. #BackendDev 1/6

0 0 1 0

Most code reviews fail because of process design, not people. In backend work, the real issues are often architectural: unclear ownership, missing context, or reviews that treat distributed systems like monoliths. What’s the hardest part of your team’s review process? #BackendDev #CodeReview

0 0 1 0
Preview
The Weekly Edge: Knowledge Graphs at Netflix & Bloomberg, Graphs on Postgres, & Make Your Music SPARQL [9 January 2026] Discover what’s new this week in graph tech, including a demo of graphs on PostgreSQL, a JanusGraph walkthrough, and interviews with Bloomberg and Netflix.

This ~week in graph tech news:
- #knowledgegraphs at @netflix.com
- Graphs on #Postgres
- KGs at @bloomberg.com
- Setting up #JanusGraph on #Azure
- Using #SPARQL to discover new music

All this and more in this edition of the Weekly Edge: gdotv.com/blog/weekly-...

#graphdatabases #RDF #backenddev

2 1 0 0

Monthly Dev Update(nov/2025)

Built:

Airbnb backend clone

Django travel app

Database schemas from scratch

Tech Wins:

Async database queries

Python decorators mastery

Context managers for DB ops

Lesson Learned:
Design > Code first.
Docs save future you.

#Python #BackendDev #Database #ALX

0 0 0 0

“Serverless” should feel like frontend bundling:
write code → build → deploy → done.

#serverless #devexperience #backenddev #shipping #simplicity

0 0 0 0

Cold starts are a tax.

Native binaries don’t collect it.

#performance #serverless #native #backenddev #taxrevolt

1 0 0 0
Post image Post image

No more workarounds! Rails 8.1 brings update_all with joins support to PostgreSQL & SQLite, matching MySQL's long-standing capability. #Rails #RubyOnRails #PostgreSQL #SQLite #Ruby #Programming #BackendDev
Read More blog.saeloun.com/2026/01/02/r...

1 0 0 0
Post image

Looking for a fun December project?
I built a Secret Santa API with Quarkus and turned it into a full tutorial.

REST API → Wishlists → Pairings → Email Notifications → PostgreSQL via Dev Services.

A festive way to learn modern Quarkus patterns.
buff.ly/Xi2x8Vj

#Java #Quarkus #BackendDev #APIs

5 1 0 0

Gleam is seen as a strong alternative to Elixir, Elm, or JavaScript, especially for backend development and UI with the Lustre library. Its compatibility with the Erlang ecosystem makes it ideal for concurrent, fault-tolerant systems. #BackendDev 6/6

1 0 0 0
Preview
Dynamic Drupal Menu Items with Menu Derivatives: A Guide by Kevin Gautreau In his latest blog post, Kevin Gautreau demonstrates how Drupal developers can dynamically generate menu items using menu derivatives. By building a custom deriver class, he shows how to automatically list nodes of a specific content type inside a su...

🧭 New tutorial by Kevin Gautreau shows how to build dynamic menus in Drupal using derivatives.

Auto-generate links for nodes, members, or categories—clean, scalable, and config-free.
🔗 https://bit.ly/4pjp0Sg

#Drupal #BackendDev #MenuDerivatives #ContentModeling

1 0 0 0
Python with Django for Backend Development: Best Computer Classes

Python with Django for Backend Development: Best Computer Classes

Python with Django for Backend Development at TCCI! Get the Best Computer Classes to master Django ORM & build secure, scalable web apps. Enroll now!

👉tccicomputercoaching.wordpress.com/2025/12/04/python-django...

#PythonDjango #BackendDev #TCCI

0 0 0 0

While powerful, Pocketbase is best suited for applications with simpler data structures. Users noted potential limitations with complex data relationships due to SQLite, suggesting careful consideration for intricate models. #BackendDev 3/6

0 0 1 0
Post image

Every productive day I’ve had starts with two things: a good cup of coffee and Python doing the heavy lifting. It’s the only combo that consistently makes sense in a world that doesn’t.

#DevHumor #ProgrammerLife #SoftwareEngineering #BackendDev

1 0 0 0
Post image

🚀 #PHP 8.5 released with major improvements: new URI extension, Pipe operator |>, property modification during cloning, NoDiscard attribute & performance boosts. Built for modern development workflows #WebDev #BackendDev www.php.net/releases/8....

8 2 0 0
Post image Post image Post image Post image

Ever wondered what makes our digital world tick? It's all about the code! From crafting stunning websites to powering intricate systems, programming languages are the unsung heroes. Explore the art of creation! 🚀
#CodeIsArt #DeveloperLife #TechTrends #WebDev #BackendDev

2 0 0 0
Preview
"Hello Alice!" - A Production-Ready scaffold in NPL Many developers have experienced the frustration of starting a new project with a basic “Hello World” example, only to find themselves overwhelmed by the complexities of real-world applications. From ...

Finally a "Hello World" that's not entirely throwaway code. Yes, you will change it a lot, yet a huge value is there already and will stay in your MVP.

NPL's : your first line of code is production-ready with auth, persistence, and audit logging built into the language itself.

#NPL #BackendDev

1 0 0 0
Post image

Tark Labs routine #72: Joi (joi.dev) allows checking the inner structure of the objects. Nice! 😍 #reactjs #backenddev #joidev #apidev #expressjs #node #tarklabs #airontark

3 0 0 0
Preview
Learning Rust — Part 1 — Ownership Basics (and our first Rust app) Let’s learn Rust — the easy way!

medium.com/@simon.swart...

Started learning Rust - will be posting updates on Medium. If you aren't a medium member, and want to read the article, just send me a message and I'll get it to you.

#Rust #RustLang #LearnRust #BorrowChecker #CodeOwnership #MemorySafety #SystemsProgramming #BackendDev

3 0 0 0
Preview
PHP Developer Job Description - Responsibilities & Skills Explore the PHP Developer job description. Discover responsibilities, required skills, qualifications and salary insights for PHP Developer role.

Looking for someone who knows PHP, databases and server logic?

Our PHP Developer Job Description template covers what you need: frameworks, integrations, troubleshooting and more.

🔗 vettio.com/job-descript...

#PHPDeveloper #BackEndDev #Hiring #JobPosting #Vettio

2 0 0 0
Preview
Freelance Backend Developer: How To Land Big Contracts Fast Land high-paying projects faster as a freelance backend developer with proven strategies to attract premium clients, pitch smarter, and grow sustainably.

Ever thought of working as a freelance backend developer? This guide explains the skills, tools, and mindset needed to succeed, plus how to attract clients and build sustainable income in tech. thejustifiable.com/freelance-ba...
#backenddev #freelancingtips #techcareers #thejustifiable

1 0 0 0