Skip to content

Instantly share code, notes, and snippets.

@VietTralala
VietTralala / install_jupyterlab.sh
Created November 8, 2023 12:12
Install jupyterlab in termux
# the following worked as of 08/11/2023
pgk update && pgk upgrade # make sure we are uptodate
# sources of information
# https://www.reddit.com/r/termux/comments/157mw29/2023_installing_jupyter_notebookslab/
# https://www.reddit.com/r/termux/comments/15e6qz5/comment/ju6qjkk/?utm_source=share&utm_medium=web2x&context=3
pkg install python libzmq libcrypt -y
pkg install make rust llvm binutils-is-llvm libandroid-execinfo -y
pip install jupyterlab # takes about 15min to build
@VietTralala
VietTralala / toggle_keybindings.tmux.conf
Created February 18, 2023 11:10 — forked from samoshkin/toggle_keybindings.tmux.conf
tmux.conf excerpt to toggle on/off session keybindings and prefix handling
bind -T root F12 \
set prefix None \;\
set key-table off \;\
set status-style "fg=$color_status_text,bg=$color_window_off_status_bg" \;\
set window-status-current-format "#[fg=$color_window_off_status_bg,bg=$color_window_off_status_current_bg]$separator_powerline_right#[default] #I:#W# #[fg=$color_window_off_status_current_bg,bg=$color_window_off_status_bg]$separator_powerline_right#[default]" \;\
set window-status-current-style "fg=$color_dark,bold,bg=$color_window_off_status_current_bg" \;\
if -F '#{pane_in_mode}' 'send-keys -X cancel' \;\
refresh-client -S \;\
bind -T off F12 \
@VietTralala
VietTralala / android-backup-apk-and-datas.md
Created September 26, 2021 16:18 — forked from AnatomicJC/android-backup-apk-and-datas.md
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Fetch application APK

To get the list of your installed applications: