Is your YT homepage infested with tranny shit too?

rel=alternate

Getting too much email? Unsubscribe
True & Honest Fan
kiwifarms.net
Joined
Aug 14, 2022
I can't believe it. I refresh my homepage and see some video recommandation about some women "feminizing their kids", from a M2F (saw it in preview subtitles). I report it for being harmful.

Refresh again, and now this pops up.

whyy.png

Did I click something wrong and YT thinks I want to see trannies or is it pushed to all of us?
 
  • Horrifying
Reactions: Broseph
Solution
What it appears to be doing is it occasionally recommends you a random channel with like under 10 subscribers. You just seem to have gotten unlucky.
I just have an HTML file that links directly to the /videos/ section of channels I like, so that I can easily click & see what's new from them (and that recommendations could miss).

Depending on my mood I'll go for certain types of content creators, which are separated in the file. When I start to watch them, suggestions related to that type of content pop up on the right, so I can check if I wish.

If a YouTuber is worth it, they get added to the HTML file. So this is all independent of any account.
Sounds very cool. I plan to do the same for my subbed channels, then download my history as audio. If you don't mind, could you link your HTML file?
 
What it appears to be doing is it occasionally recommends you a random channel with like under 10 subscribers. You just seem to have gotten unlucky.
can confirm, when signing in i sometimes get cute cat videos or random car repair blogs with 0 views in the recommendation, and occasionally get tranime gacha life edit made from watermarked video editor or those top 15 things with shoddy ms paint drawn stickmen reading off things from wikipedia
when i encounter troon content, i just instantly block it with the BlockTube extension
 
Sounds very cool. I plan to do the same for my subbed channels, then download my history as audio. If you don't mind, could you link your HTML file?
The file is bare bones (in regards to adapting itself to "unusual" resolutions) but I guess it works well for my monitor. For now it's simply an HTML file with organized containers for linking channels, so that you can easily open the file and click on them without logging anywhere.

This is the code example:
HTML:
<!DOCTYPE html>
<html>
<!--
        <div class="section">
            <h1>Type of broadcaster</h1>
            <div class="gridbox">
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
            </div>
        </div>
-->
    <head>
        <title>YouTube channels (example)</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta charset="UTF-8">
        <base target="_blank">
        <style>
            html{
                font:17px Verdana;
            }
            body{
                color:#eee;
                background:#223;
                margin:1rem;
                word-wrap:break-word;
                overflow-y:scroll;
            }
            a{
                color:#9b82fb;
                text-decoration:none;
                align-self:center
            }
            a:link{
                color:#9b82fb;
            }
            a:visited{
                color:#9b82fb;
            }
            a:hover{
                color:#c0afff;
                text-decoration:underline;
            }
            a:active{
                color:#d2c8f7;
            }
            ::selection{
                color:#fff;
                background:#8352b7;
            }
            h1{
                color:#a595f7;
                text-decoration:underline;
                margin:0.2rem 0rem 0.5rem 0rem;
            }
            img{
                color:#fff;
                background:linear-gradient(20deg,#eba93055,#f1070755);
                font:1rem Verdana;
                border-radius:50%;
                width:5rem;
                height:5rem;
                border:2px solid #fff;
                display:block;
                margin-left:auto;
                margin-right:auto;
            }
            .section{
                background:#423f6f5e;
                padding:0.5rem;
                background:#56457d;
                text-align:center;
                border-radius:1rem;
                margin:0rem 0rem 0.5rem 0rem;
            }
            .gridbox{
                display:grid;
                grid-template-columns:auto auto auto auto;
                background:#352a4f;
                padding:1rem;
                border-radius:1rem;
                border:1px solid #9077cd;
            }
            .griditem{
                display:grid;
                grid-template-columns:auto auto;
                background:#231c35;
                border: 1px solid #8368c5;
                padding:0.5rem;
            }
            .griditem:hover{
                border:1px solid #c5a2f3;
                box-shadow:0px 0px 8px 6px #8c42c3;
                transition:0.2s;
                z-index:99;
            }
            .help{
                cursor:help;
            }
            .nonselectable{
                -webkit-user-select:none;
                -moz-user-select:none;
                -ms-user-select:none;
                user-select:none;
            }
        </style>
    </head>
    <body>
        <div class="section">
            <h1>Political channels (example)</h1>
            <div class="gridbox">
                <div class="griditem">
                    <img src="./profile.jpg">
                    <a href="https://www.youtube.com/channel/UCKYlm8qznxY5b3LOUS2w6ng/videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./profile.jpg">
                    <a href="https://www.youtube.com/channel/UCKYlm8qznxY5b3LOUS2w6ng/videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./profile.jpg">
                    <a href="https://www.youtube.com/channel/UCKYlm8qznxY5b3LOUS2w6ng/videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./profile.jpg">
                    <a href="https://www.youtube.com/channel/UCKYlm8qznxY5b3LOUS2w6ng/videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./profile.jpg">
                    <a href="https://www.youtube.com/channel/UCKYlm8qznxY5b3LOUS2w6ng/videos">Name of channel</a>
                </div>
            </div>
        </div>

        <div class="section">
            <h1>Type of broadcaster</h1>
            <div class="gridbox">
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
                <div class="griditem">
                    <img src="./pathOfImage.extension">
                    <a href="https://www.youtube.com/channel//videos">Name of channel</a>
                </div>
            </div>
        </div>

    </body>
</html>

Because it's one file the CSS is internal (so it's already in it), but for the images (unless you want to encode them and paste them into the file), you'll have to type the image's relative path in the img src (which I assume will be their square profile's image).

Besides from that, it's a grid of 4 columns (that you can alter with the "grid-template-columns" property to your liking), so for now, this means that for each ".gridbox", one line will be occupied by 4 ".griditem" (you can see them how they're wrapped around in the file).

The HTML comment at the beginning is like a template that you can copy-paste if you need to make another section for other type of broadcasters (like if you want a box containing political streamers, put in there).

Finally, the YouTube URL template I put in there is the one with the channel-ID, this is because it's the most reliable channel identifier; if for some reson they change their name or handle, by having the channel-ID that won't matter, and will always (unless extreme circumstance) link to their channel.
To get it from any YT profile, just go to their profile description and click "Copy channel ID".

channelid.png


Then put it in the URL between /channel/ and /videos/ like so (example):
https://www.youtube.com/channel/UCKYlm8qznxY5b3LOUS2w6ng/videos
 

Attachments

  • Winner
Reactions: rebel
What it appears to be doing is it occasionally recommends you a random channel with like under 10 subscribers. You just seem to have gotten unlucky.
That happens with me, except instead of trannies, it's people just recording themselves playing video games. Which makes sense, because I occasionally watch videos about video games.

I opened it just now, and got this video:

Fireseth does not seem to be a tranny.
 
The only tranny content I ever had "recommended" to me were some "asmr" shorts about watching boot up screens from old computers made in the 80's and 90's that was run by a tranny, naturally, since only a tranny would have such an autistic hobby as that.
 
All I watch are shitposts and people I know or find funny playing video games, bizarre/funny vids, or sometimes people reviewing random shit. Despite this youtube keeps on and off trying to shovel 5 hour long politics video essays about media into my recommended or shit fear mongering about Trump and it's done both for years now. the last 4-ish or so years it's also been shoveling trannyshit in there too. None of this is anything I watch or want to watch or even click and yet it doesn't fucking let up. It's not shit like OP's pic with troon's posing for the camera, it's reddit ass "wholesome meme" compilations that are entirely twitter groomer/egg hatcher type posts going by the thumbnail text and vid titles. Might've been a bit more or less than 4 years actually, time's been a fucking blur more and more since corona hit.


That happens with me, except instead of trannies, it's people just recording themselves playing video games. Which makes sense, because I occasionally watch videos about video games.
The algorithm has kinda been fucking up/ shitting the bed in how youtube wants it to work in my case because it'll sometimes randomly reccomend me a ton of weird or interesting 15 year old videos, usually in either Spanish or Japanese for some reason. I have no idea what the fuck these people are saying but I click them sometimes and it's usually an upload of some music track or video game/movie thing. Youtube prioritizes NEW and SPONSORED shit and yet these keep slipping in. I'm glad they do though.Better than the politics essay/troon shit.
 
Last edited:
  • Informative
Reactions: Broseph
Back