Skip to content

Instantly share code, notes, and snippets.

View xcession's full-sized avatar
πŸ›΄
Social distancing

Tharawut P. (ΠŸΡΠΉΠ½Ρ‚) xcession

πŸ›΄
Social distancing
View GitHub Profile
@xcession
xcession / arch-linux-gnome-install.md
Last active November 26, 2022 13:44 — forked from thacoon/arch-linux-gnome-install
Install a minimal gnome setup and some more useful things
@xcession
xcession / sample
Created August 8, 2020 16:53 — forked from slavfox/sample
Cozette sample file
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ β™‘ Cozette β™‘ ┃
┑━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
β”‚ A B C D E F G H I J K L M β”‚
β”‚ N O P Q R S T U V W X Y Z β”‚
β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•‘
β”‚ 1 2 3 4 5 6 7 8 9 0 β”‚
β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•‘
@xcession
xcession / AdbCommands
Created May 17, 2020 21:49 — 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
@xcession
xcession / DisableArrowKeys.vim
Created March 30, 2020 08:46 — forked from ashwin/DisableArrowKeys.vim
Disable arrow keys in Vim
nnoremap <up> <nop>
nnoremap <down> <nop>
nnoremap <left> <nop>
nnoremap <right> <nop>
inoremap <up> <nop>
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>