Patel Shailgithubdetail.hashnode.dev·Jan 13, 2025Decode Tech Jargons - Simplifying the Language of TechnologyIn the fast-paced world of technology, we often encounter a whirlwind of terms and phrases that sound complex and intimidating. These technical words, often referred to as tech jargon, are like a secret language that tech professionals use to communi...1 like·38 reads#techjargons
Tushar Vaidtechjargonswithease.hashnode.dev·Jan 12, 2025Simplifying Tech Jargon Through AnalogiesIntroduction Technology often feels like a foreign language, filled with complex terms and concepts that can be overwhelming. But just like any language, it can be easier to understand when related to things we already know. Analogies serve as bridge...http
Rana Vikram Sinharanavikramsinha-http-explained-and-web-jargon.hashnode.dev·Jan 12, 2025Understand HTTP and Web Jargon'sWhat is HTTP ? Before we get started with HTTP, let us imagine: You wish to purchase some candy from a store as a consumer. The steps involved are as follows: When you enter the store as a consumer, you inform the owner of your needs. The store own...101 readsChaiCode
Jaydeep Duttaprotocol-and-communication-model.hashnode.dev·Dec 15, 2024gRPC vs HTTP1 vs HTTP/2protocol and communication model 1. Protocol and Communication Model gRPC: gRPC is a Remote Procedure Call (RPC) framework, meaning that it allows you to define services and methods that can be called remotely from client to server. It uses Protoc...gRPC
ASHISH MULEYgrpcprotocol.hashnode.dev·Nov 8, 2024Understanding gRPC: A Modern Communication Protocol for MicroservicesIntroduction Under this development unfolding context that currently centers on distributed systems, cloud-native apps, and microservices, the key decision of choosing a specific protocol on which data shall be transferred from one service to another...478 likes·347 readsgRPC
Alvin Leealvinslee.hashnode.dev·Oct 10, 2024Custom domains for HTTP/2 on Heroku - so easy.Several months ago, Heroku announced HTTP/2 support from browser to router. This is pretty awesome, as it means our Heroku applications can now reap the benefits of multiplexing and stream prioritization. It looks like Heroku’s roadmap will eventuall...Tutorial
BestWeb VenturesforBestWeb Ventures's Blogblog.bestwebventures.in·Oct 9, 2024Mastering Thruster for Ruby on Rails: A Deep Dive for BeginnersDeploying Ruby on Rails applications can be challenging for new developers, especially when it comes to managing server configurations, handling security with TLS certificates, and optimizing performance. Typically, setting up a production-ready envi...366 readsRails
Thomas Burkhartblog.burkharts.net·Jul 3, 2024FeaturedEverything You Always Wanted to Know About HttpClientsIn case you are wondering about the cover of this post, I had to share with you the incredible location I was writing this post When starting out writing apps with Flutter or Dart, you probably, like me, just followed the examples on how to make HTT...42 likes·3.6K readsFlutter
v likeblog.iread.fun·Jan 19, 2024Node.js 从列表中查找最快的 HTTP/2 DoH 服务器对 DoH(DNS over HTTPS)来说 HTTP/2 尤其有效,因为 HTTP/2 支持多路复用,允许在同一连接上发送多个 DNS 查询,而无需等待之前的响应。这可以大大提高 DNS 解析的性能,尤其是在同时进行多个查询时。 网络上有数百个公开可用的 DoH 服务器,我们可以使用 Node.js HTTP/2 模块来查找在一定阈值(如 1 秒)内响应最快的服务器。 首先,让我们定义一个函数 check_url,它将返回一个 promise,并在 HTTP/2 请求成功时转为 resolv...http2
v likeblog.iread.fun·Jan 19, 2024Node.js Find Fastest HTTP/2 Servers from DoH ListHTTP/2 is particularly beneficial for DoH(DNS over HTTPS) because it allows multiple DNS queries to be sent over the same connection without waiting for previous responses, thanks to its support for multiplexing. This can significantly improve the pe...Node.js