Avatar Image
Gajendra Mahato

🎵 How to Use Jockie Music Bot. 🎶

Jockie Music Bot is a powerful Discord bot for playing music from various platforms like YouTube, Spotify, SoundCloud, and more. This guide will help you control playback, manage the queue, adjust audio settings, and more. 🔎 Search & Add Music m!search <song name> # Search for a song and choose from results m!play <song name or link> # Play a song or add it to the queue m!play --now <Music Link> # Play immediately, skipping the queue m!play <playlist link> # Play an entire YouTube/Spotify playlist m!playradio <genre> # Play a genre-based radio station ▶️ Playback Commands m!pause # Pause the current song m!resume # Resume the paused song m!stop # Stop playback and clear the queue m!disconnect # Make the bot leave the voice channel ⏭️ Navigation Commands m!next # Skip to the next song m!previous # Go back to the previous song m!seek <time> # Jump forward (e.g., m!seek 1m30s) m!seek <-time> # Jump backward (e.g., m!seek -30s) 📋 Queue Management m!queue # Show the current queue m!current # Show details of the currently playing song m!clearqueue # Remove all songs from the queue m!remove <position> # Remove a specific song (e.g., m!remove 2) m!remove <from> <to> # Remove a range of songs (e.g., m!remove 2 5) m!shuffle # Shuffle the queue m!shuffleoff # Disable shuffle m!loop # Loop the current song m!loopoff # Disable loop 🎶 Audio Control m!volume <1-100> # Adjust volume (default 100) m!bassboost <level> # Increase bass (low, medium, high, off) m!nightcore # Enable nightcore effect m!vaporwave # Enable vaporwave effect m!speed <0.5 - 2.0> # Change playback speed 🎤 Lyrics & Info m!lyrics # Get lyrics of the current song m!np # Now playing (song details) m!song info # Get full details about the current song 🔄 Auto & Smart Features m!autoplay # Enable autoplay for recommendations m!autoplayoff # Disable autoplay m!24/7 # Keep bot active 24/7 in the voice channel

January 13, 2026 · 2 min

FFUF - Fuzz Faster U Fool

1. Directory and File Brute Forcing Basic Directory Fuzzing: ffuf -w /path/to/wordlist.txt -u https://example.com/FUZZ/ Fuzz common directory names (e.g., /admin/, /uploads/). 2. Fuzzing Parameters Basic Parameter Fuzzing: ffuf -w wordlist.txt -u https://example.com/page.php?param=FUZZ Replaces FUZZ with words from the wordlist to test URL parameters. Filter by Status Code: ffuf -w wordlist.txt -u https://example.com/page.php?param=FUZZ -mc 200 Shows responses only for the 200 OK status code. Filter by Content Size: ffuf -w wordlist.txt -u https://example.com/page.php?param=FUZZ -fs 150 Filters results based on exact response size in bytes. Fuzzing with JSON Payload (for APIs): ...

January 13, 2026 · 3 min

Saving the Current Pane Buffer in tmux

This guide explains how to save the contents of the current pane in tmux to a file. Step-by-Step Instructions Capture the Pane’s Content: Press prefix key Ctrl+b to enter tmux command mode. Type :capture-pane -S - -E - and press Enter. This captures the entire visible contents of the current pane to a buffer. Save the Buffer to a File: Press prefix key Ctrl+b again to enter tmux command mode. Type :save-buffer /tmp/pane_output.log and press Enter. This saves the buffer content to a file named /tmp/pane_output.log. Combined Command Method You can capture the pane’s content and save it to a file using the following commands in your shell within the tmux session: ...

January 13, 2026 · 1 min

Set Default Terminal in Gnome

gsettings set org.gnome.desktop.default-applications.terminal exec tilix gsettings set org.gnome.desktop.default-applications.terminal exec-arg -x gsettings set org.gnome.desktop.default-applications.terminal exec-arg --quake

January 13, 2026 · 1 min

Tutorial: String Manipulation in Perl with s///, y///, and s///g

Perl provides powerful operators for manipulating strings using regular expressions. Here’s a breakdown of each operator with examples: s/// (Substitution Operator) Syntax: s/old-pattern/new-pattern/ Purpose: Replaces occurrences of old-pattern with new-pattern in a string. Example: s/John/Doe/ replaces the first instance of “John” with “Doe”. Example 1: Replace “John” with “Doe” text = "Hello John. John is a friend."; regex = s/John/Doe/; # Result: "Hello Doe. John is a friend." Example 2: Replace “white” with “black” ...

January 13, 2026 · 3 min