Skip to content

Instantly share code, notes, and snippets.

View jigangkim's full-sized avatar
🎯
Focusing

Jigang Kim jigangkim

🎯
Focusing
View GitHub Profile
@vladak
vladak / varmilo keyboard.md
Last active May 28, 2024 07:57
Varmilo keyboard details
@gwangjinkim
gwangjinkim / how-to-save-entire-python-sessions-or-objects-or-session-code.py
Last active April 8, 2023 19:49
How to save entire Python sessions, single objects or only a session's code?
"""
Lisp languages support an image-based development cycle at the REPL.
R - having its roots in Lisp - it was first implemented in Scheme - has overtaken this.
R's base command `save.image(filepath)` can save the state of an entire REPL session in a file,
and next time you start R, you can start where you stopped, by hitting `load(filepath)`.
I was asking myself, since Python's REPL is ipython, what supports
similar functionailities for pythonistas.