Skip to content

Instantly share code, notes, and snippets.

View georgeth's full-sized avatar
🐍
import this

George Thomas georgeth

🐍
import this
View GitHub Profile
-- To see the query which a SPID is running
select SQLText from master..monProcessSQLText where SPID = <spid>
@georgeth
georgeth / recover_source_code.md
Created August 8, 2018 14:44 — forked from simonw/recover_source_code.md
How to recover lost Python source code if it's still resident in-memory

How to recover lost Python source code if it's still resident in-memory

I screwed up using git ("git checkout --" on the wrong file) and managed to delete the code I had just written... but it was still running in a process in a docker container. Here's how I got it back, using https://pypi.python.org/pypi/pyrasite/ and https://pypi.python.org/pypi/uncompyle6

Attach a shell to the docker container

Install GDB (needed by pyrasite)

apt-get update && apt-get install gdb