This file contains hidden or 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
| # p – launch an IPython REPL under uvx | |
| # p → <default version> + ipython | |
| # p sympy numpy → <default version> + ipython + sympy + numpy | |
| # p -v 3.12 pandas → 3.12 + ipython + pandas | |
| # p --version=3.14a1t → 3.14a1t + ipython | |
| p() { | |
| local python_version="3.13t" # default when user doesn't specify one | |
| local with_flags=() | |
| # -------- parse options -------- |
This file contains hidden or 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
| import { createAction } from 'redux-actions'; | |
| import { | |
| NAVIGATION_PUSH, | |
| NAVIGATION_POP, | |
| NAVIGATION_RESET_TO, | |
| NAVIGATION_POP_TO_ROOT | |
| } from './actions'; | |
| export const push = createAction(NAVIGATION_PUSH); | |
| export const pop = createAction(NAVIGATION_POP); |