start new:
tmux
start new with session name:
tmux new -s myname
| // Visit https://www.reddit.com/subreddits/ and run the following in console (browser dev tools) | |
| // Wait until all the buttons have visibly toggled, refresh page to confirm. | |
| $('.fancy-toggle-button .remove').each(function(i, elem) { setTimeout(function(){ $(elem).trigger('click'); }, i*500) }); |
| import sys,os | |
| import curses | |
| def draw_menu(stdscr): | |
| k = 0 | |
| cursor_x = 0 | |
| cursor_y = 0 | |
| # Clear and refresh the screen for a blank canvas | |
| stdscr.clear() |