Massimo Marchiori introduces Volunia, much more than a search engine.
Twopenguins.it
Google is switching to SSL
If you have a Google account there’s a good news for you, in the next weeks Google will switch to an encrypted search page for every registered user.
That’s right, when you’ll serach for something you’ll be automagically redirected to https if you’re logged with your Google account.
http://googleblog.blogspot.com/2011/10/making-search-more-secure.html
bash cgi: malformed header from script. Bad header=<html>
Look if you have a \n somewhere:
echo "Content-Type: text/html\n\n"
Substitute it with:
echo "Content-Type: text/html"
echo ""
echo ""
Google Chrome 10 is out
23 security fix, javascript performance improved, GPU acceleration and more…
I’ve just upgraded it in my Slackware (thanks to slackbuilds.org) and.. WOW! It’s faster than ever!
Plus, i like the new setting interface tab, instead of the popup window.
I think they could add a search bar in the password manager, too…
A disappointing thing: There’s still the upload image bug, chrome crash when you click on an image to upload it.
WTF, It’s a bug know from a year or so… and they don’t do anything. ok.
You can avoid the crash by submitting the path to the image instead of directly click on it.
Apache logs: from common to combined
You can convert your Apache logs from common to combined with a simple sed line:
sed 's|$| "-" "-"|' yourwebsite-acces.log > yourwebsite-acces.log_combined
