So let's say that you've been working on something on DP, and you accidentally close the window or the tab (for my fellow firefoxers). And it's like, "I don't want to rewrite that thing! It won't be as good!" Just like in that Shel Silverstein poem.
Here's what you do!
Download
pmdump and
Strings.
Run it a little bit like this:
C:> pmdump -list | find "firefox"
4014 - firefox.exe
C:> pmdump 4014 firefox.dmp
So now you have a nice little file called "firefox.dmp". It might take a while, mine was 701MB in size! Next up, run Strings, like so:
C:> strings firefox.dmp > firefox.txt
And you will have a nice little text file of all the text from the file. Mine was about 50MB, after filtering out all the garbage memory in there. Open it in your favorite text editor (I like TextPad) and search for a few words from the work, and you have it again! Voila.
By the way, I didn't figure this out. I'm quoting
this clever dude.
Comments on How to Retrieve Lost Data