An option is a manual recovery:
Files are the easiest part. You can do what Ramchandra suggested, but if you want to preserve your apps you should avoid reinstalling (as that would, as you've seen, remove the apps.) If you want to avoid uninstalling the boot with a missing kernel:
Boot to LiveCD.
Using nautilus, open up the broken partition.
Navigate to /home/myusernamehere. All your files will be there.
Some other files you might want to save:
- /etc/apt/sources.list, if you have any manual repos.
After you are done with this, stick it onto a flash drive or email it to yourself.
Apps is a trickier part. I have come up with a somewhat roundabout solution that will take some time (most of it without you actively participating), but this should recover your apps (without settings/configurations)
Stick around LiveCD.
Navigate to /usr/lib. (It may take a while to load.)
Woah! Huge amount of folders. Open up gedit in liveCD.
Type this in gedit:
#!/bin/sh
sudo apt-get install folder1 folder2 folder3
...Where folder1 folder2 folder3 are the names of the folders.
These are all the programs you have installed on ubuntu (I think). Some of these (about 50%, maybe more) come with the system, so the arent necessary, but a safe bet is just put everything.
Another place to look for apps is /etc and /etc/alternatives. (Update me if I am missing any spots, internet!)
Save the file as .sh and email or flash drive it.
Now, when you first start up your computer (after total reinstall) you can run this script to sudo apt-get all your programs that you previously had. They'll be good as new!