This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://gist.github.com/FranzDiebold/898396a6be785d9b5ca6f3706ef9b0bc | |
"""Hack to add per-session state to Streamlit. | |
Works for Streamlit >= v0.65 | |
Usage | |
----- | |
>>> import SessionState | |
>>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export START="Documents/dev" | |
if [[ $PWD == $HOME ]]; then | |
cd $START | |
fi | |
alias python3.8='docker run --rm -it -v "${PWD}":/usr/src/app -w /usr/src/app python:3.8 python' | |
alias python3.9='docker run --rm -it -v "${PWD}":/usr/src/app -w /usr/src/app python:3.9 python' | |
alias python3.10='docker run --rm -it -v "${PWD}":/usr/src/app -w /usr/src/app python:3.10 python' | |
alias python3.11='docker run --rm -it -v "${PWD}":/usr/src/app -w /usr/src/app python:3.11 python' | |
alias python3.12='docker run --rm -it -v "${PWD}":/usr/src/app -w /usr/src/app python:3.12 python' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
"42crunch.vscode-openapi", | |
"alexcvzz.vscode-sqlite", | |
"aykutsarac.jsoncrack-vscode", | |
"charliermarsh.ruff", | |
"eamodio.gitlens", | |
"editorconfig.editorconfig", | |
"esbenp.prettier-vscode", | |
"github.vscode-pull-request-github", |