Skip to content

Instantly share code, notes, and snippets.

View gvoze32's full-sized avatar
πŸ•“
Busy

Syafa Adena gvoze32

πŸ•“
Busy
  • Hobbyist
  • Indonesia
View GitHub Profile
@gvoze32
gvoze32 / config_0
Last active October 11, 2020 14:16
Tilda Nord config
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"
@gvoze32
gvoze32 / zip multiple directories into individual zip files.md
Last active April 20, 2021 14:06
zip multiple directories into individual zip files

zip multiple directories into individual zip files

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
@gvoze32
gvoze32 / sortingnamabubblesortdinamis.cpp
Last active November 4, 2021 12:56
Sorting nama menggunakan bubble sort secara dinamis
#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])
@gvoze32
gvoze32 / auto_install_ioncube.sh
Last active January 16, 2023 15:00
Auto install IonCube PHP Loader/Encoder for Debian x64
#!/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 \
@gvoze32
gvoze32 / satsetjolly.js
Last active November 10, 2023 07:12
satset jolly
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;
@gvoze32
gvoze32 / pixelsidle.js
Last active November 15, 2023 09:25
pixels idle
function simulateKeyPress(keyCode, eventType) {
var eventObj = document.createEventObject
? document.createEventObject()
: document.createEvent("Events");
if (eventObj.initEvent) {
eventObj.initEvent(eventType, true, true);
}
eventObj.keyCode = keyCode;
@gvoze32
gvoze32 / aztectutorial.md
Last active May 28, 2025 08:57
Aztec Node Tutorial

Aztec Discord Role Tutorial

Overview

Join the Aztec Discord community and earn roles by participating in their network operations.

Discord Invite: https://discord.com/invite/aztec


@gvoze32
gvoze32 / codecliaddon.sh
Last active June 14, 2025 20:02
codecli addon
#!/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:
@gvoze32
gvoze32 / fbvideoytdlp.md
Last active October 26, 2025 04:14
Download Facebook Private Comment Video using yt-dlp

Download Facebook Private Comment Video using yt-dlp

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.