I just came across a PowerPoint template which ran fine in LibreOffice, but required a font called "Calibri". Most people know how to install Arial, Verdana etc. which are often in packages called "corefonts" or "msttcorefonts". Calibri however is distributed with Windows Vista, 7, 8 and several Office products. Here's how to get these fonts running on Linux, i.e. my Ubuntu box.
Installation
In short, you need cabextract in order to extract the fonts from the PowerPoint Viewer .exe that Microsoft distributes for free. Then, you can copy them to your local font directory (should be ~/.fonts) or install them globally. There is a handy script which does this for you at plasmasturm.org. You can download and execute this file using
wget http://plasmasturm.org/code/vistafonts-installer/vistafonts-installer
bash vistafonts-installer
Unhinted fonts in Chromium
I had the problem that my browser would display pages that used one of the Vista fonts as pixelated, due to disabled hinting. I found a fix for this problem: You have to change your local font configuration to ignore the embedded bitmaps inside the Microsoft fonts. Depending on your system, you might have the local font configuration at ~/.fonts.conf or use a directory ~/.fonts.conf.d/, in which you can place a new file with the contents
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<dir>~/.fonts</dir>
<match target="font">
<test name="family" compare="contains">
<string>Calibri</string>
<string>Cambria</string>
<string>Candara</string>
<string>Consolas</string>
<string>Corbel</string>
<string>Constantia</string>
</test>
<edit name="embeddedbitmap" mode="assign">
<bool>false</bool>
</edit>
</match>
</fontconfig>
As a student, I have spent a lot of time experimenting with pasta and tomato sauce. These are my entirely subjective results.
Good Tomatoes
When asking people what makes a good tomato sauce, probably the most common answer you will get is "good tomatoes". It is a conceptually nice answer for several reasons. Tomatoes are universally seen as healthy - we like the belief that fresh and healthy ingredients make good food, and "good tomatoes" should be the only logical answer because tomatoes are the main ingredient. Furthermore, it is an answer that makes you comfortable since if your tomato sauce doesn't taste as good as the one on vacation in Italy, there's nothing you can do because they just have access to superior ingredients.
Then what actually makes a good tomato sauce?
What actually is a good tomato sauce is already a quite difficult thing to find out. There's an interesting talk by Malcolm Gladwell at TED where he speaks about clustering of people's preferences. There seems to be a large group of people who like their spaghetti sauce extra chunky, and several other clusters.
However, I've come to the conclusion that the aforementioned "good tomatoes" actually don't play a role at all for a good tomato sauce. Making tomato sauce from fresh tomatoes is a mess, and there are a lot of things that can go wrong. You need very ripe tomatoes, you need to peel them, get rid of the kernels... and worst of all, the result is often indistinguishable from the sauce you make from a can of preserved, diced tomatoes. Also, I haven't been able to distinguish organic tomatoes from regular ones - this seems to be a primarily ethical choice.
What actually does seem to matter is the content of salt and fat, which is in line with research findings. People like salty and fatty foods (no shit, Sherlock!), so if you go for taste and not health, you may want to add a good gulp of olive oil. Probably after cooking, in order to preserve the taste. Fats are also natural flavor enhancers. By stirring it in, you can create an emulsion of little olive oil droplets in your tomato sauce, enhancing the natural tomato taste.
Speaking of taste... a good Italian style tomato sauce needs basil, the more the better. Fresh basil, that is - the dried version tastes completely different.
Variation
If you eat the same tomato sauce for a while, it becomes bland. Luckily, there are lots of ways to experiment, since you can add oregano or leave it out, add some chopped onions or mushrooms, red wine, powdered paprika, tomato concentrate or garlic. Of course, you can also experiment with different cheeses on top. The result is sometimes better, sometimes worse than what you had before, but always slightly different.
tl;dr: Tomato sauce is awesome, add lots of olive oil and basil :)