Go to the course and have any video up. The following code relies on the right sidebar to be visible to uncheck all your progress.
You can do this with ctrl+shift+j and making sure the console tab is selected for chrome/brave
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |
| """Simple sliding window dashboard-style | |
| plot that updates periodically pulling from | |
| a random generator | |
| """ | |
| import streamlit as st | |
| import time | |
| import random | |
| # session_state from https://gist.github.com/tvst/036da038ab3e999a64497f42de966a92 | |
| from session_state import get | |
| # st_rerun from https://gist.github.com/tvst/ef477845ac86962fa4c92ec6a72bb5bd |
Go to the course and have any video up. The following code relies on the right sidebar to be visible to uncheck all your progress.
You can do this with ctrl+shift+j and making sure the console tab is selected for chrome/brave