Skip to content

Instantly share code, notes, and snippets.

View e-orlov's full-sized avatar

Evgeniy e-orlov

View GitHub Profile
@e-orlov
e-orlov / gist:6155b6b0ebcc6f2a2966d8827a17816f
Last active July 8, 2022 16:35
de-blocklist-transmission
This file has been truncated, but you can view the full file.
"""CONSERVATORIODIMUSICA""":2.16.6.0-2.16.7.255
"de":2.16.132.0-2.16.133.255
"de":2.16.170.0-2.16.171.255
"de":2.16.172.0-2.16.173.255
"de":2.17.20.0-2.17.23.255
"de":2.17.252.0-2.17.255.255
"de":2.19.240.0-2.19.255.255
"de":2.20.60.0-2.20.63.255
"de":2.20.180.0-2.20.180.255
@e-orlov
e-orlov / sistrix-bookmarklet-analyze-url.js
Created January 15, 2022 17:42
Analyze live URL in Sistrix
javascript:void(window.open(%27https://de.sistrix.com/url/%27+%27"%27+window.location.href+%27"%27,%27_blank%27));
@e-orlov
e-orlov / sistrix-bookmarklet-analyze-third-path.js
Created January 15, 2022 17:41
Analyze third path of a live URL in Sistrix
javascript:void(window.open(%27https://de.sistrix.com/path/%27+%27"%27+window.location.protocol+%27//%27+window.location.host+%27/%27+window.location.pathname.split('/')[1]+%27/%27+window.location.pathname.split('/')[2]+%27/%27+window.location.pathname.split('/')[3]+%27/%27+%27"%27,%27_blank%27));
@e-orlov
e-orlov / sistrix-bookmarklet-analyze-second-path.js
Created January 15, 2022 17:40
Analyze second path of a live URL in Sistrix
javascript:void(window.open(%27https://de.sistrix.com/path/%27+%27"%27+window.location.protocol+%27//%27+window.location.host+%27/%27+window.location.pathname.split('/')[1]+%27/%27+window.location.pathname.split('/')[2]+%27/%27+%27"%27,%27_blank%27));
@e-orlov
e-orlov / sistrix-bookmarklet-analyze-first-path.js
Created January 15, 2022 17:39
Analyze first path of a live URL in Sistrix
javascript:void(window.open(%27https://de.sistrix.com/path/%27+%27"%27+window.location.protocol+%27//%27+window.location.host+%27/%27+window.location.pathname.split('/')[1]+%27/%27+%27"%27,%27_blank%27));
@e-orlov
e-orlov / sistrix-bookmarklet-analyze-host.js
Created January 15, 2022 17:33
Analyze host of a live site in Sistrix
javascript:void(window.open(%27https://de.sistrix.com/host/%27+window.location.hostname,%27_blank%27));
@e-orlov
e-orlov / sistrix-bookmarklet-analyze-domain
Created January 15, 2022 17:27
Analyze domain of a live site with Sistrix
javascript:void(window.open(%27https://de.sistrix.com/%27+window.location.host.replace(/^www\./,''),%27_blank%27));
@e-orlov
e-orlov / google-serp-sequential-numbering.js
Created January 14, 2022 16:18
Google SERP sequential numbering
javascript:(function() {function q(key) {var value = null;for (var i = 0; i < q.keys.length; i++) {if (q.keys[i] == key) {value = q.values[i];break;}}return value;}q.keys = new Array();q.values = new Array();function q_Parse() {var query = window.location.search.substring(1);var pairs=query.split('&');for (var i = 0 ; i < pairs.length; i++) {var pos = pairs[i].indexOf('=');if (pos >= 0) {var a = pairs[i].substring(0,pos);var value = pairs[i].substring(pos+1);q.keys[q.keys.length] = a;q.values[q.values.length] = value;}}}q_Parse();var j = 0;var s = q('start');if (s == null) {s=0;}s = parseInt(s) + 1;function n(){ps = document.getElementsByTagName('div');for (pi = 0; pi < ps.length; pi++) {tp = ps[pi];if (tp.className == 'g') {w = s + j;tp.innerHTML = w + '. ' + tp.innerHTML;j++;}}}window.addEventListener("load", n(), false);})();
@e-orlov
e-orlov / site-query-highlighted-url.js
Created January 14, 2022 16:11
"Site:"-query for highlighted URL
javascript:s=""+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);s=s.replace(/\r\n|\r|\n/g," ,");if(!s)s=prompt("URL markieren!","");if(s!=null)window.open(%27https://www.google.de/search?num=100&q=site:%27+escape(s).replace(/ /g,"+"),%27_newtab%27);void 0
@e-orlov
e-orlov / site-query-current-url.js
Created January 14, 2022 16:07
"Site:"-query for the current URL
javascript:void(window.open(%27https://www.google.de/search?num=100&q=site:%27+window.location.href,%27_blank%27));