PSPUSARLA SIVAKALKIingosprint90.hashnode.dev·2d ago · 6 min readDay 18 - File Handling in Go (Part 3): bufio.Scanner vs bufio.Readerbufio.Scanner and bufio.Reader are not competitors. They solve different problems. Use Scanner when you're reading structured input (like lines or words). Use Reader when you need more control over ho00
PSPUSARLA SIVAKALKIingosprint90.hashnode.dev·2d ago · 5 min readDay 17 - File Handling in Go (Part 2): Reading FilesIn the previous article, we learned the different ways of reading files in Go and discussed when to use each approach. Now it's time to get our hands dirty and see how file reading actually works. We'00
RHrenan hafsarinlinux-notes.hashnode.dev·May 14 · 9 min readls Command in LinuxAfter you understand the cd command here, you also need to understand the ls command. It stands for list and is basically to show the list of contents in a directory. For further usage, it can be cust00
HBHimanshu Balaniinblog.himanshubalani.com·May 10 · 6 min readHow to Store, Serve, and Secure Files in Express.js In my last post, we looked at how to get files off a user’s device and onto your server using Multer. But simply catching a file is only half the battle. Once that file lands on your filesystem, you h00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 7 min readLinux File System HuntingWhen most beginners learn Linux, they start with commands like ls, cd, pwd, and mkdir. But Linux becomes truly interesting when you stop treating it like just an operating system and start treating it00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 5 min readHandling File Uploads in Express with MulterFile uploads are one of the most common features in modern web applications. Whether users are uploading profile pictures, resumes, documents, videos, or product images, the backend needs a reliable w00
MMehtabinmehtabblogs.hashnode.dev·May 10 · 5 min readHandling File Uploads in Express with MulterImagine building a social media app where users can upload profile pictures, or a job portal where candidates upload resumes. Sounds simple, right? But handling file uploads on the server is very diff00
SAShahbaz Ahmedinknowingnodejsexpress.hashnode.dev·May 10 · 6 min readStoring Uploaded Files and Serving Them in ExpressFile uploads are a common feature in modern web applications. Whether users are uploading profile pictures, PDFs, videos, or documents, the backend needs a safe and organized way to store and serve th00
PParamveerinunderstanding-web-dev.hashnode.dev·May 10 · 5 min readStoring Uploaded Files and Serving Them in ExpressOnce file uploads start working in an Express application the next important step is understanding where those uploaded files actually go and how users can access them later. Many developers initially00
TTejasintejasdevcodes.hashnode.dev·May 10 · 6 min readHandling File Uploads in Express with MulterFile uploads are one of the most common features in backend development. Almost every modern application allows users to upload something. For example: A social media app uploads profile pictures. An 00