You can use this loop in bash
$ for i in */; do zip -r "${i%/}.zip" "$i"; done
Parallel execution
$ for i in */; do zip -0 -r "${i%/}.zip" "$i" & done; wait
| tilda_config_version="1.5.2" | |
| command="" | |
| font="mplus Nerd Font Mono 9" | |
| key="F12" | |
| addtab_key="<Shift><Control>t" | |
| fullscreen_key="F11" | |
| toggle_transparency_key="F12" | |
| toggle_searchbar_key="<Shift><Control>f" | |
| closetab_key="<Shift><Control>w" | |
| nexttab_key="<Control>Page_Down" |
| #include <iostream> | |
| #include <conio.h> | |
| using namespace std; | |
| int main() | |
| { | |
| string tmp; | |
| int i, k, j, jumlah, pilihan; |
| int min, max; | |
| min=jam[0]; | |
| max=jam[0]; | |
| for(int i=0;i<2;i++) | |
| { | |
| if(min>jam[i]) | |
| { | |
| min=jam[i]; | |
| } | |
| else if(max<jam[i]) |
| #!/bin/bash | |
| curl -O https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz | |
| tar -xvzf ioncube_loaders_lin_x86-64.tar.gz | |
| rm ioncube_loaders_lin_x86-64.tar.gz | |
| cd ioncube | |
| php_ext_dir="$(command php -i | grep extension_dir 2>'/dev/null' \ | |
| | command head -n 1 \ | |
| | command cut --characters=31-38)" | |
| php_version="$(command php --version 2>'/dev/null' \ | |
| | command head -n 1 \ |
| async function automateProcess() { | |
| for (let i = 0; i < 10000; i++) { | |
| try { | |
| console.log(`Iteration: ${i + 1}`); | |
| const diamondsText = document.querySelector('div[style*="color: rgb(27, 67, 86);"][style*="font-size: 1rem;"][style*="margin-top: 0.5rem;"][style*="text-align: center;"]'); | |
| if (!diamondsText) { | |
| console.error('Element with specified selector not found.'); | |
| continue; |
| function simulateKeyPress(keyCode, eventType) { | |
| var eventObj = document.createEventObject | |
| ? document.createEventObject() | |
| : document.createEvent("Events"); | |
| if (eventObj.initEvent) { | |
| eventObj.initEvent(eventType, true, true); | |
| } | |
| eventObj.keyCode = keyCode; |
Join the Aztec Discord community and earn roles by participating in their network operations.
Discord Invite: https://discord.com/invite/aztec
| #!/bin/bash | |
| install_docker() { | |
| sudo adduser --disabled-password --gecos "" codeusers | |
| sudo cat >/home/codeusers/docker-compose.yml <<EOF | |
| services: | |
| code-server: | |
| image: lscr.io/linuxserver/code-server:latest | |
| container_name: code-\${NAMA_PELANGGAN} | |
| environment: |
1. Open the main video/post in DevTools
Right-click on the Facebook video page and select Inspect, or press Ctrl+Shift+I (Cmd+Option+I on Mac) to open DevTools.
2. Enable the Device Toolbar
Click the π± mobile device icon in the top-left corner of DevTools to enable mobile emulation mode.