Since when did you think that YouTube become terrible?

Discussion in 'Unrelated Discussion' started by Light My Pyre, August 23, 2011.

  1. Light My Pyre

    Light My Pyre New Member

    Messages:
    2,155
    Likes Received:
    0
    Re: Since when did you think that YouTube became terrible?

    OMG your Taichinaban sig almost killed me.
  2. thetrophysystem

    thetrophysystem Post Master General

    Messages:
    7,050
    Likes Received:
    2,874
    Re: Since when did you think that YouTube became terrible?

    TeamFourStar. Love youtube. 10/10
  3. tehemopenguin

    tehemopenguin Moderator Alumni

    Messages:
    722
    Likes Received:
    27
    Re: Since when did you think that YouTube became terrible?

    I've never had that much of an issue with the site. I'm perfectly fine with content owners not wanting their stuff used by anyone else if they don't want to, unlike some others.
  4. wheatkrieg

    wheatkrieg New Member

    Messages:
    9
    Likes Received:
    0
    Re: Since when did you think that YouTube became terrible?

    There are few problems with the website. With some scripting, the latest layout iteration is easily my favorite.
  5. criticalage

    criticalage Active Member

    Messages:
    161
    Likes Received:
    0
    Re: Since when did you think that YouTube became terrible?

    Thanks, I missed you so much I had to visit you with my new signature.
  6. killien

    killien Active Member

    Messages:
    979
    Likes Received:
    4
    Re: Since when did you think that YouTube became terrible?

    I'm just getting annoyed with the "Guide/MoreResults" sidebar on the left
    Does nothing but leave a huge empty space because I have no interest in using it
  7. poiuasd

    poiuasd Well-Known Member

    Messages:
    707
    Likes Received:
    89
    Re: Since when did you think that YouTube became terrible?

    I hate how clicking the logo on the site doesn't take you to your sub box anymore.
  8. knickles

    knickles Well-Known Member

    Messages:
    800
    Likes Received:
    134
    Re: Since when did you think that YouTube became terrible?

    Yeah... that was a silly change. I guess they hoped the change would get you to check out more videos?

    Anyway, I've just assigned my youtube bookmark to http://www.youtube.com/feed/subscriptions/u
  9. wheatkrieg

    wheatkrieg New Member

    Messages:
    9
    Likes Received:
    0
    Re: Since when did you think that YouTube became terrible?

    I use these two scripts:

    Code:
    // ==UserScript==
    // @name          Fix youtube home button
    // @version       1.1		 		
    // @description	  changes the youtube logo to link to http://www.youtube.com/feed/subscriptions/u
    // @author        msevilgenius
    // @include       http://youtube.com/*
    // @include       https://youtube.com/*
    // @include       http://*.youtube.com/*
    // @include       https://*.youtube.com/*
    // @include       http://www.youtube.com/html5*
    // @include       http://www.youtube.com/feather_beta*
    // @include       http://www.youtube.com/user*
    // @include       http://www.youtube.com/feed/subscriptions/u
    // ==/UserScript==
    
    function win(){
       document.getElementById('logo-container').href='http://www.youtube.com/feed/subscriptions/u'}window.onLoad=win();
    Code:
    // ==UserScript==
    // @name         Youtube Center Aligned
    // @namespace    http://userscripts.org/users/332207
    // @description  Center aligns the Youtube page
    // @include      http://*.youtube.com/*
    // @include      http://youtube.com/*
    // @include      https://*.youtube.com/*
    // @include      https://youtube.com/*
    // @grant        none
    // @version      1.4
    // ==/UserScript==
    
    // This should work as long as Youtube keeps the "site-center-aligned" class in their CSS
    document.body.className = document.body.className.replace('site-left-aligned', 'site-center-aligned');
    
    // Fix for search results (from tezcan34)
    // If you apply this to pages other than the search results page, it breaks the script
    if (window.location.pathname == ('/results')) {
    	document.getElementById('page') ? document.getElementById('page').style.width = '1003px' : '';
    }
    
    // The guide-container div gets hidden behind videos when the page content is centered because the div is absolute positioned
    document.getElementById("guide-container") ? document.getElementById("guide-container").style.left = '-100px' : '';
    
    // Subnav when viewing your own videos
    if (document.getElementById('masthead-subnav')) {
    	document.getElementById('masthead-subnav').setAttribute('style', 'margin:0 auto !important');
    	document.getElementById("guide-container") ? document.getElementById("guide-container").style.top = '40px' : '';
    }
    
  10. thetrollingking

    thetrollingking New Member

    Messages:
    206
    Likes Received:
    0
    Re: Since when did you think that YouTube became terrible?

    Remember when the sub box worked? Me neither.
  11. Light My Pyre

    Light My Pyre New Member

    Messages:
    2,155
    Likes Received:
    0
    Re: Since when did you think that YouTube became terrible?

    Damn this whole subscription list glitch is the worst.
  12. donut7577

    donut7577 Active Member

    Messages:
    231
    Likes Received:
    1
    I liked the old layout better, but the site is still perfectly functional and I have little to complain about.
  13. Light My Pyre

    Light My Pyre New Member

    Messages:
    2,155
    Likes Received:
    0
    Good site. Just a lot of glitches and ads.
  14. mego950

    mego950 New Member

    Messages:
    102
    Likes Received:
    0
    adblocker
  15. tehemopenguin

    tehemopenguin Moderator Alumni

    Messages:
    722
    Likes Received:
    27
    Re: Since when did you think that YouTube became terrible?

    I have NEVER had issues with it.
  16. poiuasd

    poiuasd Well-Known Member

    Messages:
    707
    Likes Received:
    89
    Re: Since when did you think that YouTube became terrible?

    Subscribed to a show that airs weekly. Several months worth of episodes never appeared in my sub box.

Share This Page