Skip to content

Instantly share code, notes, and snippets.

View arfar-x's full-sized avatar
🎯
Focusing

Alireza Farhanian arfar-x

🎯
Focusing
View GitHub Profile
@arfar-x
arfar-x / README.md
Last active February 26, 2026 13:55
SSH password management + login in Linux Keyring

Secure Password SSH Using SSH_ASKPASS

This guide sets up secure password-based SSH using your OS keyring.
No plaintext passwords, no hardcoding, works for multiple servers and any tool that calls SSH.


How it works

  1. Any SSH call prompts for a password
@RicherMans
RicherMans / v2ray_config.sh
Last active July 12, 2023 18:45
Simple ufw config for v2ray
ufw enable
ufw allow ssh
ufw allow 41335:60031/tcp # Or your v2ray kcp/udp port range
ufw allow 41335:60031/udp # Or your v2ray kcp/udp port range
ufw allow http
ufw allow https
ufw default deny incoming
ufw reload
@Pulimet
Pulimet / AdbCommands
Last active March 13, 2026 13:04
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.
@tayvano
tayvano / gist:6e2d456a9897f55025e25035478a3a50
Created February 19, 2017 05:29
complete list of ffmpeg flags / commands
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full.
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…
Getting help:
-h — print basic options
-h long — print more options
-h full — print all options (including all format and codec specific options, very long)
@kriswebdev
kriswebdev / novpn.sh
Last active March 13, 2026 15:33
novpn: Bypass VPN for specific apps [Linux / OpenVPN]
#!/bin/bash
# === INFO ===
# NoVPN
# Description: Bypass VPN tunnel for applications run through this tool.
VERSION="3.0.0"
# Author: KrisWebDev
# Requirements: Linux with kernel > 2.6.4 (released in 2008).
# This version is tested on Ubuntu 14.04 and 19.10 with bash.
# Main dependencies are automatically installed.