Recently posted
Title: Lil Bro was born in 2025
Added:
Posted:
Topic: Music
Type: link
Title: Oct 2025 Jordan Peterson Health Update (6:01)
Added:
Posted:
Topic: Influencers
Type: link
Title: Rammstein - Sonne [Chiptune]
Added:
Posted:
Topic: Music
Type: link
Title: I've begun implementing my design in KDE.
Text: This is a continuation of [this post](https://goatmatrix.net/c/UX/DKVbaGZaPK). Implementing the design accurately would require coding, but I'm not a coder. Instead I used KDE to implement whatever I can, because it's pretty customizable and supports the aesthetics I'm going for. Here are the features I've implemented.
# Single top panel
My design has a two-frame layout where each frame has its own icons. This isn't possible in KDE as kwin is a stacking WM. (I've tried tiling plugins but most didn't function and none of them split the screen into frames.) However, what is possible is to simply put everything in the top panel so that you don't need another one. So all the icons go into a single area, that's a compromise I'm willing to make.
KDE supports an icon-only task manager but after extensive testing I've veered away from that design for this reason: icons make sense if you make the task bar thicker, but then they distract too much. I have a widescreen monitor so there's plenty space for the labels next to the icons so you have the classic task bar style like in Windows XP. It makes sense: if you make the task bar thinner, you can balance it out by having the window buttons take width instead of depth. It's a nice aesthetic.
It also helps that KDE has the global menu so that I'm getting a bit more functionality out of the panel instead of just having blank space. This lead me to consider the placement of the items which was a bit of a puzzle. The menu just looks unnatural if it isn't placed on the top left corner like in macOS (so it also requires the whole panel to be at the top rather than the bottom). If the taskbar comes directly after it, then it frantically moves around to the left and right depending on whether or not the focused window provides a menu (and how many top-level entries the menu has). That's an example of what I call **spastic design**. I've tried putting the taskbar at the right as well but that likewise feels unnatural. So I've settled on putting it in the middle and it looks quite good there.
Before this, I've tested taskbar at the left and menu at the middle. But we're so used to 'file' appearing at a top left corner that it looks weird in the middle. Interestingly it's specifically file and edit which should appear somewhere near the left. The 'help' entry could appear on the right part of the panel so hypothetically you could have a menu split in two where most entries appear on the left but options and help appear on the right, but there is no software to do this.
I've also tested the taskbar at the left and the menu immediately to the right of it. This is doable but also not quite as pretty. Menu on the left and taskbar in the middle is really perfect.
# Aero aesthetics
If you go into settings -> appearance -> window decorations, there's a button "Get New Window Decorations". I've downloaded one called Windows11-Polarnight. Now the decorations and panel look like the Windows Aero design i.e. silvery.
Some more details about the look and feel. I also made it so that maximized windows don't have window decoration at the top, as per my design. There's a kwin script called Truely Maximized that does this and the feature's borrowed from GNOME. Unfortunately it isn't possible for windows that are only vertically maximized though.
Personally I like focus-follows-mouse but this clashes with a global menu because while your mouse is traveling to the menu, you focus another window and then the menu changes. So I have click-to-focus but the first click that a window receives won't raise it. Just like the default settings in macOS.
# Plus icon replaces the start menu
It's simple: I've put the application launcher to the right of the taskbar instead of the top left corner, and I've changed the icon to a plus icon. KDE lets you pick from a whole list of icons and I simply picked a plus icon from there. For maximum browser analogy you can have it open a horizontal launcher bar that takes the full width (like a navigation bar) but personally I like the regular start menu because it lets me easily launch applications with a few clicks.
# Browser-like key bindings
Alt+t launches the start menu (as if you're opening a new browser tab, but now a window instead).
Alt+w closes the focused window.
# Faux two-frame layout
Like I said, kwin is a stacking wm which doesn't support actually splitting the screen into frames, but there's a key binding for making a window occupy the left half of the screen and another one for making it occupy the right half, just like what was introduced in Windows 7 (in fact, I use the same key bindings for that). On top of that, windows snap to the edges of other windows while you're resizing one, so you can easily make one window occupy 2/3rds of the screen and another one the remaining 1/3rd.
Okay that's all. A screenshot will follow soon.
Added:
Posted:
Topic: UX
Type: text
In the queue
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
Title: A reminder to check your passwords
Added:
Topic: Tech
Type: link
Title: This Vim movement game is actually hard
Added:
Topic: Tech
Type: link
Title: Our Latest Release: Folding Fence Climbers
Added:
Topic: PenTesting
Type: link
Title: I tested the Internet’s most popular Mosquito Repellents.
Added:
Topic: Outdoors
Type: link
Title: The typical NodeJS project
Added:
Topic: Programming
Type: link
Title: How elite special operations troops created a drug cartel
Added:
Topic: Libertarian
Type: link
Title: Trump’s war on economic data is a dangerous move for MAGA’s own agenda
Added:
Topic: Libertarian
Type: link
Title: The Federal Reserve rightly rejects Trump’s calls for lower interest rates
Added:
Topic: Libertarian
Type: link
Title: Singing bowl + water = fun!
Added:
Topic: Videos
Type: link
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: Play Zelda 1 online
Added:
Topic: Gaming
Type: link
Title: Legend of Zelda (NES) Walkthrough Playlist
Added:
Topic: Gaming
Type: link
Title: Language
Added:
Topic: Tech
Type: link
Title: Flashbang!
Added:
Topic: Funny
Type: link
Title: The things we could do with AI
Added:
Topic: Funny
Type: link
Title: T-Rex Burger
Added:
Topic: Funny
Type: link
Title: A simple guide to de-google
Added:
Topic: Tech
Type: link
Title: Reuters says Reuters is Hamas
Added:
Topic: Dystopia
Type: link
Title: Criticisms of Carl Jung's Theory
Added:
Topic: Psychology
Type: link
Title: Lost Keys/Rosetta Stoned Acoustic Cover - He even sang the siren part
Added:
Topic: Music
Type: link
Title: Parabol/Parabola Acoustic cover
Added:
Topic: Music
Type: link
Title: Cyberstress!
Added:
Topic: WeirdWorkouts
Type: link
Title: 5 Relaxing DOOM Mods & Wads
Added:
Topic: Gaming
Type: link
Title: The Next 100 Years of Astronomical Events
Added:
Topic: Space, Videos
Type: link
Title: Teens Paint Over Graffiti With Art Of Their Own
Added:
Topic: ImproveTheWorld
Type: link
Title: China's Influence on Elections in New York
Added:
Topic: China
Type: link
Title: The First Pyramid Scheme | Matthew McCleskey
Added:
Topic: Videos
Type: link
Title: Enjoy some Doom ASMR: 1x1 - MAP02: Desolate Library (UV Tyson 100%)
Added:
Topic: Doom, Gaming, Videos
Type: link
Title: Simple & Authentic Carne Asada Street Tacos (w/ red & green salsa)
Added:
Topic: Cooking
Type: link
Title: Peder Severin Krøyer: Hip, Hip, Hurrah!
Added:
Topic: Art
Type: link
Title: Michael Ancher: A Stroll on the Beach (1896)
Added:
Topic: Art
Type: link
Title: Carl Locher, Mail Coach on Skagen Beach (c. 1890)
Added:
Topic: Art
Type: link
Title: Marie Krøyer painted by her husband, Peder Severin Krøyer (1890)
Added:
Topic: Art
Type: link
Title: Fishing Cutters in the Moonlit Night, Carl Locher, 1888
Added:
Topic: Art
Type: link
Title: The Lightship at Skagen Reef, Carl Locher, 1892
Added:
Topic: art
Type: link
Title: Harvesters, Anna Ancher, 1905
Added:
Topic: Art
Type: link
Title: Midsummer Eve Bonfire on Skagen Beach, Peder Severin Krøyer, 1906
Added:
Topic: Art
Type: link
Title: An album of Danish art from Skagen
Added:
Topic: Art
Type: link
Title: Thórarinn B. Thorlákson: Phingvellir, 1906. Oil painting. Listasafn Islands, Reykjavik
Added:
Topic: Art
Type: link
Title: On Top of the World - Karen Margulis
Added:
Topic: Art
Type: link
Title: Thorgrimur Andri Einarsson - Harpa
Added:
Topic: Art
Type: link
Title: Kristinsson Morthens - Hinn Langa Leið Heim / The Long Way Home (2009) (Oil on Canvas)
Added:
Topic: Art
Type: link
Title: Winter feeling
Added:
Topic: Art
Type: link
Title: Siggi Eggerts - Fáskrúðsfjörður
Added:
Topic: Art
Type: link
Title: Singing Bowls: Pure Sound Meditation for Beginners
Added:
Topic: Relax
Type: link
Title: Stop the violins
Added:
Topic: Funny
Type: link
Title: How Limp Bizkit used an audio illusion to create this badass riff
Added:
Topic: Music
Type: link
Title: Relax with Singing Bowls & Spinning Bells, Sound Bath for Stress Relief
Added:
Topic: SoundBaths
Type: link
Title: Temple bell sound of 3 Orin Japanese bells
Added:
Topic: SoundBaths
Type: link
Title: Tibetian singing bowl, water inside
Added:
Topic: MildlyChill
Type: link
Title: J-Cut & Kolt Siewerts - The Flute Tune (Soulpride Remix)
Added:
Topic: Music
Type: link
Title: Garmarna - Vänner och fränder
Added:
Topic: Folk
Type: link
Title: B.M.G. Academy
Added:
Topic: Music
Type: link
Title: EISENFUNK - PAC MAN
Added:
Topic: Electronic
Type: link
Title: Trump warns against using your toaster in the bathtub
Added:
Topic: Funny
Type: link
Title: What is USD? Universal Scene Description
Added:
Topic: Tech, VFX
Type: link
Title: He Built a $40,000 Military Drone for $120.07
Added:
Topic: Tech
Type: link
Title: How Clever Design Made Antennas Disappear
Added:
Topic: Tech
Type: link
Title: Me once I have an AI powerful enough to make the robot I want to make
Added:
Topic: Funny
Type: link
Title: Details of Marco Rubio being vetted by billionaire Larry Ellison, who is now also helping censor TikTok - TYT
Added:
Topic: Politics
Type: link
Title: Kid Beer
Added:
Topic: Videos
Type: link
Title: The truth about start-stop technology (finally proven)
Added:
Topic: Automotive
Type: link
Title: Basics Of Rotoscoping | NUKE FOR NOOBS!
Added:
Topic: VFX
Type: link
Title: Tyrant Freaks Out After Getting Owned By First Amendment Auditor!!
Added:
Topic: CopWatch
Type: link
Title: How to Cleanup in NUKE — Universal Cleanup Algorithm
Added:
Topic: VFX
Type: link
Title: Nathan For You - Liquor Store
Added:
Topic: Funny
Type: link
Title: Fastball - The Way
Added:
Topic: Music
Type: link
Title: China still has not bought any US soybeans in 2025 - farmers have lost their biggest customer
Added:
Topic: Economics
Type: link
Title: A bad ending to my trip across Afghanistan
Added:
Topic: Cycling
Type: link
Title: Scientists Create Eye Drops To Replace Glasses
Added:
Topic: GoodNews
Type: link
Title: Japan's Smallest Food Truck
Added:
Topic: Videos
Type: link
Title: Firearms Expert Reacts To Rust’s Guns
Added:
Topic: Gaming, Guns, GameDev
Type: link
Title: Vaccine Head
Added:
Topic: Music
Type: link
Title: The dancing nurses was a psychological warfare operation
Added:
Topic: Propaganda, Conspiracy
Type: link
Title: Modern Slavery: The Logic Behind Freedom
Added:
Topic: Libertarian
Type: link
Title: The one life fallacy
Added:
Topic: Comics
Type: link
Title: Tree Cabin
Added:
Topic: DIY
Type: link
Title: This country is 17% fake
Added:
Topic: Geography
Type: link
Title: Stay vigilant
Added:
Topic: Videos
Type: link
Title: How We Heat Our Apartment at -64°C| -83°F - Yakutsk, Siberia
Added:
Topic: Videos
Type: link
Title: That's better
Added:
Topic: Funny
Type: link
Title: Life in the World's Snowiest City Part 1 | Aomori, Japan
Added:
Topic: AskMatrix
Type: link
Title: Jordan Peterson goes full WOKE?! (4:45) ~ tyler fischer
Added:
Topic: Humour
Type: link
Title: No One Warned You About This Painting (21:13) ~ Art Deco
Added:
Topic: Art, Pedophocracy
Type: link
Title: Apple Introduces The Year Of The Linux Desktop!
Added:
Topic: Tech
Type: link
Title: Pro Gardeners React To Futuristic Gardening Hacks
Added:
Topic: Gardening
Type: link
Title: I'm never buying Mushrooms again (here's why)
Added:
Topic: Gardening
Type: link
Title: Inside A Free Tiny House In Japan
Added:
Topic: Japan
Type: link
Title: Japan's Tiny Apartments Under The Train Tracks
Added:
Topic: Japan
Type: link
Title: How Tech Is Built For You To FAIL (14:31) ~ Enrico Tartarotti
Added:
Topic: Technology
Type: link
Title: I'm Suing (7:53) ~ Davie504
Added:
Topic: ArtificialIntelligence, MusicProduction
Type: link
Title: The Most Important Device in the Universe - Blinking Tubes Without Function New Compilation (Part 1)
Added:
Topic: Scifi
Type: link
Title: How YouTube is DESIGNED To Make YouTubers QUIT (14:27) ~ Enrico Tartarotti
Added:
Topic: Filmmaking, SocialMedia
Type: link
Title: How They Broke Us All - ⚠️ Warning: Graphic (11:24) ~ Chase Hughes
Added:
Topic: Controligarchy, History, Psychology, PsyOps
Type: link
Title: Inside Japan's Worst Tiny Apartment
Added:
Topic: Japan
Type: link
Title: The True Story of the SL-1 Disaster
Added:
Topic: ShortVideos
Type: link
Title: Inside one of Japan's cheapest tiny hotels
Added:
Topic: Japan
Type: link
Title: 🚩 The CBC Is Shaping Your Opinion Of Mark Carney 🚩 (18:50) ~ Behaviour Breakdowns
Added:
Topic: Canada, MediaAnalysis, PsyOps
Type: link
Title: Grammar rules you can stop sticking to (23:50) ~ RobWords
Added:
Topic: Writing
Type: link
Title: The Definition Of “Terrorism” Will Blow Your... (15:26) ~ Sammy Obeid
Added:
Topic: StandUpComedy
Type: link
Title: Doom II: Sunless Empire - MAP05: Chasm of Dying Light (Blind Ultra-Violence 100%)
Added:
Topic: Doom
Type: link
Title: Ultimate Riding Spots And Heavy Crashes With Famous Mountain Bikers!
Added:
Topic: Cycling
Type: link
Title: Make the 'trixTube be programmed based on the videos people post
Text: It'd be cool if stuff automatically gets queued based on videos that are being posted.
Added:
Topic: Ideas4Matrix
Type: text
Title: I got fluoride free tooth paste
Text: I will report on the effect it has on my cognitive abilities! I bet it's zero, it's one of these things that seem hard to believe and it may be a marketing trick, but then again, forcing fluoride use on everyone is absurd in the first place. Also, I feel good about this purchase and that unto itself is the value being provided. I'd much rather support local businesses that provide a couple of expensive, high quality products than a single grocery store that has lots of cheap stuff from far off where there's no connection with the origin of products or even the employees that work there, if you get to see them face to face in the first place, which becomes rarer and rarer as they become understaffed and so that cashiers have big queues and people are encouraged to do self-checkout. Also, they experiment on their customers with up-beat music that stimulates them to spend more money. Literally fuck that shit. This co-op grocery store is absurdly expensive but I'm happy to just buy the acceptably priced products from there and get my other groceries elsewhere. On the other hand, that means I have fewer savings to put into crypto of which the value will go through the roof. If I cheapskate on everything and put everything in crypto, I will have more money in the future which I can then spend on ethical businesses, that's another strategy and this requires more thought.
Thank you for coming to my Ted talk.
Added:
Topic: Whatever
Type: text
Title: Gibraltar Bank Employees Accidentally Wear Native American Costumes While Dressing Like “Indians” For Hindu Holiday
Added:
Topic: Funny
Type: link
Title: [Top Protest Songs] DJ Accidentally Played the WRONG Side of This Record…Became a #1 SMASH! | Professor of Rock (32:05) ~ Professor of Rock
Added:
Topic: MusicProduction, ResistanceAnalysis
Type: link
Title: Spray This On Your Pizza... Trust Us! (29:00) ~ Tech Ingredients
Added:
Topic: Food, Science
Type: link
Title: How To Grow Mushrooms in a Bucket
Added:
Topic: DIY, Food
Type: link
Title: Grow Mushrooms at Home In A 5 Gallon Bucket (Easy - No Sterilization!)
Added:
Topic: Growing, DIY
Type: link