KISS πŸ‡ΊπŸ‡¦

Stop the war!

Stop the war in Ukraine! Fuck putin!

More information is at: https://war.ukraine.ua/.

There is a fund to support the Ukrainian Army: https://savelife.in.ua/en/donate/, and there is a special bank account that accepts funds in multiple currencies: https://bank.gov.ua/en/about/support-the-armed-forces. I donated to them. Please donate if you can!

Killer putin

Killer putin. Source: politico.eu.

Arrested putin

"It hasn't happened yet, but it will happen sooner or later. Beautiful photo, isn't it?" Source: twitter.

A tiny userjs (for Yandex's search page)

| comments

Hi again!

Updated on 2011-06-11!

My primary search engine is Yandex, but I often click to the “Google” link at the bottom of a Yandex’s search page. Google’s interface is English, but when I click the link, it enables Russian one. It happens due to “hl=ru” parameter of that link.

It’s a bit inconvenient, so I made it to write a little userjs for the Opera browser. Here is the source:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// ==Userscript==
// @name YandexToGoogle
// @description Removes the 'hl=ru' parameter in Yandex's links to Google at the bottom of a search page
// @version 1.1 (2011-06-11)
// @author pluton <pluton.od at gmail.com>
// @include http://yandex.ua/yandsearch*
// @include http://yandex.ru/yandsearch*
// ==/Userscript==

(function() {
    window.opera.addEventListener('BeforeEvent.DOMContentLoaded', function(ev) {
        // find our Google link
        var elem = document.getElementsByClassName('b-summary__item')[1];
        // and remove the parameter
        elem.search = elem.search.replace("hl=ru&", "sourceid=opera&");
    }, true);
})();

Now, how to install it. Go to “opera:about” address, and find the folder name opposite the “User JavaScript folder” label (in my case, it is “/home/user/.opera/userjs”). Then just save the script’s code to “yandex_to_google.js” file. Works in Opera 10.63+.

That’s all for today. Leave your comments.

Comments