Kartik Sangalkartik-devops.hashnode.dev·Aug 30, 2024Chapter - 1To initialize the Node JS project, run the following command in the terminal: $ npm init It will prompt you some questions (name, version, description, entry point, etc.). You can either answer them or press Enter to accept the defaults. At the end, ...Discuss·2 likesNode.js
Cloud Tunedcloudtuned.hashnode.dev·Apr 12, 2024Empowering File Processing with TransloaditEmpowering File Processing with Transloadit Transloadit is a versatile file processing service that enables developers to effortlessly handle file uploads, encoding, transformation, and storage in their web applications. With its intuitive API, power...Discusstransloadit
Sourabh Palandesourabhpalandedevops.hashnode.dev·Jan 28, 2024Navigating the Linux Landscape: Key Commands for Efficient File Handling and ControlLinux, being a powerful and versatile operating system, offers a multitude of commands for various tasks. In this article, we will explore some essential Linux commands that can help you manage and manipulate files and directories effectively. We wil...Discuss·1 like#90daysofdevops
Keshav Anejakeshavaneja.hashnode.dev·Jan 28, 2024Mastering File Handling in Node.js with MulterMulter is a popular body-parsing middleware that is used to handle the content type of "multipart/form-data". It makes handling files in Node.js very easy. As Multer is as middleware, it can be added to specific routes to handle file uploads. Without...Discuss·60 readsmulter
Md. Moinul Hossainmmoinulh.hashnode.dev·Jan 11, 2024PHP File HandlingFile handling is an important part of any web application. Here I discuss this topic by php. This article is based on PHP official Filesystem Functions. The first step you can try to manipulate files with PHP, you can use readfile() function. readfil...DiscussPHP
Namya Shahbigsmoke.hashnode.dev·Dec 31, 2023Python Interview Questions Part 2Python Modules and Packages What is a module in Python? Describe the differences between import and from...import statements in Python. How do you install and use third-party libraries in Python? Explain the purpose of a virtual environment in Py...Discussimport and from
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 28, 2023Bigger Example 2: Simple Text File Encryption and DecryptionQuestion: Design a program that can encrypt and decrypt a text file using a simple encryption algorithm. The user should be able to provide a key for encryption, and the program should output the encrypted text to a new file. Another option should al...DiscussC Programmingexample
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 28, 2023Basic File Handling Programming QuestionsHere are 10 C programming exercises that involve file handling: Word Count: Read a text file and count the number of words in it. Character Frequency: Read a text file and count the frequency of each character. Output the results to another file...Discuss·457 readsC ProgrammingExercise
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 24, 2023Cat in CBelow is a simple example of a C program that opens two files for reading, concatenates their contents, and writes the result to a third file. #include <stdio.h> #include <stdlib.h> int main() { // File pointers for input and output files FI...Discuss·32 readsC ProgrammingCat
Jyotiprakash Mishrablog.jyotiprakash.org·Dec 24, 2023Files as databases: writing and reading filesBelow is a simple C program that uses an array of structs to input details about students and then writes the structures to a file as a database. The program assumes that each student has a name, roll number, and marks. Certainly! If you want to writ...Discuss·26 readsC ProgrammingFile handling