• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Offbeat Fridays – The thread where offbeat headlines become front page news

      Tildes is a very serious site, where we discuss very serious matters like 2fa, citizenship.birthright and tiktok. Tags culled from the highest voted topics from the last seven days, if anyone was...

      Tildes is a very serious site, where we discuss very serious matters like 2fa, citizenship.birthright and tiktok. Tags culled from the highest voted topics from the last seven days, if anyone was unusually befuddled.

      But one of my favourite tags happens to be offbeat! Taking its original inspiration from Sir Nils Olav III, this thread is looking for any far-fetched offbeat stories lurking in the newspapers. It may not deserve its own post, but it deserves a wider audience!

      15 votes
    2. What did you do this week (and weekend)?

      As part of a weekly series, these topics are a place for users to casually discuss the things they did — or didn't do — during their week. Did you accomplish any goals? Suffer a failure? Do...

      As part of a weekly series, these topics are a place for users to casually discuss the things they did — or didn't do — during their week. Did you accomplish any goals? Suffer a failure? Do nothing at all? Tell us about it!

      11 votes
    3. What have you been listening to this week?

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as...

      What have you been listening to this week? You don't need to do a 6000 word review if you don't want to, but please write something! If you've just picked up some music, please update on that as well, we'd love to see your hauls :)

      Feel free to give recs or discuss anything about each others' listening habits.

      You can make a chart if you use last.fm:

      http://www.tapmusic.net/lastfm/

      Remember that linking directly to your image will update with your future listening, make sure to reupload to somewhere like imgur if you'd like it to remain what you have at the time of posting.

      4 votes
    4. Honey did nothing wrong

      OK, maybe they did something wrong; not actually giving people all potentially available discount codes when you say you will is wrong. But I don't think they did anything wrong by overriding...

      OK, maybe they did something wrong; not actually giving people all potentially available discount codes when you say you will is wrong. But I don't think they did anything wrong by overriding affiliate links, and I think it's dangerous to let people convince you otherwise.

      Even if replacing affiniate codes has negative consequences, in the form of lost revenue and uncounted sales, for the affiliates, it is happening entirely in the end user's browser, and in that environment the user has the right to do whatever they want. One can get extensions that strip off all affiliate codes. A user might have a case that their informed consent was not obtained by Honey for one feature or another, but if a user wants to install a browser extension that replaces all the affiliate codes in links they click, they have a right to do that and no affiliate marketer can be rightly empowered to stop them.

      If we admit some right to control the user's browser's behavior on the part of affiliate marketers, why would that right stop at interference by Honey? Wouldn't any extension interfering with the sanctity of the affiliate marketing referral data then be a legally actionable offense?

      24 votes
    5. Save Point: A game deal roundup for the week of January 19

      Add awesome game deals to this topic as they come up over the course of the week! Alternately, ask about a given game deal if you want the community’s opinions: e.g. “What games from this bundle...

      Add awesome game deals to this topic as they come up over the course of the week!

      Alternately, ask about a given game deal if you want the community’s opinions: e.g. “What games from this bundle are most worth my attention?”

      Rules:

      • No grey market sales
      • No affiliate links

      If posting a sale, it is strongly encouraged that you share why you think the available game/games are worthwhile.


      All previous Save Point topics

      If you don’t want to see threads in this series, add save point to your personal tag filters.

      17 votes
    6. What are your favourite let's plays?

      Do you have any favourite videos / playlists (or the rare cases of writing with screenshots) where someone plays through a whole game while supplying their own commentary in an entertaining and/or...

      Do you have any favourite videos / playlists (or the rare cases of writing with screenshots) where someone plays through a whole game while supplying their own commentary in an entertaining and/or informative way?

      33 votes
    7. What trustworthy resources are you using for AI/LLMs/ML education?

      Every company is trying to shoehorn AI into every product, and many online materials provide a general snake oil vibe, making it increasingly difficult to parse. So far, my primary sources have...

      Every company is trying to shoehorn AI into every product, and many online materials provide a general snake oil vibe, making it increasingly difficult to parse. So far, my primary sources have been GitHub, Medium, and some YouTube.

      My goal is to better understand the underlying technology so that I can manipulate it better, train models, and use it most effectively. This goes beyond just experimenting with prompts and trying to overcome guardrails. It includes running local, like Ollama on my M1 Max, which I'm not opposed to.

      8 votes
    8. [SOLVED] How can I hide streams from my YouTube subscriptions page?

      Picture explanation: https://i.horizon.pics/tWovRax4kh.jpg When I view my subscriptions page on YouTube, half the "videos" are recordings of completed streams, often 2+ hours in length. I'm not...

      Picture explanation:

      https://i.horizon.pics/tWovRax4kh.jpg


      When I view my subscriptions page on YouTube, half the "videos" are recordings of completed streams, often 2+ hours in length. I'm not interested in watching these. For me, they're just pollution in the feed.

      Apparently, a lot of the channels I subscribe to, whose videos I enjoy watching, also stream on YouTube a lot.

      Second Wind is probably the channel I'm most hung up about. I like their normal videos, and don't want to unsubscribe from their channel, but jesus they stream two or three times a day.

      (Also, it's annoying that when I view a YouTube channel, I can visit their videos page or their streams page separately. Why can't I have this same separation on my own subscriptions page?)

      (Also also, I already use an extension to hide shorts (among other things), but it unfortunately does not have a feature for hiding streams.)

      Fancy bullet point summary:

      • I want to hide recorded streams from my subscriptions page
        • I don't care as much about hiding active livestreams, because those don't pollute my subscriptions page nearly as much
      • I do not want to unsubscribe from any of the channels I follow. That is not an option
      • I'm willing to stop using youtube.com in favor of an alternative client (web, desktop, etc) if that client supports hiding recorded streams from actual videos
      • I'm willing to install a browser extension that can solve this problem (but I can't find one for Firefox)

      Ninja edit:

      While writing up this topic, I actually found my own solution. The browser extension I mentioned earlier has an "advanced blocking" feature that takes a JavaScript function as input. The extension's GitHub page has an issue, with a comment, with some code to hide streamed videos on the subscriptions page.

      However, that code didn't work when I tried it. Thankfully, I just needed to check for videoRenderer instead of gridVideoRenderer.

      Here's the updated code:

      (video, objectType) => {
          // Only videos on the Subscription page
          if ( objectType === "videoRenderer" ) {
              if ( video.hasOwnProperty("badges") && video.badges.includes("live") ) {
      	    return true;
              }
              if ( video.hasOwnProperty("publishTimeText") && video.publishTimeText.indexOf("Streamed") != -1 ) {
                  return true;
              }
          }
          return false;
      }
      

      I have no idea what the consequences of checking against videoRenderer instead of gridVideoRenderer might be, and right now I'm too lazy to find out. This works well enough for now.

      (The "consequence" might be that streams are hidden from the related/recommended videos in the sidebar of a video page? I actually hide that sidebar, so I wouldn't know. Oh, and they'll probably be hidden from a channel's streams feed.)

      It isn't a perfect solution though. Streams that are "scheduled" still show up on the subscriptions page. However, I think channels can set streams and videos as scheduled? So blocking one without the other would be more complicated?

      I welcome any feedback or improvements on the code.

      15 votes
    9. Need a haircut (a good one)

      I posted recently about needing a better job—well, if one has an interview for a better job (a much better job, hopefully), one needs to look the part. In the greater ATL area, two questions: I've...

      I posted recently about needing a better job—well, if one has an interview for a better job (a much better job, hopefully), one needs to look the part. In the greater ATL area, two questions:

      • I've gotten a variety of haircuts, from barbershops to salon-type places to Great Clips to at home with a Wahl, but they've topped out around 20 bucks. How do I find a really good haircut/face clean-up (brows etc) place? I don't want to just waltz in somewhere & end up looking ridiculous, but I don't even know where to start. It doesn't help that I have a kind of "weird" type of hair, where it's curly and kind of wiry, ethnically mediterranean/middle eastern, so if I get a regular clippers haircut it usually ends up looking chopped off.

      • I also need a good suit, in toto; I have dress clothes but def. don't want to blow this one. National finance, I'm seeing business casual so suit/tie/shirt/shoes, nice enough to be unnoticeable is my goal. I have no idea how much a suit at that point would cost, but other than going to Brooks Brothers or Joseph A Banks I have no idea what the best approach would be (are those even in the same range lol)

      Thanks again you all

      Edit: i am a dude, sry

      15 votes