You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
DarkTr4ce
Brakah777
Where shadows fall, traces fade, but DarkTr4ce sees all.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The killproc script is a user-friendly tool for managing processes on a Unix-like operating system.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Terminator by Aéza provides free access to virtual machines with up to 4 cores, 4GB RAM, and 40GB SSD, offering both Windows and Debian operating systems.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Script Instructions: Copy File Contents to Clipboard
This script allows you to copy the contents of a specified file directly to your clipboard in Termux. It includes a file locator function in case the file is not found in the current directory.
Setup
Run the following one-line command in Termux to create and save the script as copytext in the ~/bin directory:
mkdir -p ~/bin &&cd~/bin &&echo'#!/bin/bash\nread -p "Enter the filename to copy text from: " filename\nif [ ! -f "$filename" ]; then echo "File not found. Locating the file..."; located_file=$(locate "$filename" | head -n 1); if [ -z "$located_file" ]; then echo "File not found anywhere."; exit 1; else echo "File found at: $located_file"; filename="$located_file"; fi; fi\ntermux-clipboard-set < "$filename"\necho "Contents of '\''$filename'\'' copied to clipboard."'> copytext && chmod +x copytext
Created
October 26, 2024 17:56— forked from 0x07dc/torrc
Torrc Exit Node Country Codes List (Filter Exit Nodes)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fixing Hydra Installation Issues on Termux by DarkTr4ce and ChatGPT-4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters