AnnouncementsMatrixEventsFunnyVideosMusicAncapsTechnologyEconomicsPrivacyGIFSCringeAnarchyFilmPicsThemesIdeas4MatrixAskMatrixHelpTop Subs

Recently posted

Title: How Christian Nationalism PERVERTS The Teachings Of Jesus w/John Fugelsang (44:55) ~ The Jimmy Dore Show
Added:
Posted:
Topic: Religion
Type: link
User:x0x7
Title: Andy Anderson Will Will Never Stop Wearing Helmets
Added:
Posted:
Topic: Videos
Type: link
User:x0x7
Title: Garmarna - Herr Mannelig
Added:
Posted:
Topic: ModernFolk
Type: link
Title: To truly fix debanking, we need structural reforms
Added:
Posted:
Topic: Libertarian
Type: link

In the queue

User:x0x7
Title: 7 Surprising Disadvantages of Living in Monaco
Added:
Topic: Videos
Type: link
User:x0x7
Title: Can Normal People Live in Monaco?
Added:
Topic: Videos
Type: link
User:x0x7
Title: Why does Monaco Exist? | History Matters
Added:
Topic: History
Type: link
User:x0x7
Title: Geography of Monaco
Added:
Topic: Videos
Type: link
User:x0x7
Title: Charlie Kelly's Weird Diet
Added:
Topic: Videos, Funny
Type: link
User:x0x7
Title: How the Warm up according to a World Tour cyclist
Added:
Topic: Fitness
Type: link
User:x0x7
Title: How to train your lactate threshold
Added:
Topic: Fitness
Type: link
User:x0x7
Title: Amazon's "pick" of suggested T-shirt is a $90 t-shirt.
Text: Aka this is what Amazon suggests is a standard t-shirt. It's insane. There is a trend I've seen for a while that is if anything accelerating. As technology helps us make goods for cheaper, and as humanity gains more general affluence and prosperity, the trend gets larger. You can spend what you want on something. I buy high quality dress shirts for $15. It's cheaper than I can buy t-shirts at most places. I've become tempted to be a dress shirt only guy. That's not who I am. But if it costs exactly the same to wear and looks better why not? I guess because it's not as versatile as a t-shirt. In a t-shirt you can do anything without taking extra time to think about it? But why? If it all costs the same maybe I should work out in a dress shirt. lol. Then on the other end we have $90 t-shirts. Does it have anything premium about it that a cheap t doesn't. Probably. But probably you could get full coverage of any bonus qualities from to $30 tshirt. The real reason why it costs $90 is because people want to spend $90. And this is what makes it slightly more interesting. Amazon's "pick" is usually for value items. Pretty much correlates with what Amazon sees has volume. So unless Amazon is making an exception to their algorithm (the outcome we normally see from it), there is an insane volume of people buying $90 t's just because they want to spend $90. This also applies to tech. I have multiple servers but I've been thinking about migrating some stuff to a few instances of a $10 a year VPS. Meanwhile there are memes about people crying because they left an Amazon EC2 instance running for a day. Increasingly we live in a world where you choose your price, anyone you want, and you get the same exact thing no matter what. Not 100% true but to the extent that statement is on a spectrum of true and false, it is really pushing rightward toward the true side of the spectrum. And it's only going to become more and more the case. So everything is becoming cheaper and more expensive at the same time. That's a good thing. It means smart people can work less.
Added:
Topic: Insanity
Type: text
User:x0x7
Title: How to increase serotonin in the human brain without drugs
Added:
Topic: Health
Type: link
Title: Hiking through Enchanted Valley at Olympic National Park
Added:
Topic: Hiking
Type: link
User:x0x7
Title: Rammstein - Sonne [Chiptune]
Added:
Topic: Music
Type: link
User:x0x7
Title: What is the lamest thing someone has ever been canceled for?
Text: Maybe it will be me, from this site, for mentioning the existence of the differently mobile. Surely someone has been canceled for a reason that is dumber than anyone else.
Added:
Topic: AskMatrix
Type: text
User:x0x7
Title: A reminder to check your passwords
Added:
Topic: Tech
Type: link
User:x0x7
Title: This Vim movement game is actually hard
Added:
Topic: Tech
Type: link
User:x0x7
Title: Our Latest Release: Folding Fence Climbers
Added:
Topic: PenTesting
Type: link
User:x0x7
Title: I tested the Internet’s most popular Mosquito Repellents.
Added:
Topic: Outdoors
Type: link
User:x0x7
Title: The typical NodeJS project
Added:
Topic: Programming
Type: link
Title: Equality under the Hayekian Rule of Law
Added:
Topic: Economics
Type: link
Title: The Last Day of Barter and Questions for the First Day of Chartalism
Added:
Topic: Economics
Type: link
Title: America’s reliance on Boeing is a national security liability
Added:
Topic: Libertarian
Type: link
User:x0x7
Title: How elite special operations troops created a drug cartel
Added:
Topic: Libertarian
Type: link
User:x0x7
Title: Trump’s war on economic data is a dangerous move for MAGA’s own agenda
Added:
Topic: Libertarian
Type: link
User:x0x7
Title: The Federal Reserve rightly rejects Trump’s calls for lower interest rates
Added:
Topic: Libertarian
Type: link
User:x0x7
Title: Singing bowl + water = fun!
Added:
Topic: Videos
Type: link
User:x0x7
Title: Auto-hide Youtube videos over 20 minutes
Text: Tired of 30-minute rambles that say in half an hour what could be said in five? This userscript automatically hides any YouTube video over 20 minutes so your feed stays tight, relevant, and high-signal. Why the 20 minute mark? Because that is the exact point where to fit a video under 20 minutes careful planning a scripting is needed. This makes the content higher value in total, and indeed much higher value per second. Under 20 minutes the creator has to plan pacing. Over 20 minutes the creator has to exploit padding tricks. Remember, an entire television episode can fit in around 20 minutes. The limitation is planning not time. If it reaches over 20 minutes to share an opinion on a small and trivial thing = they didn't plan and their content is not worth your time. Give the userscript a try and see if you spend less time on low value, long length videos. ```javascript // ==UserScript== // @name YouTube: Hide 20+ Minute Videos // @version 1.0.0 // @description Auto-hides YouTube videos longer than 20 minutes. This reduces distraction from long winded clickbait, fixes pacing, and saves time. // @match https://www.youtube.com/* // @run-at document-start // @grant none // ==/UserScript== (function(){ var LIMIT = 20*60; var TIME_NODES = [ 'ytd-thumbnail-overlay-time-status-renderer span', 'span.ytd-thumbnail-overlay-time-status-renderer', '.badge-shape-wiz__text' ].join(','); var CARD_NODES = [ 'ytd-rich-item-renderer', 'ytd-video-renderer', 'ytd-compact-video-renderer', 'ytd-grid-video-renderer', 'ytd-playlist-video-renderer', 'ytd-playlist-panel-video-renderer' ].join(','); function addStyle(){ if (document.getElementById('yt-hide-long-style')) return; var s = document.createElement('style'); s.id = 'yt-hide-long-style'; s.textContent = '.yt-hide-long{display:none!important}'; document.documentElement.appendChild(s); } function parseSeconds(txt){ if (!txt || txt.indexOf(':')<0) return 0; txt = txt.trim().replace(/[^\d:]/g,''); var parts = txt.split(':'); var sec = 0; for (var i=0;i<parts.length;i++) sec = sec*60 + (parseInt(parts[i],10)||0); return sec; } function scan(root){ var els = root.querySelectorAll(TIME_NODES); for (var i=0;i<els.length;i++){ var t = (els[i].textContent||'').trim(); if (t.indexOf(':')<0) continue; var s = parseSeconds(t); if (s >= LIMIT){ var card = els[i].closest(CARD_NODES); if (card) card.classList.add('yt-hide-long'); } } } function start(){ if (!document.body) return setTimeout(start,50); addStyle(); scan(document); var mo = new MutationObserver(function(muts){ for (var i=0;i<muts.length;i++){ var a = muts[i].addedNodes; for (var j=0;j<a.length;j++){ var n = a[j]; if (n && n.nodeType===1) scan(n); } } }); mo.observe(document.body,{subtree:true,childList:true}); } start(); })(); ```
Added:
Topic: Userscripts
Type: text
Title: Marconi Union - Weightless
Added:
Topic: ChillMusic, Music
Type: link
Title: Scratch Made Bologna!
Added:
Topic: Cooking, DIY
Type: link
User:x0x7
Title: Play Zelda 1 online
Added:
Topic: Gaming
Type: link
User:x0x7
Title: Legend of Zelda (NES) Walkthrough Playlist
Added:
Topic: Gaming
Type: link
User:x0x7
Title: You've heard of Daddy Longlegs. I give you Mommy StepsAlot
Added:
Topic: QualityArt
Type: link
User:x0x7
Title: Language
Added:
Topic: Tech
Type: link
User:x0x7
Title: Flashbang!
Added:
Topic: Funny
Type: link
User:x0x7
Title: The things we could do with AI
Added:
Topic: Funny
Type: link
User:x0x7
Title: T-Rex Burger
Added:
Topic: Funny
Type: link
User:x0x7
Title: A simple guide to de-google
Added:
Topic: Tech
Type: link
Title: This time he asked
Added:
Topic: DadJokes
Type: link
Title: What does it mean?
Added:
Topic: Design
Type: link
User:x0x7
Title: Reuters says Reuters is Hamas
Added:
Topic: Dystopia
Type: link
Title: Human design
Added:
Topic: Design
Type: link
User:x0x7
Title: Criticisms of Carl Jung's Theory
Added:
Topic: Psychology
Type: link
User:x0x7
Title: Lost Keys/Rosetta Stoned Acoustic Cover - He even sang the siren part
Added:
Topic: Music
Type: link
User:x0x7
Title: Parabol/Parabola Acoustic cover
Added:
Topic: Music
Type: link
User:x0x7
Title: Cyberstress!
Added:
Topic: WeirdWorkouts
Type: link
User:x0x7
Title: Tiger Moves
Added:
Topic: WeirdWorkouts
Type: link
Title: Special Delivery!
Added:
Topic: Funny
Type: link
Title: I Made Meteorite Again, and It’s Usable This Time
Added:
Topic: Videos
Type: link
User:x0x7
Title: 5 Relaxing DOOM Mods & Wads
Added:
Topic: Gaming
Type: link
Title: Association of Ginseng Consumption With All-cause and Cause-specific Mortality Among Women: Shanghai Women’s Health Study
Added:
Topic: Health
Type: link
User:x0x7
Title: The Next 100 Years of Astronomical Events
Added:
Topic: Space, Videos
Type: link
User:x0x7
Title: Teens Paint Over Graffiti With Art Of Their Own
Added:
Topic: ImproveTheWorld
Type: link
User:x0x7
Title: China's Influence on Elections in New York
Added:
Topic: China
Type: link
User:x0x7
Title: The First Pyramid Scheme | Matthew McCleskey
Added:
Topic: Videos
Type: link
User:x0x7
Title: Enjoy some Doom ASMR: 1x1 - MAP02: Desolate Library (UV Tyson 100%)
Added:
Topic: Doom, Gaming, Videos
Type: link
Title: SHUT UP!
Added:
Topic: LinuxMemes
Type: link
User:x0x7
Title: Simple & Authentic Carne Asada Street Tacos (w/ red & green salsa)
Added:
Topic: Cooking
Type: link
User:x0x7
Title: Peder Severin Krøyer: Hip, Hip, Hurrah!
Added:
Topic: Art
Type: link
User:x0x7
Title: Michael Ancher: A Stroll on the Beach (1896)
Added:
Topic: Art
Type: link
User:x0x7
Title: Carl Locher, Mail Coach on Skagen Beach (c. 1890)
Added:
Topic: Art
Type: link
User:x0x7
Title: Marie Krøyer painted by her husband, Peder Severin Krøyer (1890)
Added:
Topic: Art
Type: link
User:x0x7
Title: Launching the Boat. Skagen, Oscar Björck, 1885
Added:
Topic: Art
Type: link
User:x0x7
Title: Fishing Cutters in the Moonlit Night, Carl Locher, 1888
Added:
Topic: Art
Type: link
User:x0x7
Title: The Lightship at Skagen Reef, Carl Locher, 1892
Added:
Topic: art
Type: link
User:x0x7
Title: Harvesters, Anna Ancher, 1905
Added:
Topic: Art
Type: link
User:x0x7
Title: Midsummer Eve Bonfire on Skagen Beach, Peder Severin Krøyer, 1906
Added:
Topic: Art
Type: link
User:x0x7
Title: An album of Danish art from Skagen
Added:
Topic: Art
Type: link
User:x0x7
Title: Thórarinn B. Thorlákson: Phingvellir, 1906. Oil painting. Listasafn Islands, Reykjavik
Added:
Topic: Art
Type: link
User:x0x7
Title: On Top of the World - Karen Margulis
Added:
Topic: Art
Type: link
User:x0x7
Title: Thorgrimur Andri Einarsson - Harpa
Added:
Topic: Art
Type: link
User:x0x7
Title: Kristinsson Morthens - Hinn Langa Leið Heim / The Long Way Home (2009) (Oil on Canvas)
Added:
Topic: Art
Type: link
User:x0x7
Title: Winter feeling
Added:
Topic: Art
Type: link
User:x0x7
Title: Siggi Eggerts - Fáskrúðsfjörður
Added:
Topic: Art
Type: link
Title: The Intel Backdoor Nobody Can Remove (Not Even You)
Added:
Topic: Security
Type: link
User:x0x7
Title: Singing Bowls: Pure Sound Meditation for Beginners
Added:
Topic: Relax
Type: link
User:x0x7
Title: Stop the violins
Added:
Topic: Funny
Type: link
User:x0x7
Title: How Limp Bizkit used an audio illusion to create this badass riff
Added:
Topic: Music
Type: link
User:x0x7
Title: Relax with Singing Bowls & Spinning Bells, Sound Bath for Stress Relief
Added:
Topic: SoundBaths
Type: link
User:x0x7
Title: Temple bell sound of 3 Orin Japanese bells
Added:
Topic: SoundBaths
Type: link
User:x0x7
Title: ASMR rain and thunder effect
Added:
Topic: ASMR
Type: link
User:x0x7
Title: Tibetian singing bowl, water inside
Added:
Topic: MildlyChill
Type: link
User:x0x7
Title: J-Cut & Kolt Siewerts - The Flute Tune (Soulpride Remix)
Added:
Topic: Music
Type: link
User:x0x7
Title: Garmarna - Vänner och fränder
Added:
Topic: Folk
Type: link
User:x0x7
Title: B.M.G. Academy
Added:
Topic: Music
Type: link
User:x0x7
Title: EISENFUNK - PAC MAN
Added:
Topic: Electronic
Type: link
User:x0x7
Title: Trump warns against using your toaster in the bathtub
Added:
Topic: Funny
Type: link
Title: Understand What You Read with the Rhetorical Précis
Added:
Topic: Videos
Type: link
Title: “How Much Do You Earn From Sitting On Your Bum?” | Benefits Influencer Encourages To Stop Working
Added:
Topic: NEETmaxxing
Type: link
Title: Delights - 1989
Added:
Topic: music
Type: link
Title: Trump directed attention to his shoes after getting shot. Empty shoes are a masonic sign that the people involved were safe. Proof the shooting was staged?
Added:
Topic: Conspiracy
Type: link
User:x0x7
Title: What is USD? Universal Scene Description
Added:
Topic: Tech, VFX
Type: link
User:x0x7
Title: He Built a $40,000 Military Drone for $120.07
Added:
Topic: Tech
Type: link
Title: Is socks a nigger or a pajeet?
Text: !POLL 59
Added:
Topic: AskMatrix
Type: text
Title: Elaine from Seinfeld as a 60s Motown Song (Nick Lutsko)
Added:
Topic: Music
Type: link
Title: Madison Avenue - Don't Call Me Baby
Added:
Topic: Music
Type: link
Title: Hypergeometric Distribution Probability Calculator
Added:
Topic: TradGames
Type: link
Title: The Bison - Desert Bones [Full Album] (Psychedelic Stoner Space Rock)
Added:
Topic: Music
Type: link
Title: Hermeticism: The Ancient Wisdom of Hermes Trismegistus
Added:
Topic: spirituality
Type: link
User:x0x7
Title: How Clever Design Made Antennas Disappear
Added:
Topic: Tech
Type: link
User:x0x7
Title: Me once I have an AI powerful enough to make the robot I want to make
Added:
Topic: Funny
Type: link
User:x0x7
Title: Details of Marco Rubio being vetted by billionaire Larry Ellison, who is now also helping censor TikTok - TYT
Added:
Topic: Politics
Type: link
User:x0x7
Title: Kid Beer
Added:
Topic: Videos
Type: link
User:x0x7
Title: The truth about start-stop technology (finally proven)
Added:
Topic: Automotive
Type: link