Archive for the 'Uncategorized' Category

Greasemonkey script to remove unwanted results from Google

Tuesday, September 15th, 2009

For myself, for future reference: [sourcecode lang="js"] // ==UserScript== // @name Expert blocker // @namespace my // @description Eliminate Experts Exchange results from Google searches. // @include http://*.google.com/search?* // @include http://*.google.co.uk/search?* // ==/UserScript== var results = document.getElementsByTagName("a"); for ( var i=0; i<results.length; i++ ) { if ( results[i].href.indexOf("http:/ /www.experts-exchange.com") == 0 || results[i].href.indexOf("http:/ /swik.net") == [...]

Windows 7 Release Candidate – first look

Friday, May 1st, 2009

Today I got my hands on fresh Windows 7 RC so I decided to give it a shot. I installed it on VirtualBox 2.2, VM with 1GB of RAM and I have to admit, I am impressed. There is no visible changes in the UI, the only thing that’s changed is the installer, it is really [...]

Configuring postfix as a relay for GMail

Monday, April 27th, 2009

For the domain this blog is running on I have a separate GMail account, I wanted my server to relay all email there. I was searching quite a lot for detailed info on how to set up postfix correctly but could not find any. All information was scattered across different blogs, websites, forums. I just achieved the [...]

Mosso Cloud Servers DNS records tip

Friday, April 17th, 2009

If it happens that you use Mosso Cloud Servers and its DNS management panel remember to always set different name for each record. Otherwise if you want to remove one of them, if there is another record with same name control panel with return an error. In such case the only way to fix your [...]