Skip to content

Instantly share code, notes, and snippets.

@Chucky2401
Chucky2401 / AdbCommands
Created September 5, 2025 09:05 — forked from Pulimet/AdbCommands
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.
@Chucky2401
Chucky2401 / Go_To_Invidious.js
Created August 3, 2025 11:21
Youtube | Add link to slef hosted Invidious
// ==UserScript==
// @name Invidious
// @namespace http://tampermonkey.net/
// @version 1.1.0
// @description Add Invidious link under Youtube title on home page and search results, and a button on video page
// @author Tristan_JVShow
// @match https://www.youtube.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant GM_registerMenuCommand
// @grant GM_setValue
@Chucky2401
Chucky2401 / fzf_ssh.sh
Last active July 28, 2025 09:26
SSH Connection with fzf
function conn_ssh() {
while read -r client; do
INFO=$(ssh -Gt "$client" 2>/dev/null | grep -E "^user |port " | tr '\n' ';' | sed 's/;$//')
printf "%s:%s\n" "$client" "$INFO"
done < <(grep -P "^Host ([^*]+)$" ~/.ssh/config | sed 's/Host //' | sort) | fzf --tmux center \
--prompt ' ' \
--pointer '󰛂' \
--border-label ' SSH Servers ' \
--delimiter=':' \
--with-nth '{1}' \