Skip to content

Instantly share code, notes, and snippets.

View rezajax's full-sized avatar
💭
sepi $msg.tostring()

Reza rezajax

💭
sepi $msg.tostring()
View GitHub Profile
@rezajax
rezajax / xclip aliases for startup scripts
Created May 11, 2024 03:31 — forked from yiboyang/xclip aliases for startup scripts
A few xclip aliases to simplify copying/pasting
# to simplify life, install xclip and append the following lines to your .bashrc
alias "c=xclip" # copy to X clipboard (register *)
alias "cs=xclip -selection clipboard" # copy to system wide clipboard (register +)
alias "v=xclip -o" # output copied content (paste)
alias "vs=xclip -o -selection clipboard" # paste from system wide clipboard (equivalent to `v -selection clipboard`)
# examples:
# copy to X:
# go to the same directory in terminal 2 as in terminal 1
# Terminal 1:
@rezajax
rezajax / install-android-sdk-in-ubuntu.md
Created April 29, 2024 01:55 — forked from EmadAdly/install-android-sdk-in-ubuntu.md
install JDK and Android SDK on Linux Ubuntu

install openjdk

sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk
@rezajax
rezajax / AdbCommands
Created March 10, 2024 16:10 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader