Ritwik Mathritwikmath.hashnode.dev·Oct 16, 2023Decoding Node.js Buffers: An In-Depth Exploration of Binary Data HandlingTo understand buffers, it's important to get the hang of binary data. Unlike our everyday decimal system with ten digits (0-9), computers operate using a binary system, which only has two digits: 1 and 0. This binary system is at the core of all comp...DiscussNode.js
Bishal Chettribshal.hashnode.dev·Sep 13, 2023Node.js Buffers Explained: Simple Guide with ExamplesWhat is a Buffer? In simple terms, a Buffer is a temporary storage spot for a chunk of data that is being transferred from one place to another. In Node.js, the Buffer class provides a way to work with different kinds of binary data directly without ...Discuss·11 likes·39 readsNode.js
bitcodrbitcodr.dev·Sep 2, 2023A Comprehensive Guide to Using Buffers in Go Programming LanguageIntroduction: Buffers play a crucial role in optimizing I/O operations and enhancing performance in software development. In this blog post, we will explore the concept of buffers in the context of Go programming language. We will delve into the fund...Discuss·1 like·119 readsGo Language
Melvin C Varghese (melvincv)blog.melvincv.com·Jul 25, 2023Buffers and Timeouts in NGINXIntroduction In the world of web servers and content delivery, Nginx has emerged as one of the most popular and efficient solutions. One of the key features that make Nginx stand out is its powerful buffering capabilities. In this article, we will ex...DiscussConfiguring NGINXnginx
92_prajak senblogoverflow.hashnode.dev·Jul 18, 2023Zero-Copy I/O for Streaming Sockets in C++: Efficient Data Transfer with Pre-Allocated BuffersIn network programming, efficient data transfer is crucial for achieving high-performance applications. One approach to optimizing data transfer is through zero-copy I/O, which eliminates unnecessary memory copies during input and output operations. ...Discuss·10 likes·102 readsZero copy networking
Jorge Abadjorgeabad.hashnode.dev·Jun 15, 2023Clase Buffer en Node.js15.4 CLASE BUFFER EN NODE.JS Actualmente, la clase “Buffer” de node.js implementa un API “Uint8Array” (“TypedArray” ES6) de una manera más optimizada y adecuada para los casos de uso Node.js. La clase “Buffer” es global por lo que es poco probable qu...Discuss·77 readsTutorial de Node.js y JavaScriptbuffer
Jorge Abadjorgeabad.hashnode.dev·Jun 14, 2023Introducción a Buffer15.1 Datos binarios. Para poder tratar los flujos TCP, leer y escribir en el sistema de archivos, es necesario tratar con flujos de datos que son puramente binarios. Los datos, como regla general, se presentan internamente como octetos, (8 bits). Un...Discuss·3 likes·42 readsTutorial de Node.js y JavaScriptbuffer
Miguel Acevedoblog.mimixtech.com·Jun 10, 2023PYTHONDONTWRITEBYTECODE and PYTHONUNBUFFERED ExplainedIntroduction Have you ever come across the enigmatic environment variables PYTHONDONTWRITEBYTECODE and PYTHONUNBUFFERED in Python Dockerfiles and wondered about their significance? These two variables frequently surface in the Docker ecosystem and we...Discuss·135 readsDocker
David Okekefrontendokeke.hashnode.dev·Apr 3, 2023Handling Binary Data in JavaScriptDue to the rise in popularity of Artificial intelligence, concerns rightly so, have risen about the intelligence of machines and even the possibilities of its sentience. Although it may seem so, we all know one thing for sure: Computers need electric...Discuss·69 readsJavaScript
Manish Kumarmanishmk.hashnode.dev·Mar 19, 2023Buffer vs Streams: A Battle for the AgesWelcome, dear readers, to the ultimate showdown between two of the most important concepts in computer programming: buffers and streams. In one corner, we have the humble buffer, a fixed-sized block of memory used to store data. In the other corner, ...Discuss·41 readsbuffer