SAFIA KHATOONsafiakhatoon.hashnode.dev·Nov 19, 2024How to Compress File Size: Simple Techniques to Reduce File Storage and Improve Website Speed 😊😍❤️File is 1.16GB Okay Let’s Compress this file or reduse the size Write a multistage dockerfile so that we can reduse the file size docker build -t small-java-app . see the image size 🤔🤔🤔🤔Discuss·29 readsDocker
Mukesh Kumarmkstech.hashnode.dev·Aug 8, 2024How to block the service logs to be written in /var/log or syslogssystemd is a system and service manager for Linux operating systems. It was designed to replace older init systems like System V and Linux Standard Base init. If your application is running as a systemd service, ensure that the service file does not ...DiscussLinux Usagehigh log size
Balaji Chennupatibalajich.hashnode.dev·Aug 5, 2024Understanding JavaScript's forEach, Filter, Map, and Reduce MethodsSo basically any js developer who has ever worked in js must have come across arrays, objects, maps, etc. These are all popular data structures used in js to store and retrieve data, Actually these are the most frequently used data structures in js a...Discuss·1 likeJavascript From Basics To AdvancedJavaScript
Ritochit Ghoshritochit.hashnode.dev·Jun 27, 2024Dissecting JavaScript IIIntroduction In the last part, we have discussed about the internal workings of JavaScript & some deeper concepts of JavaScript in a much simpler way, in case you haven't checked it yet. Here is the link to that, if you are a beginner trying to learn...Discuss·63 likes·83 readsDissecting JavaScriptReally Well Explained! All the examples are clear and easy to understand. Keep writing! 15
Tahmeer Pashatahmeerpasha.hashnode.dev·May 27, 2024Mastering JavaScript Array Methods: map, filter and reduceAs I prepare for frontend interviews, I've been diving deep into some of the most essential JavaScript array methods: map, filter, and reduce. These methods are invaluable for data manipulation and often come up in technical interviews. In this blog,...Discuss·3 likesmap
Rohit Dasublogs.rohitdasu.dev·May 13, 2024The most confusing array methodReduce() is not just another array method; it's more than that. Do you think I'm exaggerating? No, I'm not. Keep reading below to find out why. This array method requires two arguments: Callback function This callback function is invoked with the f...Discuss·17 likes·42 readsarray
Himanshu Chauhanhimanshuchauhan.hashnode.dev·Mar 9, 2024Day 23: Functional Programming Concepts (map, filter, reduce) in PythonToday, on the twenty-third day of our Python learning journey, we delve into essential concepts: map, filter, and reduce functions. Join us as we explore the significance and widespread use of these powerful tools. Map In Python, the map() function i...Discuss·1 likePython Python
Rahul Kumarrahul319.hashnode.dev·Mar 8, 2024Interview Questions related to reduce() in js.What is the purpose of the reduce() function in JavaScript? The reduce() function is used to reduce an array to a single value. It applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single ...Discuss·125 readsReduce
Anugya Guptaanugyawrites.hashnode.dev·Jan 27, 2024Map, Filter & Reduce Functionmap() The map() function applies a given function to each item of an iterable (like a list) and returns a map object (an iterator). Syntax: map(function, iterable) Example: # Doubling the numbers in a list numbers = [1, 2, 3, 4, 5] doubled = list(ma...Discuss·4 likes·29 readsPython
Md Hamimmdhamim.hashnode.dev·Dec 28, 2023Effortless API Documentation: Accelerating Development with FastAPI, Swagger, and ReDocFastAPI is a modern, fast web framework for building APIs with Python 3.7+ that automatically generates OpenAPI and JSON Schema documentation. While FastAPI simplifies API development, manually creating and updating API documentation can still be a t...Discuss·1 likeFastAPI