Ansh Balanlinuxfordevops.hashnode.dev·14 hours agoPart 9: Connecting MySQL to Linux and Useful Linux CommandsIn this part, we will discuss how to connect MySQL to Linux, explore some essential Linux commands like systemctl, zip, ps, and kill, and create a shell script to automate file deletion for files older than 15 days. Using systemctl Command The syste...Devops
Alvin Crespoalvincrespo.hashnode.dev·Oct 18, 2024Enhancing a Scalable Export in Ruby on Rails: Lessons LearnedIn my last blog post, I walked you through the implementation of a scalable export system in a Ruby on Rails application. Since then, I’ve encountered a few challenges, particularly around concurrency, file locking, and ensuring that data exports are...Ruby on Rails
Shrey Dikshantshreysblog.hashnode.dev·Aug 30, 2024Exploring Python’s zip() Function: Efficiently Pairing Iterables 🔗🐍Introduction Python is packed with useful built-in functions that simplify coding tasks, and one of these is the zip() function. zip() allows you to take two or more iterables—like lists, tuples, or strings—and combine them into a single iterable of ...zip
Ridwan Tajudeenridwantajudeent.hashnode.dev·Aug 25, 2024How to import font in Zip format to your React project.It’s funny how we can be ignorant of little things even after many years of experience in our respective fields. A few days ago, I was working on a project, and my PM sent me a font to be used for the project. The font was in a ZIP folder. I was dumb...React
Tarun Sharmatapstechie.hashnode.dev·Aug 25, 2024Mastering Python’s zip() Function: A Powerful Tool for Working with Multiple ListsPython's zip() function is one of those little gems that can make your code cleaner, more efficient, and more readable. Whether you're working with multiple lists, tuples, or any other iterables, zip() can help you iterate over them in parallel, comb...python-zip
Cloud Tunedcloudtuned.hashnode.dev·Jul 29, 2024Cheat Sheet #day63 - zipzip Command Cheatsheet The zip command is used to compress files into a ZIP archive. It is a popular utility for archiving and compressing files in Unix-like systems. Here’s a quick reference guide: Basic Syntax zip [OPTION]... ZIP_FILE FILE... Comm...Cheat Sheetszip
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Jun 5, 2024No More Confusion: How to Perfectly Create Zip Files for Lambda Layers — Every Time!Introduction :- Remember the last time you tried to share a bunch of photos with a friend? Most likely, you zipped them into one file, right? Creating a zip file for AWS Lambda layers is somewhat similar but plays a crucial role in managing and deplo...aws lambda
Nirmal Pandeybitsnotion.com·Apr 3, 2024List comprehension, zip(), & enumerate( )List comprehension One of the most useful tools in Python is list comprehension. It is a concise and efficient way to create a new list based on the values in an existing iterable object. List comprehensions take the following form: my_list = [expres...18 likesPython Tutorialsenumerate
Samuel B. Olugunnasamuelbolugee.hashnode.dev·Jan 16, 2024What "zip" should you use?When coding in Python, we may sometimes have to work with iterables, which are just objects you can "iterate" over (or pass over by counting each item). These iterables serve as "containers", so to speak, which allows them to hold the data you want t...1 likePython
Davide Bellonecode4it.hashnode.dev·Dec 11, 2023How to extract, create, and navigate Zip Files in C#When working with local files, you might need to open, create, or update Zip files. In this article, we will learn how to work with Zip files in C#. We will learn how to perform basic operations such as opening, extracting, and creating a Zip file. T...C#