Join the Aztec Discord community and earn roles by participating in their network operations.
Discord Invite: https://discord.com/invite/aztec
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: |
function simulateKeyPress(keyCode, eventType) { | |
var eventObj = document.createEventObject | |
? document.createEventObject() | |
: document.createEvent("Events"); | |
if (eventObj.initEvent) { | |
eventObj.initEvent(eventType, true, true); | |
} | |
eventObj.keyCode = keyCode; |
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; |
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]) |
#include <iostream> | |
#include <conio.h> | |
using namespace std; | |
int main() | |
{ | |
string tmp; | |
int i, k, j, jumlah, pilihan; |
To convert audio mp3 to MP4 by ffmpeg, use the following command
ffmpeg -f lavfi -i color=c=black:s=1280x720:r=5 -i audio.mp3 -crf 0 -c:a copy -shortest output.mp4
This generates mp4 formatted video with blank black background with the color source filter instead of using an image.
Since it is just black video this is one case with lossless mode (-crf 0) will have a smaller file size than the default lossy mode.
#!/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 \ |
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" |