Thursday 10 February 2022

Alternative Search Engine

Add The #ALTNEWS Search Engine To Your Site

By Dark Politricks

UPDATE 3rd March 2022 - SORRY But GOOGLE has removed my #ALTNEWS search engine with no reason given. It may be due to the alternative content delivered, the ease of getting opposite points of view from shadow-banned sites, or it may be something else. 

However, I urge you to read an earlier article about me wanting to create a REAL #ALTNEWS search engine like I used to own. However, for that I need servers and time to code it - want to help me? Any offer is appreciated!

I apologise for the inconvenience that some of you who have been using it must be feeling. I hope to get a real search engine up as soon as possible.

You might have seen my search engine bar at the top of the site with the words "Search the #Altnews Database, to just search this site add +darkpolitricks.com" in bold.

This is a JavaScript based Google search engine that only searches the list of sites I have given it. So far I am working off the main sites from the list of 550+ sites they don't want you reading about or linking to which for some reason includes mine. You can read all about the list of 550+ sites they want to ban you from reading here.

Now you may just want to visit me and use the search bar on my site to search these sites, or you may want to bookmark a direct link to this search engine which I do on my browsers. 

If so just go to this URL and bookmark it as "ALT News" or "ALT Search" or something like that.


However, if you want to add the search engine to your own site or blog which would really be nice as it would mean that the news from these sites is more accessible despite Google's attempt to de-rank the sites. For example, my own site used to be top of Google for search terms like:
However, I am not anymore due to Google pushing me down the rankings. Luckily I am still at the top for some searches like "A Guide To No Comment Interviews" but I hold no hope of staying there. 

So until I can get the resources together to actually build my own search engine which I did use to have until the server hosting my "Super Search" ( which scanned both Google, Bing and Yahoo for the search terms going through 3 random proxies so that there was no log files or traces of your search terms, plus I removed all the JavaScript code that logs clicks, tracks you, as well as removing any results from known establishment sites like CNN, BBC, FOX etc ), took it down, then the best I can do is work with the devils own tools to create a custom Google Search Engine that only looks at certain sites.

I don't include YouTube.com but I do include Bitchute.com, BrandNewTube.com, and Rumble.com for videos, and as for other sites on the banned list, I don't choose all right or left-wing outlets but just those that appear on the ban list and alternative sites that people recommend to me. 

Some of the main ones apart from my own are:
And many others, to check news just from a certain site as my example text in the box shows, you just add a plus sign around the domain of the site you want. 

For example to see all videos on bitchute.com about WTC7 collapse you would enter WTC7 Collapse +"bitchute.com" this way you can narrow down searches to a specific site.

Remember!!!

If you find that any important sites are missing, whether they are left-wing, right-wing or anarchist or just alternative sites that may have been "cancelled" or de-ranked, then please ensure that they still exist, e.g one of the big ones PrisonPlanet.com no longer exists after Alex Jones's cancellation across the board, and please add a request in a comment on one of my posts, preferably this one, to add the site once you are sure it doesn't exist in my search engine

A quick way to find out whether a site does or does not exist is to just search for the domain name e.g +"infowars.com"

So the more people who use this search engine the better for alternative news the authorities don't want us to read. If you have your own site or blog then you can help out by adding the search engine into your own site with the following code.

This way the more people who add the search engine, the more chances people have of reading alternative news that is being hidden from the masses.

How To Add The ALTNews Search Engine To A Site

The first thing you need to do is add the following code into your site which loads up the search bar and places it into the div with the class, "gcse-search". In your browser turn on the developer toolbar, usually under any browser's settings menu option, then More Tools > Developer Tools. This should open up a new panel in your browser at one side of the screen or at the bottom.

You will see when inspecting the search box once loaded, that it is actually given an ID of gsc-iw-id1. This is important if you want to target the box and style the font or add wording like I have inside my version on this site. I will show you how to do this a little bit down the page.
<script async src="https://cse.google.com/cse.js?cx=005138288515408039386:xatdxpwn9on"></script>
<div class="gcse-search"></div>

Also, you need to make sure your site has the following heading settings for maximum compatibility with HTML 5 browsers, which most people should be using by now. If anyone is using IE still then they need to really update to a standards-compliant browser such as Firefox or all the Chromium-based browsers such as Microsoft's EDGE, Chrome, Opera, or Brave.

<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1">

If you want to add some text into it like I do to inform people what the search bar is for, that toggles on/off whenever you click inside the box, and returns the text when you come out of it, then you need to place some extra JavaScript somewhere on your page. 

If you are using widgets then add a JavaScript/Text widget to the bottom of your layout as you will need to add some JavaScript code inside it that will target the box by its ID, add text inside and make it bold. 

Plus you will need to add event handlers that will remove the text when you put your cursor inside (called "focus"), and also return this text when you come out of the box (called "blur") - or in IE's old JScript language, "onfocus" and "onblur".

I use a window.onload event to make sure all external objects from Google such as the search bar  has loaded before I attempt to add wording inside of the box, otherwise, you may cause a JavaScript error by attempting to get a reference to the search bar when it has not been loaded into the HTML page yet.

I first add a helper function with a single letter G, (for GetMe), and I point it towards the document.querySelector function. This way we can easily target the search engine with CSS selectors, IDs, or an elements Class.

G = function(v){return document.querySelector(v)};

Now we add the code that puts the wording into the text box when the page loads and disappears when you enter it to add your own search, and re-appears when you come out. 

You can obviously change this wording to whatever you want but ensure it is worded the same everywhere it appears in the code.

window.addEventListener("load", function() 
{
	if(G("#gsc-i-id1")){
		G("#gsc-i-id1").value = "Search the #Altnews Database, to just search this site add +yourdomain.com";
G("#gsc-i-id1").style.fontWeight="bold";
	}
	G("#gsc-i-id1").addEventListener("focus",function(){
		G("#gsc-i-id1").value="";
	});
	G("#gsc-i-id1").addEventListener("blur",function(){
		if(G("#gsc-i-id1").value==""){
			G("#gsc-i-id1").value = "Search the #Altnews Database, to just search this site add +yourdomain.com";
G("#gsc-i-id1").style.fontWeight="bold";
		}
	});	
});

And that should be it, whether you are using WordPress, Blogger, or your own code you can now add the #ALTNews Search Engine to your own site and help us find articles that the establishment and their Silicon Valley lackeys are trying to hide from people much more easily.

Remember to let me know of any sites I may have missed in any comments if you are using it!

By Dark Politricks

© 2022 Dark Politricks

11 comments:

  1. Nice, I will be adding it to my new blog on COVID if thats okay with you?

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. That's perfectly fine with me, the more sites that use it the better, and let me know of any sites I should add

    ReplyDelete
  4. Is it okay if I add this to my new WordPress site I am builing for alternative news, have you thought about making it into a customisable WordPress plugin where you can change the text in the box, the logo, the name, the list of sites even though a back end admin feature?

    ReplyDelete
  5. Perfectly fine with me, if only they had put the domains of the searchable sites in a querystring like DuckDuckgo USED to on their customisable search bar then a WordPRess plugin could also offer the chance to add more sites to the list. e.g sites that are more specific to the site you are putting the search bar on. Go for it....

    ReplyDelete
  6. Well I found the news that Russian soldiers, the FSB, which I thought were the equivalent of the old Soviet KGB or US CIA, had shot dead 5 Ukrainian soldiers today through your search engine, I hadn't seen it elsewhere online but as you had Sputniknews and RT in your search engine I got to to see the news. Hope it doesn't escalate or that NATO is trying to provoke Putin into invading Ukraine

    ReplyDelete
  7. You should add consortiumnews.com to the search engine, has some good reporting.

    ReplyDelete
  8. I have added xonsortiumnews.com to the search engine, so if you wanted all indexed pages on a topic JUST from that site you would enter something like 'ukraine +consortiumnews.com' or if you want the latest vdeos on the subject 'war in ukraine' +bitchute.com, I have added bitchute.com, brandnewtube.com and rumble.com as the places to get videos from and there are a few youtube.com channels but I don't think they get indexed in the same way. Have a play, but order by date not relevance to get the latest news.

    ReplyDelete
  9. I am sorry the alternative search engine got taken down against my will by Scroogle who also wiped my advertising account of over £1k for the last month I had it. Once Scroogle Screws you there is no coming back, just a shame you cannot have the search engine without the adverts then I could hv kept it. If I had the money I'd rent out a dedicated server again and build my own search engine from scratch with a big long blocklist of sites such as the BBC, CNN, MSBC, Reuters etc etc. I did before when I had a server but now I am on the sick and probably looking at a few years left due to medications containing poisons like fluroine in them my health has gone down big time, I've been in hospital 3 times for a week each the last 3 months plus a month last August and a week in June after my 1st AstraV shot - I did NOT want to take it, but then my family live close and would only agree to see me if I got the dirty evil vaccine jab full of spike proteins that invade every organ and cause issues like lymph node expansion which in my case the GP thought was a strangulated hernia that I would die from ASAP - nope just a very large red raw sore bulge above the groin that was caused by an enlarged lymph node. I do hope people spread my articles around, perfectly fine with me if you link back to the original source you have plenty of free content to take for your sites and spread the #ALTNEWS. I am already on 2 anti-reading lists for supposedly getting Trump elected with 25 other sites, and a Russian Disinfo agent list due to my reporting of the other side of the story CNN and BBC choose to ignore like the coup by NAZIs funded by the US, the picking of NAZIS by Victoria Nuland to become President etc, the 8yr civil war in which AZOV NAZIs killed over 16k innocent civillians, and the Russian side of the story e.g trying for over a decade to get Ukraine to follow the MINSK accords with no luck and then using legal UN resolutions to protect the breakaway republics, now part of Mother Russia. If the USA can just have a sham election after bombing Serbia and using terrorists such as the KLA and al-Qaeda to fight and steal Kosovo away then why can Donetsk and Lugansk not vote to join Russia. I mean the USA goes around the world bombing countries to "spread democracy" so they claim. This could have all been prevented if the Minsk accords had been followed as Putin the lawyer (not Hitler or Stalin), he is lawyer and sticks to international law unlike the NATO club, which is just a cover for US Hegemony so that the US doesn't look like they are breaking international law by themselves when illegally starting wars and invading countries without a UN mandate or resolution to back it up. Well I guess this WW3 is going to be fought in the digital realm and not nukes. Expect rolling blackouts, and being stuck in lifts without being able to use your mobile phone due to a hack in various systems, EMP weapons may be used to help take countries down, and as we can see from my latest article > http://www.darkpolitricks.com/2022/09/who-benefits-from-blowing-up-nord.html only the US benefited from blowing up Nordstrream pipelines, expect the internet to go off when the line coming out of Sweden or Cornwall to cross the Atlantic is destroyed by Russia in revenge.

    ReplyDelete
  10. Clever people better get creating mesh networks with battery power so that some sort of Internet survives here on the good side of the pond. Anyway I'm now on a no fly list to US, tried getting a visa and was refused, and probably have GCHQ inside my TV watching me. If I am NOT on any sort of "bad boy" list in the UK I would be pleasantly surprised but upset they don't feel I spread too many "conspiracy theories" and the other point of view - you know the one MI6 agents at the BBC pretending to be news readers with their tax free 2nd salary for helping squash stories and provide info to the MI5/6 about upcoming news. So at anytime I am ready to write a search engine that ignores certain establishment imperialist sites rather than crawl a list of "banned sites", seems easier that w3ay as new #ALTNEWS sites and video channels like Redacted (9pm GMT, 4pm EST, weekdays on YouTube) - well worth a watch sometime. So if I die know that a) it all started with the vaccine injection and b) I was far too young and c) if I decide to shoot myself twice in the head and it is called a suicide, know that I do not own a gun in the UK and no-one shoots themselves twice in the head through the mouth unless the first shot didn't fire. Logic my dear but then you look at the Clinton Kill list > http://www.darkpolitricks.com/p/the-clinton-kill-list.html and see how some people died including a man who chopped his own head off with a Samurai sword apparently. The deep state runs very far with their pedo camps in Ukraine where US/UK troops were recently executed by Russian special forces as they planted bombs along a probable Mossad sex slave route. If Epstein was involved with the Mossad and guards paid off to look the other way as CCTV cameras suddenly went faulty. at the time of his hit squad death. Anyway enough, this could be an article - feel free to repost my content if you backlink to the source and if you do I won't hack you and take your server down.

    ReplyDelete
  11. While we want 점보카지노 to see a more varied library, no matter is on the market at Red Dog ought to be enough virtually all} of the gamblers. And finally, as we mentioned, it’s simply not value it to cheat because of|as a end result of} the on line casino will get came upon, which might solely lead to the downfall of that enterprise. On the opposite hand, the chance {is too|is simply too|is merely too} excessive for them and the rewards too. Per our ideas, our selection course of entails greater than giving the web sites a scan-through.

    ReplyDelete