Anonymous ID: 5cc59f Jan. 16, 2019, 4:13 p.m. No.4783497   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>3504 >>3556 >>3636 >>3740 >>3775 >>3824 >>4005 >>4164

>>4783437

Who wrote the Fusion GPS dossier and when?

Glenn Simpson and his wife Mary Jocoby in 2007.

 

Wall Street Journal Article

How Lobbyists Help Ex-Soviets Woo Washington

 

https://www.wsj.com/articles/SB117674837248471543

 

If you have facebook you can bypass the WSJ paywall by using the following link.

 

http://facebook.com/l.php?u=https://www.wsj.com/articles/SB117674837248471543

Anonymous ID: 5cc59f Jan. 16, 2019, 4:58 p.m. No.4784107   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun   >>4132

Here's some code to add to your OPTIONS USER JS.

 

The first is a Blacklist Button which will permanently blacklist any images you choose. This forces shills to create more and more images and keeps your bread free of shill images.

// Blacklist Button - Permanently Blacklist Imagesvar imageBlacklist = [] ;function loadImageBlacklist() { JSON.parse(localStorage.imageBlacklist || "[]").forEach(addToImageBlaclist); }function saveImageBlacklist() { localStorage.imageBlacklist = JSON.stringify(imageBlacklist); }function addToImageBlaclist(md5) { if (md5 && -1 = imageBlacklist.indexOf(md5)) imageBlacklist.push(md5); }function blacklistPostImages(post) { $(post).find('img.post-image').each(function (i, el) { var md5 = el.getAttribute('data-md5'); addToImageBlaclist(md5); el.remove(); }); }function removeBlacklistedImages() { var removed = 0; $('img.post-image').each(function (i, el) { if (-1 ! imageBlacklist.indexOf(el.getAttribute('data-md5'))) { el.remove(); removed += 1; } }); return removed; }function onNopeClicked(event) { event.preventDefault(); event.stopPropagation(); loadImageBlacklist(); var post = $(event.target).closest('.post'); blacklistPostImages(post); removeBlacklistedImages(); saveImageBlacklist(); }function addNopeButtons() { $('.post').each(function(i, post) { if ($(post).find('.nope').length === 0) { $(post).prepend("<input type='button' class='nope' onClick='onNopeClicked(event)' value='Blacklist'></input>"); } }) }setInterval(function () { loadImageBlacklist(); removeBlacklistedImages(); addNopeButtons(); }, 500);

 

This second one is just real time post counter at the bottom right of your screen.

// Blacklist Button - Permanently Blacklist Imagesvar imageBlacklist = [] ;function loadImageBlacklist() { JSON.parse(localStorage.imageBlacklist || "[]").forEach(addToImageBlaclist); }function saveImageBlacklist() { localStorage.imageBlacklist = JSON.stringify(imageBlacklist); }function addToImageBlaclist(md5) { if (md5 && -1 = imageBlacklist.indexOf(md5)) imageBlacklist.push(md5); }function blacklistPostImages(post) { $(post).find('img.post-image').each(function (i, el) { var md5 = el.getAttribute('data-md5'); addToImageBlaclist(md5); el.remove(); }); }function removeBlacklistedImages() { var removed = 0; $('img.post-image').each(function (i, el) { if (-1 ! imageBlacklist.indexOf(el.getAttribute('data-md5'))) { el.remove(); removed += 1; } }); return removed; }function onNopeClicked(event) { event.preventDefault(); event.stopPropagation(); loadImageBlacklist(); var post = $(event.target).closest('.post'); blacklistPostImages(post); removeBlacklistedImages(); saveImageBlacklist(); }function addNopeButtons() { $('.post').each(function(i, post) { if ($(post).find('.nope').length === 0) { $(post).prepend("<input type='button' class='nope' onClick='onNopeClicked(event)' value='Blacklist'></input>"); } }) }setInterval(function () { loadImageBlacklist(); removeBlacklistedImages(); addNopeButtons(); }, 500);

Anonymous ID: 5cc59f Jan. 16, 2019, 5 p.m. No.4784132   ๐Ÿ—„๏ธ.is ๐Ÿ”—kun

>>4784107

oops. Post counter is this one kek

 

/ Display a replies counter overlay in the bottom right corner /$(function(){ $('head').append('<style>#thread_stats_posts_ovl { '+ 'position:fixed;bottom:15px;right:35px;'+ 'font:38px sans-serif;opacity:0.5;color:#f60;}</style>'); $('body').append('<div id="thread_stats_posts_ovl"/>'); function copyStats() { $('#thread_stats_posts_ovl'). text($('#thread_stats_posts').text());} $(document).on('new_post',copyStats); copyStats();});