Kceekcee.hashnode.dev·9 hours agoPrevent File Duplication with MD5 ChecksumsUsers uploading duplicate files can account for 5-30% of the data stored by your service. This can cause significant resource mismanagement in large applications that store gigabytes or terabytes of data. Storing duplicate data would also lead to unn...File Upload
Saurabh Guptacodecraft-by-saurabh.hashnode.dev·Jan 12, 2025Comprehensive Guide to Building Multipart Forms in React for BeginnersIntroduction Handling multipart forms can be challenging, especially when managing file uploads alongside text data. This guide simplifies the process using React, React Hook Form, and TypeScript, focusing on frontend implementation with step-by-step...53 readsMultipart form
Arka Infotecharkainfotech.hashnode.dev·Jan 1, 2025Integrating Cloud Storage in Your MERN Stack AppIntroduction Cloud storage solutions are a crucial part of modern web applications. From user profile pictures to document uploads, integrating cloud storage into your MERN stack application allows users to store and access files remotely. Cloud stor...GoogleCloudStorage
Sushil Kumarlet-us-node.hashnode.dev·Dec 24, 2024Node.js FS Module : Files, Directories, StreamsHey everyone, In this article, we’re going to dive deep into the fs module in Node.js and explore its capabilities in detail. The fs module, short for File System, is a built-in module in Node.js that provides a range of functionalities to work with ...10 likesNode.js
Ramu Narasingathinkthroo.hashnode.dev·Dec 17, 2024Is it possible to upload a file to a database in Next.js?In this article, we analyse how Documenso stores an uploaded file into its database by reviewing its source code. Where is this code that does this? You will find the below code snippet in a file named upload/put-file.ts. const putFileInDatabase = a...database
Ramu Narasingathinkthroo.hashnode.dev·Dec 12, 2024How Documenso, an open-source Docusign alternative, handles pdf file upload in Next.js?In this article, we analyse how Documenso, an open-source Docusign alternative, handles pdf file upload in Next.js app router. But first, where is the code that takes care of upload? To find that out, we first need to know where in the user interface...Documenso
Dhaval Singhwww.dsdev.in·Oct 23, 2024Murphy's Law: Startup VersionBeing a founding engineer has been a wild ride. I have learnt a lot over the last year and a lot of generic advice/quotes seem to make sense, one way or the other. But one stands out, ie: Murphy’s Law. According to wikipedia: Though similar statement...163 readsStartups
Shubham Khanshubhamkhan.hashnode.dev·Oct 23, 2024How to Safely Remove a File from Git History: A Beginner's GuideWhen working with Git, it's not uncommon to accidentally commit sensitive information or files you don't want in your repository's history. This guide will walk you through the steps to remove a file from Git history and ensure it stays out of your p...27 readsGit
Alessandrofailing2build.hashnode.dev·Oct 14, 2024How to Upload Files with Python Tornado Framework: Step-by-Step TutorialOverview In this quick tutorial we will be working towards developing a file upload functionality for a Tornado webserver with Python. We will do the following: (1) setup the folder structure, create a virtual environment, add the list of necessary l...Python
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Sep 11, 2024How to Handle File Uploads in JavaScript: A Detailed Guide with ExamplesFile uploads are a crucial part of many web applications, whether it's for user profiles, documents, or images. With JavaScript, you can create a seamless and efficient file upload experience for your users. This comprehensive guide will take you thr...597 readsJavaScript