Snippets tagged “zip”
6 snippets use this tag.
- Docker image build with PHP zip extension shows "bundled libzip is deprecated" warningPHP
When building a Docker image with PHP and the zip extension, you may see the warning.
- Hidden features of PythonPython
There are many hidden features of Python, some of which are not well-known even among experienced Python programmers.
- How can I get the latest JRE / JDK as a zip file rather than EXE or MSI installer?Java
You can download the latest Java Runtime Environment (JRE) or Java Development Kit (JDK) as a zip file from the official website of Oracle (https://www.oracle.com/java/technologies/javase-downloads.html).
- How can I make a dictionary (dict) from separate lists of keys and values?Python
You can use the zip function to create a dictionary from separate lists of keys and values like this:
- How do I iterate through two lists in parallel?Python
You can use the zip() function to iterate through two lists in parallel.
- ZIP all files in directory and download generated .zipPHP
Here is an example of how you can use PHP to create a ZIP archive of all files in a directory and then prompt the user to download the generated ZIP file: