Website profile

@Thepracticaldev

A constructive and inclusive social network for software developers. With you every step of your journey.

  • 10,585articles · 30d
  • 35+ min agolatest article
  • Aug 15, 2026earliest in window
  • 97%with images
  • 292avg words
articles per day
Categories
  • Software Dev. 9,773
  • Science & Technology 9,644
  • Computers & Electronics 7,503
  • Business & Industrial 810
  • Internet & Telecom 774
  • Economy, Business & Finance 397
  • Finance 334
  • Arts, Culture, Entertainment & Media 239

Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > fuadhusnan_f44f3e13 > graphql-vs-grpc-choosing-your-modern-api-stack-34g

GraphQL vs. gRPC: Choosing Your Modern API Stack

1+ week, 1+ day ago   (178+ words) This guide breaks down what each technology actually does well, where the tradeoffs bite, and how to decide between them — or combine them — for a real production system. GraphQL is a query language for APIs, developed to let clients ask…...

DEV Community
dev.to > manoharij > swagger-and-openapi-the-docs-that-write-themselves-2hp4

Swagger and OpenAPI: The Docs That Write Themselves

1+ week, 3+ day ago   (737+ words) The key thing to understand: you don't hand-write this specification. It's generated automatically by reflecting over your existing controllers, DTOs, and attributes, which is exactly why it can't silently drift out of date the way a manually maintained wiki page…...

DEV Community
dev.to > omeiza_ahmed > rest-vs-soap-two-ways-apis-talk-but-not-the-same-way-5812

REST vs SOAP: Two Ways APIs Talk, but Not the Same Way

1+ week, 3+ day ago   (263+ words) When building an API, you've probably heard of REST and SOAP. Both allow applications to communicate with each other, but they take very different approaches. The simplest way to think about it is this: REST is flexible and lightweight. SOAP…...

DEV Community
dev.to > umairrafi > rest-vs-soap-vs-graphql-vs-grpc-interview-notes-for-backend-engineers-1eg1

REST vs SOAP vs GraphQL vs gRPC — Interview Notes for Backend Engineers

2+ week, 1+ day ago   (352+ words) I have shipped REST APIs for four years (Flask, AWS Lambda + API Gateway, FastAPI). This is the reference I use in design reviews and phone screens — focused on when to pick each style, not memorising definitions. Companion on Medium: REST…...

DEV Community
dev.to > usamadanbaiwa > have-you-ever-experienced-an-api-integration-where-the-production-environment-is-different-from-the-50oc

Have you ever experienced an API integration where the production environment is different from the test environment?

2+ week, 2+ day ago   (238+ words) As a Software Engineer, i have integrated a lot of third party APIs. Some were great some are okay and some were frustrating We were tasked to integrate a large, well established company API and the documentation is fine, we…...

DEV Community
dev.to > oskar_calvo_1615a9b3b293f > configurar-graphify-para-usarlo-con-claude-cli-k86

Configurar Graphify para usarlo con Claude cli

2+ week, 4+ day ago   (827+ words) (Contenido creado con IA) Guía paso a paso para instalar Graphify una vez en el entorno (máquina/WSL) y luego activarlo en cada proyecto. Basada en la instalación real hecha en drupal (ver sección 8 para las particularidades de ese proyecto)....

DEV Community
dev.to > stackhorizon > rest-vs-graphql-in-practice-17k7

REST vs GraphQL in Practice

2+ week, 5+ day ago   (349+ words) After building APIs with both REST and GraphQL, I've learned that the choice isn't about which is "better" but about what your consumers need. Here's a practical breakdown based on real projects. REST is still my default for most public…...

DEV Community
dev.to > mtahir27 > api-protocols-unpacked-a-decision-matrix-for-rest-graphql-grpc-in-high-throughput-systems-1pha

API Protocols Unpacked: A Decision Matrix for REST, GraphQL, & gRPC in High-Throughput Systems

2+ week, 5+ day ago   (298+ words) This article provides a rigorous, code-centric comparison of REST, GraphQL, and gRPC, specifically tailored for high-throughput environments. We aim to equip Senior Software Engineers and Architects with the insights needed to make informed decisions that optimize system efficiency and business…...

DEV Community
dev.to > achraf_benhamou > rpc-in-python-grpc-protocol-buffers-and-rest-vs-graphql-2klf

RPC in Python: gRPC, Protocol Buffers, and REST vs GraphQL

2+ week, 6+ day ago   (856+ words) When building backend systems, choosing the right communication protocol can have a significant impact on performance, maintainability, and scalability. REST is still the most common choice for public APIs, while GraphQL has become popular when clients need flexible data fetching....

DEV Community
dev.to > silvern47 > streamux-full-rfc-9113-in-go-with-c-abi-3hie

Streamux: Full RFC 9113 in Go with C abi

3+ week, 17+ hour ago   (119+ words) Spent the last few weeks building an HTTP/2 server from scratch in Go. Full RFC 9113 - framing, HPACK, stream state machine, flow control, TLS enforcement, 145/146 h2spec tests passing. The fun part was RFC 9218 stream priorities. Browsers already send priority: u=N on…...