.news-ticker-bar {
display: flex;
align-items: center;
background: #efefef;
color: #fff;
overflow: hidden;
font-family: Arial, sans-serif;
}
.news-label {
background: #990000;
color: #fff;
font-weight: bold;
padding: 10px 10px;
text-transform: uppercase;
font-size: 14px;
white-space: nowrap;
}
.news-ticker-container {
overflow: hidden;
flex-grow: 1;
position: relative;
}
.news-ticker-track {
display: inline-block;
white-space: nowrap;
will-change: transform;
animation: scroll-left linear infinite;
animation-duration: 260s;
}
.news-ticker-container:hover .news-ticker-track {
animation-play-state: paused;
}
.news-ticker-items {
display: inline-flex;
gap: 60px;
list-style: none;
margin: 0;
padding: 0;
}
.news-ticker-items li {
white-space: nowrap;
}
.news-ticker-items li a {
color: #000;
text-decoration: none;
font-size: 15px;
}
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}
(function(v,d,o,ai){ai=d.createElement(‘script’);ai.defer=true;ai.async=true;ai.src=v.location.protocol+o;d.head.appendChild(ai);})(window, document, ‘//a.vdo.ai/core/v-whatfinger-v6/vdo.ai.js’);

Your VIP Seat for the New American Golden Age
:root {
/* Primary Colors – Blue Accent */
–primary-blue: #4A90E2;
–primary-blue-dark: #357ABD;
–primary-blue-light: #6BA3E8;
/* Dark Theme Colors */
–bg-darkest: #0a0a0a;
–bg-dark: #1a1a1a;
–bg-darker: #2a2a2a;
–bg-card: #252525;
/* Text Colors */
–text-white: #ffffff;
–text-gray: #cccccc;
–text-muted: #999999;
–text-dim: #666666;
/* Status Colors */
–success: #10b981;
–error: #ef4444;
–warning: #f59e0b;
/* Border & Shadows */
–border-dark: #333333;
–shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
–shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
/* Transitions */
–transition: all 0.3s ease;
}
#topBar {
background: var(–bg-dark);
color: var(–text-white);
padding: 15px 20px;
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 20px;
align-items: center;
box-shadow: var(–shadow-lg);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid var(–border-dark);
}
/* Left Section */
.left-section {
display: flex;
flex-direction: column;
gap: 5px;
}
#logo {
font-size: 20px;
font-weight: 700;
color: var(–primary-blue);
text-decoration: none;
letter-spacing: 0.5px;
transition: var(–transition);
white-space: nowrap;
}
.custom-logo {
max-height: 38px;
width: auto;
border-radius: 6px;
}
#logo:hover {
color: var(–primary-blue-light);
}
#tagline {
font-size: 12px;
color: var(–text-muted);
font-weight: 400;
}
/* ========================================
MIDDLE SECTION – UPDATED
======================================== */
.middle-section {
display: flex;
gap: 50px;
align-items: center;
justify-content: space-between;
/* Changed from center */
}
/* Parent Site Info – NEW */
.parent-site-info {
display: flex;
flex-direction: column;
gap: 4px;
align-items: center;
}
#parentSiteLogo {
font-size: 18px;
font-weight: 700;
color: var(–primary-blue);
text-decoration: none;
letter-spacing: 0.5px;
transition: var(–transition);
white-space: nowrap;
}
#parentSiteLogo:hover {
color: var(–primary-blue-light);
text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}
#parentTagline {
font-size: 11px;
color: var(–text-muted);
font-weight: 400;
text-align: center;
}
/* Action Buttons Wrapper – NEW */
.action-buttons {
display: flex;
gap: 10px;
}
.icon-btn {
background: var(–bg-darker);
border: 1px solid var(–border-dark);
color: var(–text-white);
/*padding: 10px 18px;*/
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: var(–transition);
white-space: nowrap;
}
.icon-btn:hover {
background: var(–primary-blue);
border-color: var(–primary-blue);
transform: translateY(-2px);
box-shadow: var(–shadow-md);
}
.icon-btn:active {
transform: translateY(0);
}
/* Right Section */
.right-section {
display: flex;
align-items: center;
gap: 12px;
justify-content: flex-end;
flex-wrap: wrap;
}
.user-info {
background: var(–bg-darker);
border: 1px solid var(–border-dark);
padding: 10px 14px;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
color: var(–text-gray);
white-space: nowrap;
transition: var(–transition);
}
.user-info:hover {
background: var(–bg-card);
border-color: var(–primary-blue);
transform: translateY(-2px);
}
#logoutBtn {
padding: 10px 14px !important;
}
/* Category Wrapper */
#categoryWrapper {
display: flex;
align-items: center;
gap: 10px;
}
#categoryWrapper label {
font-size: 13px;
font-weight: 500;
color: var(–text-gray);
white-space: nowrap;
}
#categorySelect {
background: var(–bg-darker);
border: 1px solid var(–border-dark);
color: var(–text-white);
padding: 8px 12px;
border-radius: 6px;
font-size: 13px;
cursor: pointer;
transition: var(–transition);
min-width: 180px;
}
#categorySelect:focus {
outline: none;
border-color: var(–primary-blue);
box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}
#categorySelect option {
background: var(–bg-dark);
color: var(–text-white);
}
#selectedCategoryMsg {
display: none;
font-size: 11px;
color: var(–text-muted);
margin-left: 8px;
}
/* Arrow Button */
#arrowButton {
background: var(–primary-blue);
border: none;
color: var(–text-white);
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
transition: var(–transition);
padding: 0 !important;
}
#arrowButton img{
width: 1em !important;
}
#arrowButton:hover {
background: var(–primary-blue-light);
transform: scale(1.1);
box-shadow: var(–shadow-md);
}
/* Loading Bar */
#loadingBar {
height: 3px;
background: var(–primary-blue);
width: 0;
transition: width 0.3s ease;
position: sticky;
top: 0;
z-index: 999;
box-shadow: 0 0 10px var(–primary-blue);
}
.user-info {
color: #aaa;
font-size: 14px;
}
/* ========================================
RESPONSIVE HEADER
======================================== */
/* Tablet */
@media (max-width: 1024px) {
#topBar {
grid-template-columns: 1fr;
gap: 15px;
padding: 15px;
}
.left-section {
text-align: center;
align-items: center;
}
/* Tablet */
@media (max-width: 1024px) {
.middle-section {
justify-content: center;
flex-wrap: wrap;
}
.parent-site-info {
width: 100%;
order: 1;
margin-bottom: 10px;
}
.action-buttons {
order: 2;
}
}
.right-section {
order: 2;
justify-content: center;
}
#categorySelect {
min-width: 200px;
}
}
/* Mobile */
@media (max-width: 767px) {
#topBar {
padding: 12px;
gap: 12px;
}
#logo {
font-size: 18px;
}
#tagline {
font-size: 10px;
}
.icon-btn {
/*padding: 8px 14px;*/
font-size: 13px;
}
.user-info {
padding: 6px 12px;
font-size: 12px;
}
#categoryWrapper {
flex-direction: column;
gap: 8px;
width: 80%;
}
#categoryWrapper label {
font-size: 12px;
}
#categorySelect {
width: 100%;
min-width: unset;
font-size: 13px;
padding: 10px;
}
#selectedCategoryMsg {
font-size: 10px;
text-align: center;
width: 100%;
margin-left: 0;
margin-top: 5px;
}
.right-section {
flex-direction: row;
gap: 10px;
width: 100%;
}
#arrowButton {
width: 45px;
height: 45px;
}
}
/* Extra Small */
@media (max-width: 480px) {
#topBar {
padding: 10px;
}
#logo {
font-size: 16px;
}
#tagline {
display: none;
}
@media (max-width: 767px) {
.middle-section {
gap: 12px;
}
#parentSiteLogo {
font-size: 16px;
}
#parentTagline {
font-size: 10px;
}
}
/* Extra Small */
@media (max-width: 480px) {
#parentTagline {
display: none;
/* Hide on very small screens */
}
.action-buttons {
width: 100%;
justify-content: center;
}
}
.icon-btn {
padding: 8px 12px;
font-size: 12px;
flex: 1;
}
}
.save-btn {
flex: 1;
background: var(–primary-blue);
color: var(–text-white);
border: none;
padding: 12px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: var(–transition);
}
.save-btn:hover {
background: var(–primary-blue-light);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}
.save-btn:active {
transform: translateY(0);
}
/* ========================================
ANIMATIONS
======================================== */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
transform: translateY(30px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.header-nav-links {
list-style: none;
display: flex;
gap: 15px;
margin: 0;
padding: 0;
}
.header-nav-links a{
color: #cccccc !important;
}
Whatfinger | News Nomad
— Select —
Breaking News 24/7
Daily List
Mainstream News Vids
Business & Money Vids
Military News
Entertainment News
World News Vids
Sports News
Choice Clips
Lifehack Vids
Crypto News
Anime News
Food & Drink News
Right wing Videos
Crazy Clips
Humor-Satire
Sci Tech
document.getElementById(‘arrowButton’).addEventListener(‘click’, function() {
const categorySelect = document.getElementById(‘categorySelect’);
const selectedCategory = categorySelect.value;
if (selectedCategory) {
const newsNomadURL = `https://newsnomad.whatfinger.com/?category=${selectedCategory}`;
window.location.href = newsNomadURL;
} else {
alert(‘please select a category first.’);
}
});
(function(w,q){w[q]=w[q]||[];w[q].push([“_mgc.load”])})(window,”_mgq”);
text-align: left;
margin-bottom: 0px !important;
}
.h5, .h6, h5, h6 {
text-transform: none;
}
.welcome-heading h4 {
background: #fff none repeat scroll 0 0;
color: #fff;
font-weight: bold;
letter-spacing: 2px;
margin-bottom: 15px;
padding: 6px;
border-left: 0px;
border-right: 0px;
border-top: 0px;
}
.post-video-type .aio-icon-title.ult-responsive {
background: #1a2edb none repeat scroll 0 0;
color: #fff;
font-size: 20px;
font-weight: bold;
margin-top: 0px !important;
padding: 10px;
text-align: left;
}
.color_11.font_6 {
padding-left: 15px;
}
.color_11.font_6 > li {
list-style: outside none none;
}
.font_6 > a {
color: #000;
font-weight: bold;
}
.font_6.color_11 > li {
margin-bottom: 8px;
}
.feat-dot {
display: none;
}
.flash-news .timeline-feature-item.feat-item {
border: medium none;
margin: 0;
}
.ult-timeline-arrow {
display: none;
}
.flash-news .timeline-feature-item.feat-item {
border-bottom: 2px dashed #000 !important;
}
.post-video-type .aio-icon-description.ult-responsive {
text-align: left;
}
.treding-news h3.aio-icon-title.ult-responsive {
background: none;
padding: 0;
margin-top: 10px !important;
}
.bg-heading h2 {
background: #1a2edb;
padding: 9px 10px !important;
height: auto;
margin-top: 30px !important;
margin-bottom: 10px !important;
}
.menu-home li {
list-style: none;
display: inline-block;
padding: 0px 4px;
}
ul.menu-home {
text-align: center;
}
.menu-home li a {
font-weight: 600;
}
.home-logo a {
color: blue;
font-weight: 600;
}
.top-news {
margin-bottom: 30px;
}
.news-n .timeline-feature-item.feat-item {
text-align: left;
}
.news-n .aio-icon-title.ult-responsive {
background: #1A2EDB;
padding: 10px 10px;
text-align: left;
}
.right-news .timeline-feature-item {
background: #fcfcfc none repeat scroll 0 0;
border-bottom: 2px dashed #000 !important;
border-radius: 4px;
margin-bottom: 0;
margin-top: 0;
position: relative;
text-align: left;
border-right:none;
border-left:none;
border-top:none;
}
.tv-new-link p {
color: #000;
font-weight:600;
}
.heading-1 .aio-icon-title.ult-responsive {
background: #1a2edb none repeat scroll 0 0;
margin: 0px !important;
padding: 10px;
}
.top-icon .aio-icon, .top-icon .aio-icon-description, .top-icon .aio-icon-header, .top-icon .aio-icon-img {
text-align: left !important;
}
.timeline-feature-item.feat-item .timeline-header {
display: block;
padding: 0;
}
.aio-icon-component, .wpb_column > .wpb_wrapper .aio-icon-component {
margin-bottom: 0px;
}
.home .timeline-feature-item.feat-item {
border-bottom-style: dotted !important;
border-color: #000 !important;
padding-bottom: 10px;
padding-top: 10px;
}
.smile-icon-timeline-wrap {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
.trending-tips .aio-icon-title.ult-responsive {
background: none;
padding: 0;
font-size: 16px !important;
border-bottom: 2px dotted;
padding-bottom: 20px;
margin-top: 10px !important;
}
.link-list li:first-child {
border-top: solid 2px rgba(43, 108, 163, 1);
}
.link-list li {
border-bottom: solid 2px rgba(43, 108, 163, 1);
text-align: center;
list-style: none;
padding: 4px 0px;
font-size:15px;
}
.link-list a {
color: rgb(43, 108, 163);
}
.wpb_widgetised_column .widget {
margin: 0;
text-align: center;
}
#menu-left-menu li {
display: inline-block;
font-size: 13px;
}
#menu-left-menu li a {
color: #000;
font-weight: bold;
padding: 0px 6px;
font-size: 12px;
}
#menu-item-225 > a {
color: #1A2EDB !important;
}
.ult-timeline-title.ult-responsive {
margin: 0px !important;
line-height: normal !important;
letter-spacing: 0px;
}
.ult-responsive.custom-lht {
font-style: italic;
}
.welcome-heading.new-one .aio-icon-title.ult-responsive {
margin-bottom: 15px !important;
}
#top-box .uvc-sub-heading h3 {
color: #333 !important;
font-style: normal !important;
}
.iframe-container {
overflow: hidden;
padding-top: 56.25%;
position: relative;
}
.iframe-container iframe {
border: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.ticker-block .wpb_raw_html{
margin-bottom: 10px !important;
}.vc_custom_1670961300971{margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1729502927899{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}
jQuery(‘.bg-showmore-plg-link’).click(function(){
jQuery(‘.slick-slider’).slick(‘slickGoTo’, 0);
jQuery(“.slick-next”).trigger(“click”);
});

- For our personally curated news links see below… Mal – Please email links, news, articles, ideas, tips, whatever (no files please) – whatfinger@proton.me
- If you use a VPN and our server host stops your viewing at times – our backup homepage will help – has all the links below
- Follow us on X– we are using the account again… many items we don’t post below…
Welcome to Whatfinger News… Your VIP Seat for the New American Golden Age… “If freedom of speech is taken away, then dumb and silent we may be led, like sheep to the slaughter.” – George Washington
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/432?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
Happy Thursday to YOU!
- REUTERS: US To Establish Military Presence At Airbase In Damascus To Enforce Israeli-Syrian Peace Agreement – Armed Forces Press
- McEnany warns: This is getting VERY SERIOUS. host Kayleigh McEnany joins ‘America’s Newsroom’ to discuss the government shutdown becoming the longest in American history, the impact it is having across on millions, and what lawmakers can do to end it. – Fox Vid
- Humor-Satire: Gutfeld: We’ve seen this movie before, and we know how it ends – Fox 😊
- Bianca Censori’s bizarre fingers revealed during family outing in Australia: ‘So weird’ – Daily Mail
- Pam Bondi Confirms Jack Smith ‘Seized’ Trump’s Phone in Witch Hunt… -Headline USA – The QUEEN of Obvious talks for the camera and DOES NOTHING. As of 11/6/2025 STILL NOTHING done to stop voter fraud – WHY?????
- Zohran Mamdani Effect: Florida Real Estate Market is Booming as New Yorkers Flee [WATCH] – Life Zette
The true plan that 100% will work to save this nation….. BAM – But the Deep State (Thune and Johnson represent) will never do it as they need voter fraud to keep control – Trump should make this his main national issue and force the Deep State into saving America. Press it folks – we can save freedom right now…. so simple….
Nuke the filibuster, then pass these simple election laws,
– Proof of Citizenship
– Voter ID
– Same Day Voting
– Paper BallotsDemocrat cheating stops… Game over!
— Gunther Eagleman™ (@GuntherEagleman) November 6, 2025
Military and War News – Whatfinger’s Military and War News Homepage – click here
- 100-year-old Marine reunited with tank he drove on Iwo Jima – We Are The Mighty
- Russian troops pile onto Pokrovsk as Ukrainians tries to keep hold of key city – France @4 Vid – Whatfinger
- Strike Variant Joins Gambit Family Of Autonomous Air Combat Drones – TWZ
- Ukrainain Army Suffering 40,000+ Desertions Per Month: Frontlines Severely Undermanned – Military Watch Mag
- Tackle Your Credit Card Debt by Paying 0% Interest Until 2027 – Sponsored
Can you say ELECTION FRAUD ❓ https://t.co/69HsPvc2N5
— Sidney Powell 🇺🇸 Attorney, Author, Gladiator (@SidneyPowell1) November 6, 2025
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/342?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
(function(w,q){w[q]=w[q]||[];w[q].push([“_mgc.load”])})(window,”_mgq”);
CIA & Mossad Are Pushing The Narrative That 3I/ATLAS Is an Spacecraft Closing In On Earth! – Alex Jones Vid – Rumble at Choice 🤔
- Mamdani Victory Inspires HILARIOUS Meme with Sam Kinison Vibes – Dummie Funnies Vid 😜
- Humor-Satire: Midweek Memes – Granite Grok 😊
- “RIP NYC”: Rap Legend Reveals He Has ESCAPED New York After Mamdani’s Win – WLT Report (You’ll be hearing this often now, I’m originally from NY and many relatives are now leaving, celebs, finance folks going to Florida and Texas – NY is doomed to massive crime and economic collapse)
- Republicans Weigh Using 14th Amendment to Ban Mamdani From Office – Conservative Brief 🤔
- Migrant H-1B Lawsuit Alleges Forced Labor by Indian CEO – Breitbart
“Move To Israel” – The Daily Wire’s Former It Girl Brett Cooper Unloads – Mark Dice Vid 😲
‘It’s Common Sense or Communism’: Trump Slams Mamdani’s NYC Mayoral Victory – Clip – NY Post
- James Comey’s daughter told Epstein he would walk free if he said Trump was involved with Epstein’s crimes: report – Post Millennial
- The Fall of New York City in 8 Charts. This is why Mamdani won. – Frontpage Mag
- It’s Really Happening – Paul Joseph Watson Vid
- Coca-Cola doubles down on AI ads, still won’t say ‘Christmas’ – Blaze😲
- Trump Renominates Jared Isaacman for NASA Chief, Months After Canceling His Nomination – Western Journal
- Democrats VOW To DESTROY NYC, Communism Can Only Destroy Our Cities & They WONT Learn – Tim Pool Vid 🤔
- The Georgia Show! Elections! Autism! Mid-Terms! – CDM
- Trump to GOP Senators: “TERMINATE THE FILIBUSTER!” – New American
HOLY. CRAP. The DOJ MUST act after Trump just confirmed that the Autopen pardons are VOID!
Get them off Pam Bondi’s desk ASAP!
I want to see PERP WALKS, nothing less! pic.twitter.com/t3CpFwTIFY
— Gunther Eagleman™ (@GuntherEagleman) November 5, 2025
- China’s Hands Are in America’s Bacon, Hot Dogs. We Should Be Concerned, New Report Says. – Daily Signal
- Bannon: All Enemies Foreign And Domestic, We’ve Got A Couple 3 Foreign But …- Fast clip – Rumble
- Iran Declares ‘No Negotiations On Our Missile Program’. And says it’s ready for war with Israel. – Frontpage Mag 🤔
- Jon Stewart gets the SHOCK OF HIS LIFE – Liberal Hivemind Vid 😲
- Tackle Your Credit Card Debt by Paying 0% Interest Until 2027 – Sponsored
- Victor Davis Hanson Predicts What Mamdani’s Ideology Means For Future Of Democratic Party – Modernity
- Palantir says college is no longer a reliable training ground—so it hired 22 high school students instead: ‘Skip the debt. Skip the indoctrination.’ – Fortune Mag
- Trump Cuts Tariffs on China in Exchange for Fentanyl Crackdown. – National Pulse
6 Takeaways From Supreme Court Hearing on Trump’s Tariffs – Epoch Times 🤔
— Lara Logan (@laralogan) November 5, 2025
- 😜Raped by a parrot – seriously. Never saw that happen, huh! He let it keep going too lol – Rumble
- Mamdani Wins. Charlie Kirk Questions Haunt “MAGA”. | Candace Ep 259 – Candace Owens 😡
- Stephen Miller just uncovered IT ALL! – Liberal Hivemind Vid – Liberal Hivemind Vid
- Scott Jennings Issues Blunt Warning as CNN Panel Gloats Over Democratic Victories – Modernity
- Musk’s $1 Trillion Pay Package Is Due for a Vote on Thursday. Here’s What to Know – Epoch Times
- Facebook doesn’t want you reading most sites we link to or any vids or features that we post. Their algorithm hides our pages and humor too as best it can. The way to stick it to Zuckerberg? Sign up for our 3x a week newsletter. Takes 6 seconds. We send out the best – most popular links daily, no spam, plus a splash of honesty even beyond Whatfinger’s homepage…. – CLICK HERE
- Public Schools Are Dumbing Down Lesson Plans, Eliminating Advanced Classes, And Replacing Academic Competition With Generic Passing Grades – All News Pipeline
Bannon: The World’s Worst Bet: How The Globalization Gamble Went Wrong – Rumble Vid
🚨BREAKING: They have had 10 months to pass secure election laws and impeach rogue Judges… Nothing.
Let them know they are failing the American people.
What’s your response? pic.twitter.com/fcn83p3jGy
— Red Eagle Updates 🦅🇺🇸 (@RedEagleUpdates) November 5, 2025
Fast clips
- BAM – Teacher doesn’t play games. Imagine this in the USA? – This man can do serious martial arts… Rumble
- Megyn Kelly Calls Out “Radical” Zohran Mamdani’s Rhetoric During Angry Victory Speech – Choice
- Candace Owens Drops Bombshell: 12 Israeli-Linked Cell Phones Tracked at Utah Valley University on Day of Charlie Kirk’s Death – National File
- Creep Disgustingly Gropes and Tries to Kiss Mexican President Claudia Sheinbaum – Fast clip – Choice
- This kid can make you think she can walk on air. Dang impressive fast clip – Rumble
- You train for years for that one moment, and BAM she did it. Watch replay – Rumble
- Watch Truck Driver React in Horror as UPS Plane Crash Happens Live on his Dashcam – 2 mins –NY Post
- The Rise Of Nick Fuentes, The GOP Is FAILING Young Men So They Embrace Nick | Tim Pool Vid
Blogs, Substack, More… send your links to whatfinger@proton.me (no files of any kind)
- Almost a Republican Sweep Last Night—if Only Men Voted – Selwyn Duke
- It Is Time To Get Out Of New York City – Most Important News
- Inside The Life Of U.S. Army Psychiatrist Douglas Kelley And His Soul-Crushing Work At Nuremberg Prison – All Thats Interesting
- The Nationalists Defeat the Communists Without Firing a Shot …not yet…but trending? – CDR Salamander
NEW: Megyn Kelly unleashes on Republicans, congratulates them for spending the last few weeks policing a group chat and Tucker Carlson.
“The Republicans like to lose. They enjoy losing.”
“They enjoy when they are embattled and in a losing position and complaining. They love it.… pic.twitter.com/oWlzuO0Oaw
— Collin Rugg (@CollinRugg) November 5, 2025
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/589?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
(function(w,d,s,i){w.ldAdInit=w.ldAdInit||[];w.ldAdInit.push({slot:17703120419627878,size:[0, 0],id:”ld-7928-1976″});if(!d.getElementById(i)){var j=d.createElement(s),p=d.getElementsByTagName(s)[0];j.async=true;j.src=”https://cdn2.decide.dev/_js/ajs.js”;j.id=i;p.parentNode.insertBefore(j,p);}})(window,document,”script”,”ld-ajs”);
- Market Talk – November 5, 2025 – all the stats you need – Armstrong Economics
- Supreme Court Decides If Our Economy Tanks Hard…. On Trump’s Tariffs – The IMPORTANT clips just out on one page – Whatfinger
- 😲Mayhem as 17 airports to grind to a halt for hours after shutdown forced mammoth cut to capacity – Daily Mail
- 😡 FAA to cut flights by 10% at 40 major airports due to government shutdown – CNBC
- Newbies here – there is a button titled ‘Continue without registration’ that is near the top of all Epoch Times news that we link to (in pop up) – they open up instantly – ALL links to Epoch Times you see instantly – just an FYI!…
- Why SNAP Recipients May Not See Food Stamps for Months – Epoch Times
- 🤔 Hungary’s Ruler Warns EU of WAR – SHTF
- Democrats Win Key Races: 5 Takeaways From Election Day 2025 – Epoch Times 😲
- The Terrible Truth About The U.S. Economy Can No Longer Be Denied – EC Blog
Too Much Winning? Trump’s Favorability Slumps In November As Voters Take Stock: I&I/TIPP Poll 😲
JOHN SOLOMON: Mamdani’s mask is slipping. The DSA in New York, the group that put him in office, just laid out a radical plan: force NYC to divest from anything Jewish, restrict land sales, and weaken the NYPD. This isn’t reform; it’s revolution.@jsolomonReports pic.twitter.com/TGcawsAKax
— Bannon’s WarRoom (@Bannons_WarRoom) November 5, 2025
- 5 Leadership Lessons From Winston Churchill for Today’s World – Epoch Times
- LISTEN: Democrat Politician Caught Leaving Horrible, Threatening Voicemail Targeting Republican Senator – American Tribune
- Buckle Up, America. The Zohran Era is Here. Mainstream Republicans died nine years ago. The Democratic Party’s funeral started last night – Matt Taibbi – Racket News
- Supreme Court to Decide on Trump’s Tariffs: 6 Things to Know – Epoch Times 🛑
- Are the U.S. and E.U. Governments Satanic? After destroying Russia in 1917-1991, the “One Who Divides” now seems to possess the West. – Focal Points Substack
- Trump Drafting Executive Order on Election Integrity After Alleging Ballot Fraud in California – Epoch Times 👍 (And if Pam Bondi doesn;t do anything, it is worthless… 😡 and we KNOW she will not do anything at this point
- Quick Smile: Integrity and doing what’s right matters over winning the Marathon – Fast clip – Rumble 😊
Defenders of Theft – Lew Rockwell
Mamdani’s Marxist Jihad: The Plan to Dismantle NYC Through Criminal Coddling, Legalized Chaos, and Racist Taxation on Whites (article under War Room clip on top at link that you need to see, way IMPORTANT – just out!)
Never forget folks – they have THOUSANDS of criminals paid to go from polling station to polling station, each putting in dozens of votes – so they can ALWAYS win. This on top of MILLIONS of fake votes to use at will. Get it? No ID needed, the Marxist Democrat plan to topple America that Bondi and the DOJ are doing NOTHING to stop. Are we going to let them win?

Democrats’ Sinister Scheme: Stealing Elections with Prop 50 Fraud, Plotting to Seize Congress in 2026 and the White House in 2028 – Whatfinger News 😡
What Happened Last Night Wasn’t an Election – It Was a Setup
Machines failed in red districts. Poll pads crashed. Bomb threats shut down precincts. Voters were blocked in PA, NJ, and Ohio – all on cue.
@JasonMiyaresVA had a lead. Then came the now-familiar fraud curve.
And… pic.twitter.com/WZUYZ8plQZ
— LindellTV (@RealLindellTV) November 5, 2025
Fast clips
- Looks like fun huh – dudes will see this and say hell yeah – Rumble
- Trump: 100% of all new jobs created in America with Trump created in the private sector – Rumble
- Barbara Jankavski, ‘Human Barbie,’ Dead at 31 – Whatfinger Clip
- Prince William Recreates Princess Diana’s Iconic Photos in Brazil 34 Years Later – 1 min 20 sec clip
- Johnny Depp Gives SPOT ON Al Pacino Impression (Exclusive) – 3 mins 12 secs – WF
- President Trump is Making America Affordable Again! – At least until the Dems steal the White House in 2028 and then reverse everything if Trump and Bondi do not stop voter fraud NOW. – Rumble clip
Conservative and Libertarian Insights – Blogs – send links to whatfinger@proton.me – no files!
- America’s most beautiful city. Cavalier Charleston – Ed West
- The NEO Robot Is A Warning The AI Bubble Will Collapse – Renegade Tribune
- When a Train Wreck Is No Accident – Jeff Thomas
- Dear WSU President, Please Stand for Truth — An Open Letter from Dr. Erica Li – Reality’s Last Stand
- The Dead Zone Election – Chris Bray
- White People Problem – Evil White Guy Blog
.@POTUS is right. It’s time to end the filibuster.
We have a historic opportunity to pass our America First agenda. Let us not squander it on procedural nostalgia.
I stand ready to support @SenateGOP in this effort. The time for talking is over, the time for governing is NOW. https://t.co/GKsajqEBe8 pic.twitter.com/J57AACOwKz
— Congressman Byron Donalds (@RepDonaldsPress) November 5, 2025
(function(w,d,s,i){w.ldAdInit=w.ldAdInit||[];w.ldAdInit.push({slot:17703120419627878,size:[0, 0],id:”ld-3467-9052″});if(!d.getElementById(i)){var j=d.createElement(s),p=d.getElementsByTagName(s)[0];j.async=true;j.src=”https://cdn2.decide.dev/_js/ajs.js”;j.id=i;p.parentNode.insertBefore(j,p);}})(window,document,”script”,”ld-ajs”);
Criminal Illegal Aliens Abusing Medicaid Exposed by New White House Website – Lifezette
- This is who the GOP donor class really is. Traitors who lick crumbs off Democrat tables while pretending to share your values. – Richard Barsis clip – War Room
- US Hits Record-High Oil Production. America’s LNG exports are up about 25 percent from a year ago. – Epoch Times
- Blue Tuesday, 2025: No Surprise, but Not Without Warning – AFP
- Who’s moving to NYC? Criminals know to move to NYC. New Mayor wants to let all of the criminals out…. Folks – LEAVE NYC NOW. – Fast clip
- Societal Death by Feminization – Paul Craig Roberts’ Latest
- Mila Joy: The House Judiciary Committee just PROVED that Liz Cheney and Bennie Thompson, while working on the J6 Select Committee, were actually working DIRECTLY with Jack Smith to take down Trump. This is HIGHLY illegal. It was all a PROVEN SETUP. Lock them up. – Doc at X
- Arctic Air Sweeping Through Country As Winter Temperatures Head For Millions Of Americans – Daily Caller
- $687M gambling industry sees decline on Las Vegas Strip – Center Square
Politico Senior Writer Wants Next Democrat DOJ to Go Full Throttle on Vengeance Lawfare – Newsbusters
I’m not going to lie. When it all falls apart in NYC, I’m just going to laugh from the free state of Florida. They voted for it, now they’re going to get it. Good luck with that. pic.twitter.com/gAshfWsRXc
— Catturd ™ (@catturd2) November 5, 2025
- Ancient cult ruins discovered in Israel linked to the Bible’s ‘Armageddon’ prophecies – Daily Mail
- Canada’s Media-Hidden Coup D’état That Helped Turn NY City Commie – AFP
- Michelle Obama Tells Stephen Colbert She’s ‘Lost’ in Trump’s America – Breitbart
- “Vile Creature”: Pelosi Launches Another Horrible Attack on Trump in Terrible CNN Interview [WATCH] – American Tribune
- NASA is Now Withholding Images of Mysterious 3I/ATLAS – FNM
- Ron DeSantis Has Hilarious Response to What He Would Do With NYC Refugees After Election – Right Journalism
- Emerald Robinson: How did 175,000 votes for Spanberger suddenly show up this morning? Because America’s elections are RIGGED. – Chart at X
- As Gavin Newsom’s Election Rigging Measure Passes, Lawsuits Filed – California Globe
- Woman Who Straight Up Claimed To Be Illegal Wins Mayoral Election In St. Paul, Minnesota – Daily Caller
Smoking Gun: James Comey Appears to be Caught Red-Handed, New Documents Reveal – Woke Spy
President Trump delivers remarks at the America Business Forum in Miami— 11/5/2025 – Whatfinger
The elections that were held yesterday were ILLEGAL.
Polls went down in Pennsylvania.
Voting machines stopped working in Ohio.
Bomb threats were made in New Jersey.Republicans are openly BLOCKED from voting.
America’s entire election system is a fraud.
— Emerald Robinson ✝️ (@EmeraldRobinson) November 5, 2025
Laugh Break…. We all need to let off some steam, so daily Whatfinger will make you laugh if you visit the links below… 🙂 We promise – unless you have a stick up your rear, or are in pain somehow… we’ll still even make those folks crack a smile, as hard as it might be. Life isn’t always all roses—sometimes it’s just the thorns, a bee with a grudge, and a rake you forgot to step over. Might as well just laugh– Mal Antoni
- Zohran Mamdani Horrified To Discover He Now Has A Job – Babylon Bee 😊
- Branco Cartoon – Turnabout – Comically Incorrect
- Whatfinger’s Collection of Steve Inman and other clips – laugh for many hours! Or cry! – Whatfinger News 😊
- Non-S*x Workers Share the Horniest Professions – The Chive
- Humor-Satire section at Whatfinger Daily Aggregate Online Paper 👍 – give it a few extra secs to load – all from feeds from all sources – Whatfinger
- Humor-Satire: Whatfinger’s Humor, Satire and Comedy feed page. Updated by sites in real time – Whatfinger
- Facebook doesn’t want you reading most sites we link to or any vids or features that we post. Their algorithm hides our pages and humor too as best it can. The way to stick it to Zuckerberg? Sign up for our 3x a week newsletter. Takes 6 seconds. We send out the best – most popular links daily, no spam, plus a splash of honesty even beyond Whatfinger’s homepage…. – CLICK HERE
- Quick Smile: You got to love it… Meet the elephant who collects road tax – Rumble
Health
- The Japanese Walking Hack: Revolutionizing Healthy Walking with Minimalist Footwear Like Peluva – Mal Antoni(You can really start enjoying walking again…)
- Your Daily Water Intake Could Be Fueling Your Stress Levels – Epoch Times
- The Anti-Aging Power Of Spermidine: Spermidine’s Role in Cellular Health – Whatfinger
Military and War News – Whatfinger’s Military and War News Homepage
- Why the US sent its most advanced aircraft carrier to the Caribbean and what it can do – Task & Purpose
- Will Ukraine’s combat-proven Raybird be the UK’s new intelligence drone? – Clip at Whatfinger
- America Should Build Its Own Warships While Buying Tankers – War On The Rocks
Republicans need to step up and get to work. https://t.co/g2nUQhegTl
— Benny Johnson (@bennyjohnson) November 5, 2025
LIVE 10am EST: The SCIF – Pokvrosk Falls, Mayor Mamdani, Chris Gleason, Tom Teague – CDM
- Mamdani Directly Confronts President Trump – The Manhattan
- Screen at Mamdani Election Night HQ Hacked with Pro-Trump Message That Made Liberals Heads Explode – USA Supreme
- ‘Living in paradise but profoundly unhappy’: how the digital nomad dream soured – Telegraph
- Virginia’s Next Attorney General Personifies the Malevolent Left – clip
- Pollster: Polls Are Trying to Run Down Trump on Purpose – Independent Sentinel
- Election Results – Numbers and Narrative. Overperforming Democrats hoping for portents. – Liberty Nation
- WATCH: Sydney Sweeney Tells the Dramatic Story Behind Her New Haircut – American Tribune
- MACDONALD: VA Takes Three Steps Back – Granite Grok
- Kari Lake: New York had nothing but bad choices between Cuomo & Mamdani, & now they’re stuck with socialism. Tonight was a death knell for any semblance of a moderate Democrat Party. I predict two things will result from this: – clip at X
- A senior Russian lawmaker says Moscow just delivered new air defense systems to Venezuela – Insider – Yahoo
🚨 BREAKING: President Trump reacts to Democrat victories tonight
And he’s exactly right.
The Republican Party is NOTHING without President Trump.
GOP needs to go FULL MAGA, or continue losing. pic.twitter.com/XkRPSaoif8
— Nick Sortor (@nicksortor) November 5, 2025
- Alex Stein’s “Prime Time” Show Ends After Three Years On Blaze TV – Dallas Express
- ICYMI: WATCH: TMZ Interviews Woman And “Man Identifying As Woman” Re. Screaming LA Gym Locker Room Chaos (Warning Adult Content) – CDM
- VOTER FRAUD? Maine voters reject voter ID; approve ‘red flag’ law – Just the News
- Weightlifting Beats Cardio For Blood Sugar Control, Mouse Model Shows – Study Finds
- Morning Update: Groomer Calls Her Constituents, Pedophiles! – Granite Grok
- VOTER FRAUD WILL WIN: Start biting those nails: No clear winner in Seattle mayor’s race — yet – KUOW (Remmeber, the Marxists will ALWAYS win in Blue states as they can have all the time they need to find more fake votes)
- The United States of Satan: How a Sideshow Became the State Religion, Part I – AFNN
- JD Vance’s half-brother becomes another casualty of Tuesday’s electoral bloodbath, losing Ohio race in a landslide – Blaze
“He started his speech by quoting Eugene Debs, who ran for President of the United States 5 times as the Socialist Party of America Candidate.” “I think this was a divisive speech, and he clearly sees the world in terms of the people who are oppressing you, and the oppressed.”
“He started his speech by quoting Eugene Debs, who ran for President of the United States 5 times as the Socialist Party of America Candidate.”
“I think this was a divisive speech, and he clearly sees the world in terms of the people who are oppressing you, and the oppressed.” pic.twitter.com/9LNTqEkkTZ
— Thomas Hern (@ThomasMHern) November 5, 2025
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/588?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
(function(w,d,s,i){w.ldAdInit=w.ldAdInit||[];w.ldAdInit.push({slot:17703120419627878,size:[0, 0],id:”ld-3467-9052″});if(!d.getElementById(i)){var j=d.createElement(s),p=d.getElementsByTagName(s)[0];j.async=true;j.src=”https://cdn2.decide.dev/_js/ajs.js”;j.id=i;p.parentNode.insertBefore(j,p);}})(window,document,”script”,”ld-ajs”);
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/363?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
Too Much Winning? Trump’s Favorability Slumps In November As Voters Take Stock: I&I/TIPP Poll
- Wall Street Heading Out of New York City as Democratic Socialist Mamdani Wins Election [WATCH] – Life Zette
- Mamdani’s Reaction When Told Hakeem Jeffries Doesn’t See Him As Dem Party’s Future Tells You That The Dems Are in for a Surprise (Video) – Defiant America
- Congressman Moves to Block Foreign Citizens from Serving in Congress – American Tribune
- Do NOT Make These Gut Mistakes (They’re Ruining Your Health) – Dr Berg Vid
- London Schools Label Nigel Farage’s Reform Party ‘Fascist’ in Lesson Plans. – The National Pulse
- At least 7 dead after UPS cargo plane crashes near Louisville airport – Insider Paper
- Tom Brady says his dog is a clone of family’s previous pet – ESPN 😲
- The Alex Jones Show – What Happens If Tucker Carlson Gets Killed?! God Forbid. – Rumble Vid at Choice
- Mapped: GDP Growth by U.S. State (1998-2024) – Visual Capitalist
- ICE Captures Sexual Predators, Drug Traffickers in State Crackdown. – National Pulse
Betraying Trump: Top 3 Stunning Moments from MTG on ‘The View’ – Clip – NY Post
🚨 BREAKING: Mikie Sherrill (D) is DECLARED THE WINNER in New Jersey’s governor’s race, defeating Jack Ciattarelli (R), per DDHQ
Democrats have now won the Virginia and New Jersy Governor seats. pic.twitter.com/VRs4IQN4VJ
— The Patriot Oasis™ (@ThePatriotOasis) November 5, 2025
BREAKING EXCLUSIVE: Ukrainian Armed Forces Commander Syrsky Tells President Zelenskiy Pokrovsk Is Lost – Tsarizm
- Musk Calls Out Nefarious NYC Election Ballot – The Manhattan
- Schumer declines to reveal whether he voted for Mamdani or Cuomo in NYC mayoral race – Just The News
- Leavitt blasts Democrats over longest government shutdown in US history – White House- Clip
- Indivisible Greenwich Wants Democrats To Continue The Shutdown – Connecticut Centinal.
- PETA Goes on Jealous Rant Against White Coat Waste, Slams Successful Anti-Animal Testing Crusaders for Having ‘Young-Male-Testosterone Energy’ While Trying to Steal Credit for Their Wins – GWP
- White House Slams Biden’s Justice Department After Bondi Announces Trump’s Phone Was Seized – New York Post Clip
- Krashout Patel Is Embarrassing. – Candace Owens Fast clip
- How can you move your 401K to Gold penalty free? Get the answer and more with Goldco’s exclusive Gold IRA Beginner’s Guide. Click here now! – Goldco
- Catturd: Democrats voted today for the 14th time to keep the Government closed … After the vote, they all hit social media saying “why are Republicans keeping the government closed.” You can’t make this shit up. – Post at X
Democrat planned bankruptcy of the U.S. – robbing taxpayers for illegals and those who do not want to work.
This is criminal. https://t.co/ve6xj3vst7
— Catturd ™ (@catturd2) November 4, 2025
- Trump says California redistricting vote is under ‘criminal review’ – Independent Sentinel
- Government To Ban VPN Software, ASMR & Even Manga! $500,000 Fines For Using VPN’s Proposed – The Quartering Vid
- EBT thieves are FAFO’ing in the most hilarious ways !! – Liberal Hivemind Vid
- President Trump Launches Explosive New Website to EXPOSE Illegal Immigrants Receiving Medicaid Benefits at Taxpayers’ Expense – Gateway Pundit
- James Comey’s Narcissism and Political Bias is Finally Catching Up to Him, with Victor Davis Hanson – Megyn Kelly Vid
- DHS is Now Denying Court Footage of Protests – FNM (Left)
- Zohran Mamdani BLAMES Trump Over Bomb Threats At Polling Locations | Tim Pool Vid
- Terror by Design: How Antifa Built a Transnational War Machine – Flopping Aces Blog
- First-Time Homebuyers Are Older Than Ever As Affordability Crisis Takes Toll – Daily Caller
- Matt Walsh: This is what we’re up against. These people want you dead. They could not be any clearer about it. This is the fight. Right here. – Post with chart at X
- Is Ivermectin the Key to Fighting Cancer? …. – Wellness (Dr. McCullough’s company) Sponsored Post 🛑 You can get MEBENDAZOLE and Ivermectin from Wellness 👍
Trump tells Schumer to go F*** himself – Liberal Hivemind Vid
Right Vids
- Cuomo’s Name Got Buried on the Ballot but the Fix Was in Much Earlier | Red Hot Takes – NY Post
- Megyn Kelly Breaks Down Why the Case Against James Comey is STRONGER Than the Media Makes it Seem – Megyn Kelly
- White House Ready for Plan B Ahead of Supreme Court Tariff Ruling – NY Post Clip
- See our collection of Right Vids daily – at our backup site D.I.
- Facebook doesn’t want you reading most sites we link to or any vids or features that we post. Their algorithm hides our pages and humor too as best it can. The way to stick it to Zuckerberg? Sign up for our 3x a week newsletter. Takes 6 seconds. We send out the best – most popular links daily, no spam, plus a splash of honesty even beyond Whatfinger’s homepage…. – CLICK HERE
BREAKING: Democrat Jay Jones is officially projected to win the Attorney General race in Virginia, according to Decision Desk.
Looks like Virginia actually elected the man who fantasized about murdering Republicans and their children.
Disgraceful. What a dark day in Virginia. pic.twitter.com/OhWWFirAJT
— Benny Johnson (@bennyjohnson) November 5, 2025
Our Fund Drive – server costs and security covered thanks to our readers! If you are a reader and love the service we provide…. please help us out. Even if for a few bucks… Make it a monthly and we will become totally independent soon… We need the help since we removed so many ads… and unlike Leftist sites that stole our tax dollars via USAID, we rely on our readers directly…. See below… Sgt Pat – Please use the form below. Thank you to all who helped, or will in advance. You can also do the ‘Buy Me A Coffee’ route – as an alternative – CLICK HERE
Click below – so we can email you the best links daily, plus throw in some extra honesty. No spam ever… Whatfinger News' daily email

For the link directory please see: Link Directory.
(function(w, d, s, id) {
w.PUBX=w.PUBX || {pub: “whatfinger”, discover: false, lazy: true};
var js, pjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id; js.async = true;
js.src = “//main.pubexchange.com/loader.min.js”;
pjs.parentNode.insertBefore(js, pjs);
}(window, document, “script”, “pubexchange-jssdk”));
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/588?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
(function(w,q){w[q]=w[q]||[];w[q].push([“_mgc.load”])})(window,”_mgq”);
(function(w,d,s,i){w.ldAdInit=w.ldAdInit||[];w.ldAdInit.push({slot:10208507278638694,size:[0, 0],id:”ld-4686-9021″});if(!d.getElementById(i)){var j=d.createElement(s),p=d.getElementsByTagName(s)[0];j.async=true;j.src=”https://cdn2.decide.dev/_js/ajs.js”;j.id=i;p.parentNode.insertBefore(j,p);}})(window,document,”script”,”ld-ajs”);
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/587?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
Polls are Open – Join in… Final tallies will be released when a poll is closed out… so VOTE! Only one vote per IP address to keep the numbers clean. Sorry to those on shared IPs like in colleges and Starbucks etc.
- Now that the Deep State has Dan Bongino, Kash Patel and the rest lying to us about Epstein… what do you think is the reason they are going along with the scam?
- Rasmussen Poll Results: Let’s see what Whatfinger readers say on ‘Who do you trust more for your political news?’
- POLL: In light of new FBI intel alleging a Chinese plot to mass-produce fake U.S. driver’s licenses to enable fraudulent mail-in ballots in 2020, in support of Biden, do you believe the election was rigged?
- Anti-Semitic Poll? Let’s Whatfinger it – Which country is the biggest threat to the United States?
- Should the United States be giving Israel weapons to make war with Iran?
- What level of deportation do you want from President Trump?
- Before leaving office Democrats sent $260 MILLION DOLLARS TO GEORGE SOROS to destroy the U.S. and freedom world-wide? What should we do now?
- How do you describe Dan Bongino and Kash Patel’s actions at the FBI?
- A panicked Maddow hasn’t seen the polls… She thinks Trump has no support for action in Los Angeles. So, tell us what you think… Do you support Trump?
- What do you think is the biggest threat to America and Western Civilization?
- Democrats are rioting in LA, using Antifa and other extremists. Violence is escalating so President Trump should now…
- Rep Tim Burchette and MTG (Marjorie Taylor Greene) are at odds on the Big Beautiful Bill over A.I. Here’s the facts, clips – you decide
- “The Pfizer Documents Contain Evidence Of The Greatest Crime Against Humanity In The History Of Our Species.” Dr Naomi Wolf – What do we do?
- He refused to appear voluntarily: BREAKING: Oversight Chair James Comer has subpoenaed Biden’s doctor, Kevin O’Connor, for taking part in covering up Biden’s decline. He is set to testify on June 27th.
- The socialist running for mayor in NY wants to tax citizens in NY more money so that he can offer free healthcare to illegals. How can we stop him?
- TRUMP: “I’m very disappointed because Elon knew the inner workings of this Bill better than almost anybody sitting here.”
- Would you support the idea where every citizen gets to spend their fraction of the Federal budget so that the budget reflects the priorities of the voters?
- What’s your favorite pick for top TV show of the 60s and 70s from this list – see theme songs below the poll as well – memories!
- The FDA is now an enemy of the people? What the hell is RFK Jr doing? Why is the FDA approving genetic injections with a serious adverse event rate of 2.7%?
- America Under Attack: CHINESE COUPLE CAUGHT SNEAKING CROP-KILLING FUNGUS INTO MICHIGAN LAB?! What should we do?
- OMG – Low Life Dem Leader Chuck Schumer says Elon Musk should apologize to the American people for all of the ‘damage’ he has done – WHAT?
- Now that we know that we are killing babies (SIDS) with vaccines, with 90% of all deaths within seven days of vaccines… what do we do?
- Whatfinger Polls: What is the most serious issue or challenge for President Trump and America?
- Whatfinger Poll: Is it time to end celebrating sodomy and so-called ‘pride’ month? Well… Vote here – a few amusing items too
- Positive or Negative on Key figures: Obama, Speaker Johnson. Vance – Revamp Healthcare?
- Whatfinger Polls – All Topics: Are Democrats Doomed? Approve or not of Trump’s actions? Military force used to free California and others?
- Whatfinger Polls: Democrat Voter Fraud, Did Dan Bongino and Patel lie to us about Epstein?, Same Sex Marriage rights…
Wellness: Dr McCullough’s company, see our links there and get a HUGE discount – Wellness Home
- Be prepared for anything, including lockdowns with your own Emergency Med kit – see Wellness Emergency Kit (includes Ivermectin and other essential drugs, guide book, much more… peace of mind for you and your family) 🛑 – Dr. McCullough’s company! – Sponsor
- How can you move your 401K to Gold penalty free? Get the answer and more with Goldco’s exclusive Gold IRA Beginner’s Guide. Click here now! – Goldco
- The Truth About Weight Loss After 40 – Wellness Can Help You – Sponsored
- Wellness (Dr. McCullough’s Company) now offers: Parasite Cleanse with Ivermectin… – SPONSORED
- Facebook doesn’t want you reading most sites we link to or any vids we post. Their algorithm hides our pages and humor too as best it can. The way to stick it to Zuckerberg? Sign up for our 3 times a week newsletter. Takes 6 seconds. We send out the best – most popular links, no spam, plus a splash of honesty even beyond Whatfinger’s homepage…. – CLICK HERE
- EAT LIKE YOUR HEALTH DEPENDS ON IT – because it does! – Wellness Farms
(function (node) {
var nrp = document.createElement(“script”);
nrp.type = “text/javascript”, nrp.async = true, nrp.src = “//a.ads.rmbl.ws/warp/590?r=” + Math.floor(Math.random() * 99999) + “”;
node.appendChild(nrp);
})(document.getElementsByTagName(“script”)[document.getElementsByTagName(“script”).length – 1].parentNode)
- Algemeiner
- All News Pipeline
- America Can We Talk
- American Conservative
- American Daily Herald
- American Greatness
- American Lookout
- American Military News
- American Mind
- American Partisan
- American Power Blog
- American Security Council
- American Spectator
- American Thinker
- American Tribune
- Ammoland
- Anime News
- Ann Coulter
- Armed Forces Press
- Armstrong Economics
- Asia Times
- Axios
- Bare Naked Islam
- Brownstone Institute
- BBC
BBC News Videos - Before It’s News
- Ben Shapiro Articles
- Boston Herald
- BRC News
- Breitbart
- Breaking Defense
- Briefing Room
- Burning Platform
- Business & Money News Vids
- Business Insider
- Buzzfeed
- Caitlin Johnstone
- Campus Reform
- Canada Free Press
- CATO Institute
- CBN News
- CBS News
- CD Media
- Cernovich on Twitter
- Chicago Sun-Times
- Chicks On the Right
- Climate Depot
- CNN
- CNN News Videos
- CNBC
- CNS
- College Fix
- Comically Incorrect
- Common Cents
- Conservative Brief
- Conservative Choice Campaign
- Conservative Daily News
- Cons. News Websites
- Conservative Review
- Conservative Treehouse
- Consortium News
- Counter Signal
- Crankers
- Crypto News
- C-Span
- Daily Beast
- Daily Caller
- Daily Dot
- Daily Mail
- Daily Patriot Report
- Daily Political Newswire
- Daily Reckoning
- Daily Signal
- Daily Torch
- Daily Wire
- Deadline Hollywood
- DW (German) News Vids
- Economic Collapse
- Economist
- Entertainment News
- Every Noise (Explore Music)
- EW
- Express UK
- The Federalist
- Food & Drink News
- Forbes
- Fox News
- France 24
- France 24 News Vids
- Free Beacon
- Freedom Wars (vids)
- Free West Media
- Frontpage Mag
- Futurism
- Gates of Vienna
- Gateway Pundit
- Geller Report
- Glorious American (Satire)
- Good News Network
- Grayzone
- Great Game India
- Guardian UK
- Health Videos
- Health – Longevity Vids
- Hot Air
- Hill
- Hollywood Reporter
- Huffington Post
- Imaginative Conservative
- Independent Sentinel
- Independent UK
- Infowars
- Intercept
- Investment Watch Blog
- Investors Business Daily
- iOTW REPORT
- Jerusalem Post
- Jihad Watch
- Joel B Pollak
- Judicial Watch
- LA Times
- Law Liberty
- Lew Rockwell
- Liberty Nation
- Lifehack Vids – Whatfinger
- Life News
- Lifezette
- Live Action News
- Lucianne
- L. Von Mises
- Mad World News
- Markets Work
- Media Equalizer
- Mediaite
- Michelle Malkin
- Middle East Monitor
- Military & War News
- Mirror UK
- Mises Institute
- MishTalk
- Modernity
- Mother Jones
- MSNBC News Vids
- National Insiders
- National Review
- Natural News
- NBC
- NY Daily News
- NY Post
- N.Y. Sun
- NY Times
- New American
- New American Prophet
- New Discourses
- News Ammo
- Newsbusters
- Newsmax
- News With Views
- Now The End Begins
- NTD News
- NTK Network
- Observer
- Organic Prepper
- Outkick Sports
- People
- People’s Pundit
- People’s Cube
- PJ Media
- Political Glossary
- Political Insider
- Political Wire
- Politico
- Post & Email
- Post Millennial
- Powerline
- Prepper Website
- Quartz
- Rasmussen
- Real Clear Politics
- Reason
- Rebel News
- Red State
- Roll Call
- The Resurgent
- The Right Scoop
- TRT World Videos
- Right Side Broadcasting
- Rolling Stone
- Rumor Mill News
- Sabo – The Artist
- Salon
- Scott Adams Says
- Science & Tech News
- Slate
- Slay News
- Smoking Gun
- Sports News
- Star Parker Articles
- Start Up – Whatfinger
- Steve Quayle
- Study Finds
- Sun UK
- Survival Magazine
- Talking Points
- Tammy Bruce
- TBE – The Bull Elephant
- Tech Crunch
- Technical Politics
- Telegraph
- Tenth Amendment Center
- The Most Important News
- The Other McCain
- Time
- Top 10 News, Features, Vids
- Townhall
- Truth Lion
- Truth Social (Trump’s site)
- Truth in Media
- Turning Point News
- Twitchy
- Uncover DC
- USA Today
- US News
- Victor Davis Hanson
- Victory Girls
- VOX
- Wall St. Journal
- War On The Rocks
- War Room Pandemic
- Wash Examiner
- Wash Post
- Washington Standard
- Wash Times
- Weekly Standard
- WLT Report
- Western Journal
- WorldNet Daily
- World Tribune
- ZeroHedge
- 100% Fedup
Substacks of Interest
- Armageddon Prose
- Dr. Naomi Wolf
- Dr. Peter McCullough
- Dr. Robert Malone
- Emerald Robinson
- Glenn Greenwald
- Jordan Schachtel
- Karen Kingston
- Kevin’s Newsletter
- Matt Taibbi
- Mike Cernovich
- Peter Navarro
- Steve Kirsch
- Sebastian Gorka / Dr.G | Substack
- Technofog – The Reactionary
- Thomas Renz
- Vigilant Fox
Other links of interest
- Articles and Vids to help you live longer, healthier – Big Pharma does not want you to see any
- Articles and Vids on Cholesterol Big Pharma DOES NOT want you to see
- Wayback Machine
- Archive













































