• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "ask". Back to normal view
    1. Where do you all get your news from? How do you work to avoid echo chambers and propaganda?

      I've been thinking a lot lately about the prevalence of echo chambers in basically every corner of the internet, and how they manipulate our opinions of things in both obvious and incredibly...

      I've been thinking a lot lately about the prevalence of echo chambers in basically every corner of the internet, and how they manipulate our opinions of things in both obvious and incredibly subtle ways.

      Having spent a lot of time on Reddit, it's really easy after a while to see all the different echo chambers that different folks live in. Obviously the big conservative subs just have a completely different news cycle compared to the liberal ones, but even the liberal ones all form obvious biases and fairly large blind spots. All sides have the problem of just reading the headline and coming to a conclusion, regardless of the content of the article or who the authors are; the number of times I've seen the Irish Star, well known in Ireland as being a complete fucking rag notable only for celebrity gossip and nude photos on page 3, being posted to big subreddits as if it's real news, is absurd.

      And when you pay attention you can easily spot when the propaganda machines start to accelerate, especially during and after election season. I'll always remember before the 2020 US election primaries when all of Reddit was supportive of Bernie Sanders and Pete Buttigieg, while deriding Joe Biden and Elizabeth Warren as being centrist career politician dinosaurs, and the second that Biden was chosen as the Democratic nominee the entire site opinion shifted to "Biden is the best candidate and we all support him 100%". And then the moment the election finishes and all the botnets go back into hibernation, it's right back to "should have been Bernie". And that was just the first time I noticed it. Once you notice it happening in your own circles, it's impossible to miss afterward because it happens for every single political discussion. It was the exact same thing in the 2024 election too with Harris. I'm sure some of it is just people showing solidarity when it matters, but so much of it is clearly artificial too, and I don't like that.

      The thing that worries me the most is all the propaganda and manipulation I don't see, the stuff that's subtle enough to fly under my radar and successfully manipulate me as a result. I'd be an idiot to pretend like I'm 100% capable of spotting it all.


      Anyways, with all that stated, I wanted to see where the users of Tildes get their news from. It's really difficult to find unbiased news, that much is a given, so I'd rather not rely on any one source.

      Personally I try to get my news from the Associated Press as much as I can. Don't think much needs to be said about AP that hasn't already been said, it's kinda just the gold standard for journalism.

      The Guardian is a reputable news site in the UK (and fairly popular outside of the UK too from what I've seen online), though one that has a definite left-wing bias. All news is biased news of course, and there is an argument to be made that reality itself has a left-wing bias, so I think it's fine overall for my use case. But I do worry that I'm only making that call because I myself am somewhat left-wing, and having news that reinforces my existing opinions is comforting and rewarding. And I don't think that's at all how we should be choosing which news to read and believe.

      Have been considering a subscription to the New York Times as well, more for the cooking, puzzles, and classical music discussion than the news itself honestly. But I've seen a fair amount of discourse around the NYT; how much of that is reactionary Redditors reacting I am not certain of however. Their Wikipedia list of controversies is pretty long whatever the case. Plus there's that whole Boycott USA, buy EU movement going on that I should probably consider as a European (sorry yanks I know you guys are cool but you know how it is). I don't know honestly, anyone more media-literate than I am is welcome to weigh in.

      There are probably loads of smaller, independent, and less Anglosphere-centric options I should be considering also, but I'm no expert in this stuff. If anyone has suggestions I'd very much appreciate them.


      Generally I try to not read too much news since so much of it amounts to "everything is fucked and your life is going to get worse and worse forever because of things outside of your control good luck", which is generally not good for, y'know, trying to be happy. But I also think it's the duty of a citizen in a democratic society to not just have opinions of things, but to have informed opinions. Who am I to vote for X politician because they're pro-Palestine if I have never done my own research on the Israel-Palestine conflict outside of things I've seen on Instagram, and have hardly even researched the politician in the first place? I think far too many people are comfortable forming opinions based on vibes and news they find comfortable that already conforms to their pre-existing opinions.

      Anyways, that's my big wall of text for the day. If anyone has recommendations for places to find news and/or sites worthy of my subscription money, or just general tips on how to stay properly informed in the disinformation world, please post them below.

      EDIT: Just stumbled upon this post by DefinitelyNotAFae a few hours ago asking a very similar question as what I'm asking here, so sorry if there's some repetition!

      47 votes
    2. Can you critique my blog?

      The blog is daviramos.com It is more like a 2000s blog than whatever blog means today. Just things I wanna write sometimes. It is not commercial, no ads. I like fast things. Images are heavily...

      The blog is daviramos.com

      It is more like a 2000s blog than whatever blog means today. Just things I wanna write sometimes. It is not commercial, no ads. I like fast things. Images are heavily optimized, not mandatory, and always inside posts.

      Bearblog is reliable and minimal without being barebones. I wrote about it before, so there's no need to go over it again here.

      I really want to know if the way I’ve organized my blog makes any sense. Please keep in mind that I’m not a developer, programmer, or anything like that. I chose Bearblog partly because I already liked the default theme and didn’t need to change much. I appreciate minimalism, understand Markdown, a little HTML, and can "decode" simple CSS using a mix of intuition, Google, and ChatGPT. I only changed stuff that was not very deep and would not be hard to maintain.

      css style (my changes are in the end)
      :root {
          --width: 720px;
          --font-main: Verdana, sans-serif;
          --font-secondary: Verdana, sans-serif;
          --font-scale: 1em;
          --background-color: #fff;
          --heading-color: #222;
          --text-color: #444;
          --link-color: #3273dc;
          --visited-color:  #8b6fcb;
          --code-background-color: #f2f2f2;
          --code-color: #222;
          --blockquote-color: #222;
      }
      
      @media (prefers-color-scheme: dark) {
          :root {
              --background-color: #01242e;
              --heading-color: #eee;
              --text-color: #ddd;
              --link-color: #8cc2dd;
              --visited-color:  #8b6fcb;
              --code-background-color: #000;
              --code-color: #ddd;
              --blockquote-color: #ccc;
          }
      }
      
      body {
          font-family: var(--font-secondary);
          font-size: var(--font-scale);
          margin: auto;
          padding: 20px;
          max-width: var(--width);
          text-align: left;
          background-color: var(--background-color);
          word-wrap: break-word;
          overflow-wrap: break-word;
          line-height: 1.5;
          color: var(--text-color);
      }
      
      h1, h2, h3, h4, h5, h6 {
          font-family: var(--font-main);
          color: var(--heading-color);
      }
      
      a {
          color: var(--link-color);
          cursor: pointer;
          text-decoration: none;
      }
      
      a:hover {
          text-decoration: underline;
      }
      
      nav a {
          margin-right: 8px;
      }
      
      strong, b {
          color: var(--heading-color);
      }
      
      button {
          margin: 0;
          cursor: pointer;
      }
      
      time {
          font-family: monospace;
          font-style: normal;
          font-size: 15px;
      }
      
      main {
          line-height: 1.6;
      }
      
      table {
          width: 100%;
      }
      
      hr {
          border: 0;
          border-top: 1px dashed;
      }
      
      img {
          max-width: 100%;
      }
      
      code {
          font-family: monospace;
          padding: 2px;
          background-color: var(--code-background-color);
          color: var(--code-color);
          border-radius: 3px;
      }
      
      blockquote {
          border-left: 1px solid #999;
          color: var(--code-color);
          padding-left: 20px;
          font-style: italic;
      }
      
      footer {
          padding: 25px 0;
          text-align: center;
      }
      
      .title:hover {
          text-decoration: none;
      }
      
      .title h1 {
          font-size: 1.5em;
      }
      
      .inline {
          width: auto !important;
      }
      
      .highlight, .code {
          padding: 1px 15px;
          background-color: var(--code-background-color);
          color: var(--code-color);
          border-radius: 3px;
          margin-block-start: 1em;
          margin-block-end: 1em;
          overflow-x: auto;
      }
      
      /* blog post list */
      ul.blog-posts {
          list-style-type: none;
          padding: unset;
      }
      
      ul.blog-posts li {
          display: flex;
      }
      
      ul.blog-posts li span {
          flex: 0 0 130px;
      }
      
      ul.blog-posts li a:visited {
          color: var(--visited-color);
      }
      
      /* MY CHANGES */
      
      /* That is an entirely new class for text */
      /* that goes below an image as a subtitle */
      .subtitle {
          text-align: center;
          font-style: italic;
          font-size: small;
          font-weight: bold;
      }
      
      .upvote-button {
          display: none !important; /* Hides button, overrides other settings */ 
              pointer-events: none; /* Disable mouseif it visible */
      }
      
      .title h1 {
          font-size: 1.2em;
      }
      
      nav a {
          font-size: 0.95em;
      }
      
      footer {
      	font-size: 0.95em;  
      }
      
      .spaced-line {
      	margin: 100px 0;
      	text-align: center;
      }
      
      /* Keep images centered */
      img {
          display: block;
          margin-left: auto;
          margin-right: auto;
      }
      

      For comparison, see Herman's blog to see something closer to the default. He’s the creator of Bearblog.

      Here’s what I’ve changed: the font size for the blog’s name, the navbar, and the footer that says Powered by Bear ʕ•ᴥ•ʔ is slightly smaller (0.95em instead of 1em). I added a guestbook and links to the English and Portuguese pages in the navbar. I also changed the favicon and the site's meta-image to different-sized images of Humphrey Bogart.

      The English and Portuguese pages are in their respective languages and only list posts in those languages. I don’t know if it’s possible to customize the navbar further. EDIT: bearblog has a builtin voting feature which I removed with CSS. All pages and posts are configured with their appropriate language via Bearblog, which I assume browsers and search engines can detect. Does it make sense to make my blog bilingual this way?

      Maybe this is a new feature, but Bearblog lets you organize posts into subfolders/subdomains. So I placed all Brazilian Portuguese posts under /br/, which feels logical and predictable. I haven’t shared them anywhere yet, so there’s no risk of broken links. On the other hand, I already have several English posts that have been shared elsewhere. If I move all English posts under /en/, I’d love to find a way to let the older links keep working gracefully. Is that possible somehow? Maybe that’s a question for Herman, but I have a follow-up: Other than my obsession with tiny details, is there any value in separating my posts under either /br/ or /en/? Titles and URLs are unlikely to conflict between languages, and if they do, I can always add a -pt or -en suffix like in example-post-pt.

      Other than that, I’d welcome any advice on how to improve my blog—whether in big ways or subtle ones.

      Thanks!

      21 votes
    3. Do 5g home internet modems get better cell reception than mobile phones?

      I think the answer is probably yes, but I wanted to double check. Does anyone here have experience with them? For clarity, this is the home modems that you can buy for stationary 5g internet. This...

      I think the answer is probably yes, but I wanted to double check. Does anyone here have experience with them? For clarity, this is the home modems that you can buy for stationary 5g internet. This is not those pocket, battery powered personal hotspots.

      I just moved into a new studio in France. Despite literally every other building on the street having fiber, my studio does not have it. So I am stuck with DSL, since France doesn’t use cable for internet service. My dsl gets 2-10 Mbps down and 0.25-1 up. This is abysmal, especially the upload.

      The other problem is the building is such a good shield against radio waves. With Orange, supposedly the best mobile carrier in France, I get exactly zero service, even sticking my phone out the window.

      There is a carrier called Free, that does offer a 5g home internet box. To test it out, I got a Free (but not free) SIM card for my phone. Sticking it out the window, I get about the same speeds as my DSL box provides.

      So there is the impetuous for my question. Should I expect their 5g home internet box to be about the same speeds as my iPhone, or can I expect them to be faster and more reliable, since it isn’t battery powered and can me larger?

      11 votes
    4. Looking for games you can play on a laptop with a trackpad

      Sometimes my girlfriend commandeers my desktop to play games like Fallout 4 (which she discovered after the Fallout TV series last year) and sometimes I’ll go on my laptop while she does that. I...

      Sometimes my girlfriend commandeers my desktop to play games like Fallout 4 (which she discovered after the Fallout TV series last year) and sometimes I’ll go on my laptop while she does that. I usually like to program when I’m on my laptop then but I’m looking for suggestions for games to play that don’t need a mouse or much graphical power. Is Dwarf Fortress something I should try?

      18 votes
    5. Started watching Adolescence

      Its a heavy show but three episodes in, I'm loving the single shot approach that they took. Without cuts, it's all about the pace of the drama, the honesty of each beat and the quality of the...

      Its a heavy show but three episodes in, I'm loving the single shot approach that they took.

      Without cuts, it's all about the pace of the drama, the honesty of each beat and the quality of the performance. That, and I haven't seen a show tackle toxic masculinity in quite this way and I'm super here for it.

      Has anybody else seen it? What did you think?

      18 votes
    6. 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.

      5 votes
    7. 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!

      12 votes
    8. Fitness Weekly Discussion

      What have you been doing lately for your own fitness? Try out any new programs or exercises? Have any questions for others about your training? Want to vent about poor behavior in the gym? Started...

      What have you been doing lately for your own fitness? Try out any new programs or exercises? Have any questions for others about your training? Want to vent about poor behavior in the gym? Started a new diet or have a new recipe you want to share? Anything else health and wellness related?

      4 votes
    9. How do you navigate an imbalanced friendship?

      I want to give some context before I get to the meat and potatoes. I (M28) have IRL friends that I communicate and spend time with regularly. However, I do not engage in conversations with them...

      I want to give some context before I get to the meat and potatoes. I (M28) have IRL friends that I communicate and spend time with regularly. However, I do not engage in conversations with them daily. I'm not a texter, or a phone call person. If one of them has a question, or wants to share a meme, I'll respond, but I don't have digital conversations that stretch for hours. I prefer in person communication, and in person I don't shut the fuck up.

      Additionally, I do not have any 'Online' friends. All of my friendships are with people I know in real life. I have talked with others on Discord, but again, I don't engage in casual chatter. I'll respond when prompted, but that's about it.

      Now that that's out of the way, both of these things kind of got turned on their head in the beginning of November, when I met Alice (F28) through a Roleplaying Discord server. We had kind of eyed each other for a Roleplay session, and it went well. What I wasn't really prepared for, was her poking me in DMs afterwards just to chat. Not really my thing, buuuut, long story short we have now talked every day since then. We wish each other a good morning and good night. Sometimes we talk all day, sometimes we just get a few messages if we're busy. She's the first new friend I've made since high school, and that is a title I don't use lightly. The fact is, I just have zero interest in interacting freely with most people. Typically they end up annoying me in some way.

      I'm not shy at all, not particularly introverted, I just really don't like talking to people.

      And yet, somehow, I find myself trying to talk to Alice all day. I feel myself growing antsy when I go just a few hours without talking to her. Here's where the imbalance part comes from: Alice isn't like me. She has a group of people she talks with regularly, I'm just one of them. Whereas she is the only person I talk to daily. I completely acknowledge that this is 100% a me problem; I don't want this to come across as me being jealous of her friends. She struggles to balance time between her girlfriend, me, and her other friends, and most of the time I just feel kind of bad for her, like I'm a dog begging for table scraps, and she's trying to appease everybody.

      On the other hand, I can also pretty confidently look at our older conversations, and note that we don't talk as much as we used to. Our conversations used to be long and while we still sometimes have longer chats, it's really only when I get her on a tangent involving a particular interest of hers. I don't want to dig too deep into why that is, it could be the 'met someone new' energy has worn off and I'm just not as much of a priority anymore, maybe I became annoying at some point and remain blissfully unaware of it, I dunno.

      My question is, how do you handle wanting to spend more time with someone who just cannot spend that time with you?

      TL;DR: Made a new friend online, and she doesn't have nearly as much time for me as I have for her.

      23 votes
    10. How would I find a good photo printing service?

      It looks like there are a ton of options out there to get physical prints of digital photos - I’m seeing super cheap high volume websites, supermarket co-branded ones that look like a throwback to...

      It looks like there are a ton of options out there to get physical prints of digital photos - I’m seeing super cheap high volume websites, supermarket co-branded ones that look like a throwback to the old film development days, high price boutique services aimed at fine art photographers, and indie print shops attached to exhibition spaces. Problem is, I have no idea how to even begin differentiating between them!

      I’m putting together an album of photos as a gift for someone, and right now everything’s digital (either originally or from scanned negatives). I need about 200 prints, so the price differences between the various options I’m seeing add up pretty quickly - I don’t mind spending on quality, but in my experience that doesn’t necessarily correlate to price anyway.

      So, what hallmarks or hidden tells should I be looking out for that’ll help me find somewhere decent? Specific recommendations would also be great if anyone has suggestions that are in/ship to the UK!

      10 votes
    11. Are there certain conditions where an "Exemplary" label does not show?

      I just used the label on a comment and to my surprise it is not visible for me, neither is it visible when I log out. On other comments I do see the label in both situations. This makes me think...

      I just used the label on a comment and to my surprise it is not visible for me, neither is it visible when I log out.
      On other comments I do see the label in both situations. This makes me think there is a condition where the label is now shown or that something might be up with tildes itself.

      17 votes
    12. TV Tuesdays Free Talk

      Warning: this post may contain spoilers

      Have you watched any TV shows recently you want to discuss? Any shows you want to recommend or are hyped about? Feel free to discuss anything here.

      Please just try to provide fair warning of spoilers if you can.

      9 votes
    13. Steam Deck low battery health (% of original capacity) and formatting

      I believe a few of us have Steam Decks, thus I wanted to do this kinda public announcement. TL;DR If your Steam Deck reports low battery health (low % of original capacity) drain the battery until...

      I believe a few of us have Steam Decks, thus I wanted to do this kinda public announcement.

      TL;DR

      • If your Steam Deck reports low battery health (low % of original capacity) drain the battery until it shuts down and then fully charge and check again
      • Use your Steam Deck until it shuts down from time to time (say once every 6 months?) to keep your battery level indicator (and remaining time) precise

      Long version

      I have my Steam Deck since May 2022 and I put certainly over 1000 hours in gaming on it. I would believe if it was even approaching 2000 hours.

      Lately I played demanding game and battery was discharging rather fast with remaining time on full charge being under 1:30 hours, which I wasn't used to just a few months ago when it lasted over 2 hours even in demanding games (I limit to 30 fps and I also limit TDP/power). This weekend I jumped into desktop mode and checked the battery life which showed me what I feared - 65% of original capacity.

      I went on iFixit page and the price for new one is hefty 95€, but since Steam Deck got me so much enjoyment, I was ready to pay for it - if it was in stock, that is. I'm glad it wasn't!

      Since I have a bit of electronics and software background (hobby level), I realized that the charging chip (or whatever keeps the info about state of charge) was running since day 1 on relative data. What I mean: I have never discharged my Steam Deck lower than 10% and most of the times charging anywhere between 30-80%. And since the charging chip likely measures last fully charged capacity (and thus battery health) based on, well, how much it was charged and discharged all over again, it probably skewed its measurements in those three years.

      So I went on a "quest" to play until dead. And I was surprised when Steam Deck reached 3% battery and kept running for another hour (ligthweight game) until it was finally dead. Then I fully charged it and voila - battery health 90%!

      I have already said how it likely happened, but once more and in short: the charging chip needs to reach both limits, 0% and 100% of battery, from time to time = You have to let it drain fully here and there if you want your battery level indicator (and remaining time) to be precise or if you want to get the real state of your battery.

      A bit offtopic: I've had laptop that had 50% of original capacity. I have changed the battery cells inside the battery and let it fully discharge and charge again but the vendor locked the chip from "learning" the real capacity making the new cells useless because the chip still reported 50% thus telling me when I booted it up that the battery has to be changed and also telling me non-relevant remaining time based on this 50% battery health... I'm glad that Steam Deck is capable of re-learning this data and not playing dumb.

      27 votes
    14. Tildes Book Club Spring and Summer schedule 2025

      Warning: this post may contain spoilers

      Next week we will be discussing the City We Became. Our next book discussion after that will be at the end of January.

      I've organized this schedule so that longer books are followed by shorter ones. I look forward to reading with you.

      Last week in January : Kim Stanley Robinson Ministry for the Future,

      Last week in February: Trevor Noah Born a Crime,

      Last week in March: Dan Simmons Hyperion,

      Last week in April: Adrian Tchaikovsky Elder Race,

      Last week in May: Victor LaValle a People's Future of the United States,

      Last week in June: T Kingfisher A House with Good Bones,

      Last week in July: James McBride the Heaven and Earth grocery Store,

      Last week in August: Cats Cradle by Kurt Vonnegut

      Last week in September: Ted Chiang Stories of Your Life and Others

      14 votes
    15. What randomizers have you tried and what interesting runs have you had?

      Hopefully the title says it all, I decided to make this generic because I think all game randomization is cool. To be specific, this is not about games which have random elements, this is about...

      Hopefully the title says it all, I decided to make this generic because I think all game randomization is cool.

      To be specific, this is not about games which have random elements, this is about games which have been modded to introduce some form of randomization.
      The Pokemon games are reasonably famous for having fun randomizers.

      I posted this because I recently started a Dark Souls 3 randomized run and got given a heap of really nice sorceries and miracles right at the start of the game. Luckily also a catalyst too. It was like it was begging me to be a mage, even though it's apparently hard as hell.

      18 votes
    16. What are some examples of media that really captured lightning in a bottle?

      I've been feeling nostalgic and watching some old Top Gear recently. It has got me thinking about how remarkable the chemistry between the three hosts is and how the combination of those three,...

      I've been feeling nostalgic and watching some old Top Gear recently. It has got me thinking about how remarkable the chemistry between the three hosts is and how the combination of those three, the time that top gear ran, and the format they chose created such an incredibly successful and wide-reaching show. Despite many efforts no one has been able to make a car show to rival it.

      What are some other examples of this sort of phenomena? Where the right time, place, people and format come together to create something extraordinary? Doesn't have to be television necessarily, but given the example that spurred this question I figured this wasn't a bad place to post.

      31 votes
    17. Non-American, English language news sources

      Hey all, I've asked in the past but it feels even more pressing and I'm not sure I got all the recs, I'm looking for good news sources - newspaper, magazine, radio, etc - that provide a...

      Hey all, I've asked in the past but it feels even more pressing and I'm not sure I got all the recs, I'm looking for good news sources - newspaper, magazine, radio, etc - that provide a non-American, but preferably English language but translatable can work, perspective on their national affairs, American affairs and international affairs more broadly.

      I assume Canada, the UK, Ireland, Australia and New Zealand are among those most accessible, but I don't know which sources are more reliable. Or I can get a "news update" from RadioNZ or RTÉ but I'm not sure what programs to catch for more of international news.

      I can certainly check bias on a good bias checking website but if there are particular biases I'd love a heads up on those too. For example the Guardian is generally really good except I notice they're specifically bad about trans topics.

      I want to avoid tabloids, and people whose news is 3 hour daily videos. I'd like to avoid extreme bias. Free is great but I'm willing to subscribe to online access for a Canadian newspaper for example.

      (I am also interested in independent writers, like Heather Cox Richardson who is a historian that does daily news analysis and writeups with context. But I'm only following a few and they're all American so happy to diversify my sources. )

      Just looking to get the perspective on, well, lots of things from others countries and I have a lot of radio time I could be using for it.

      30 votes
    18. Music makers: what's the best way to create song drafts?

      "Song drafts" -- I'm not even sure if that's a thing but let's go with it. I have an outline for a whole album and some bits and pieces written. Rather than sitting down and starting to record...

      "Song drafts" -- I'm not even sure if that's a thing but let's go with it.

      I have an outline for a whole album and some bits and pieces written. Rather than sitting down and starting to record immediately, I'd like to start drafting out everything with MIDI or something to where I can play around with the sounds and also make notes of lyrics, chord shapes, etc. Bonus points if I can use something like Garage Band's drummer features so I don't have to worry so much about the percussion.

      What's the best software or website to do something like this? I'm imagining something like Fruity Loops or Guitar Pro, where I can plug in some guitar, bass, etc. tabs and include drums and other instruments. I would prioritize ease of use and speed of composition, since these are just going to be temporary sketches.

      Then, when I get the songs in a shape I am comfortable with, I will jump into the DAW and do the actual recordings.

      9 votes
    19. Recommend me a sappy TV drama with preferably >100 episodes

      I like crying to sappy bingeworthy tv dramas. I've just finished Parenthood, and before that I binged a lot of hospital ones like The good doctor, New Amsterdam, etc. The setting isn't really...

      I like crying to sappy bingeworthy tv dramas.

      I've just finished Parenthood, and before that I binged a lot of hospital ones like The good doctor, New Amsterdam, etc.

      The setting isn't really important, except I can't stand law enforcement settings.

      Spoken language doesn't matter as long as I can find it with subtitles.

      The important thing seems to be stories that are reasonably realistic where people live their lifes and care about each other.

      What do you recommend?

      Edit: below is a list of recommendations, mostly for me to have an easy spot to find them

      • Bunheads
      • Friday night lights
      • March Comes In Like a Lion
      • This is us
      • Shitt's creek
      • The crown
      • Brothers and sisters
      • Scrubs
      • Midnight Diner
      • The good place
      • Virgin river
      • Gilmore girls
      • Dawson's creek
      16 votes
    20. What is the optimal way to convert an RPG book to a text format?

      An RPG book is a book containing the rules and setting for a tabletop RPG game. Like Dungeons and Dragons 5th Edition, Worlds Without Number, Star Trek Adventures, etc. The fact that they are...

      An RPG book is a book containing the rules and setting for a tabletop RPG game. Like Dungeons and Dragons 5th Edition, Worlds Without Number, Star Trek Adventures, etc.


      The fact that they are rarely in text format always puts me off reading RPG books. I don't want to diminish the importance of art, but importing printed RPG books is prohibitively expensive, and reading huge PDFs on a laptop is not a good experience for me.

      I also find it unpleasant to navigate the complicated design of these books. They're distracting.

      I have a 6.8" Kindle Paperwhite but reading RPG PDFs on it is awful. RPG books have lots of art and complicated layouts. Unfortunately, there doesn't seem to be an easy way to make an RPG into text. I was seriously considering just copying the text and converting it to markdown myself (it doesn't need to be markdown, just something that I can convert into a format my Kindle understands) when I remembered chatGPT.

      Copying the text and asking GPT to make it into markdown worked okay, but it missed the tables. Sending an image of a page worked pretty well, so I think AI is the way here. But I am not a GPT subscriber and I bet I'll hit a limit at some point. Also, instead of sending pages individually, I would prefer to send the PDF and get the result in text. Even if there were limitations (like only 10 pages in one go), it would be an improvement.

      In any case, using chatGPT will be much better than doing it by hand. But is there an AI or other kind of PDF service that is better suited for that task, so I can reduce the amount of manual input?

      12 votes
    21. I have no idea to advance in my career toward data science

      I did a masters in data analytics, and then the niche I fell into in the working world was building dashboards, reports and spreadsheets of financial data for non-technical bureaucrats. Instead of...

      I did a masters in data analytics, and then the niche I fell into in the working world was building dashboards, reports and spreadsheets of financial data for non-technical bureaucrats. Instead of ensuring data quality by technical means, my current company often just has me manually reviewing and checking financial data. This is pretty frustrating to me because I have no education in finance, and the things I miss or get wrong are so second nature to my boss that he doesn't even see them as something I should have been trained on. The only technologies I use are SQL server and excel. Any proactive steps I've made to automate processes has been discouraged as not worth the time.

      I'm aware that most people spend years on tedious stuff before ever getting to work with more engaging technology, but honestly I'm starting to wonder if they've forgotten I'm not a finance guy. I want to move up in my career especially to escape my current role, but I'm feeling completely lost as to how. There's no obvious role in my company that could be a 'next rung of the ladder' to advance into, so there's nobody I can emulate to help chart a course. My boss had an unconventional path to his current role, and isn't really into manager stuff like career mentoring, so he's no help in that regard.

      To anyone with experience in data science, what is the advancement supposed to look like? What are the key skills I should be developing? Am I being too averse to learning the subject matter of the data I'm working on? Any insight is appreciated!

      13 votes
    22. Anyone sucessfully self-hosted Tildes instance?

      I would love to self-host a Tildes instance with my domain to create a community in my native language speakers. I saw, from old posts, that it is not an easy process at all. But I really love the...

      I would love to self-host a Tildes instance with my domain to create a community in my native language speakers. I saw, from old posts, that it is not an easy process at all. But I really love the concept and the style of Tildes. It is better than Reddit and other Fediverse platforms.
      Is there anyone who managed to host Tildes instance?

      I would be so glad to have some guidance.

      28 votes
    23. Open to collaborate and draw something for you

      I didn't know where to post this, sometimes I invite people on instagram to suggest ideas or things for me to draw and post; I found it's a nice way to interact on the internet in a different way...

      I didn't know where to post this, sometimes I invite people on instagram to suggest ideas or things for me to draw and post; I found it's a nice way to interact on the internet in a different way and challenge myself and practice at the same time. If anyone's interested maybe we can do it here, this is not for commissions and it's totally free, I'm just trying to do something fun and collaborative with strangers.

      Even if this doesn't take off feel free to contact me and see what we can do, I'd love to make something for somebody else, I can share some of my drawings so you know what to expect.

      Maybe we could organize and turn it into a monthly topic with a different prompt for anyone who wants to draw and participate and share. Would love to read your opinions on this.

      Apologies if this is the wrong space for it.

      45 votes
    24. Speculative fiction recommendations featuring fabric or fiber arts?

      I've decided to try fantasy bingo this year. The most obviously challenging category for me on the reddit list is the challenge to find a book I will enjoy featuring fiber or fabric crafting or...

      I've decided to try fantasy bingo this year. The most obviously challenging category for me on the reddit list is the challenge to find a book I will enjoy featuring fiber or fabric crafting or artistry.

      Does anyone have suggestions?

      I have read and enjoyed Surrender None by Elizabeth Moon which fits but I want to read something new and save rereads for the end of the year if I get stuck. Surrender None fits at least two bingo categories as it is also a story about disrupting systems.

      8 votes
    25. What have you been watching / reading this week? (Anime/Manga)

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was...

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of.

      If you want to, feel free to find the thing you're talking about and link to its pages on Anilist, MAL, or any other database you use!

      9 votes
    26. I really need advice and help

      I'm a mom of one, moved to another country a few years ago. I don't have friends or family who can help me or just briefly say "hi". Because of my kid, of course I'm mostly stuck at home. I'm...

      I'm a mom of one, moved to another country a few years ago. I don't have friends or family who can help me or just briefly say "hi". Because of my kid, of course I'm mostly stuck at home. I'm working, but don't have enough money to leave my kid with a nanny. I have my kid's father in the same city, but he can't take the kid at his house. He knows my situation (which I will write about above), but I don't think it's a good idea to bother him more, because I guess he has his own struggles.

      Anyway. At the start of the year, I broke up with my ex, because he was lying even about small things (he literally could change his messages to look better, not to change his grammar mistakes), hid stuff and I suppose I was a backup option or rebound or something, he hid a lot of stuff (only fans, had a lot of accounts everywhere, etc), he proposed to me during text when we fought and even said "oh f, let's get married, just come here!", it was a few times. And then he did nothing about it at all and even said "yeah, a lot of stuff we need to do before marriage" and it was the first time when I realized that those things were said just to pull me back, not because he really loved me. Also he threatened me with suicide from the start, when I tried to finish our talking. By the way it was a long distance relationship. He suggested I should pay half for the second trip, knowing I don't have enough money and then, after we broke up he wrote "yeah, you just understood that I don't have enough money, and used me for entertainment".

      Anyway at the start of the year I decided to end things. It ended with him threatening me with my private videos (which I asked him to delete 3 times and he lied 3 times that he did it). He threatened me for 4 days, including my birthday. Then he threatened me with suicide again. Then tried to guilt-trip me. Then again suicide, but he tried to blame me for this. Also, he wrote stuff online, he stalked me everywhere, I changed phone numbers a few times, deactivated my socials everywhere, I was isolated in real life and online. All this time I blocked all his accounts and newly made accounts also. I didn't drop a word.

      The first 2 months of the year I was like in the movie Midsommar, where, if you remember, girls with the main character cried out loud. I turned on this exact moment and cried with them like this for almost 2 months when my kid was sleeping and while working. The 3rd month was kind of ok, it was easier, I still got up with shivering, but at least I could handle that. And yesterday I checked his socials and it seems like he's doing just fine. And yes, he's finally stopped all attempts to reach me (he called it fighting).

      Now my questions:

      1. Am I right, that if he really wanted to, even after threatening me and all that stuff he did to me, he would take actions? Real actions.
      2. Previously I had suicide attempts. I am struggling again. I don't have money for a therapist, I used those emergency services to help myself, but they didn't care much. I'm doing all I can to help myself: free articles, podcasts, free resources to deal with suicide. But yes, I am really on the edge. I know I have my kid and I need to fight for my child, but I swear, I really can't, I swear, I really can't. I just wanted a family, I just wanted a partner, I thought he was a nice guy. I swear I can't.
        Please, give me any advice, whatever you have, please suggest something, maybe I just can't see some options, because I'm literally isolated and shocked. Please.​​​​​​​​​​​​​​​​
      19 votes
    27. Can anyone recommend a dead simple voice recorder?

      I'm looking for a handheld voice recorder that's as simple to use as possible for my dad. His memory is starting to fail and I'm wondering if this would help ease some tension that that is...

      I'm looking for a handheld voice recorder that's as simple to use as possible for my dad. His memory is starting to fail and I'm wondering if this would help ease some tension that that is causing.

      He has trouble with tech these days so unfortunately using an app on a phone isn't an option. The hurdle of getting the phone out and app open would be too much and that's assuming he remembers to use it and HOW to use it.

      I'm hoping for a device that just has a button that can be pressed or held down for short voice notes. I'm picturing the device being able to be plugged into a computer for saving the audio recordings. It would also be a huge bonus if there is some automatic transcription functionality that makes the notes searchable, though I bet there's software for that that doesn't have to come with or be part of the voice recorder itself.

      I can see lots of cheap options on Amazon but before I just start buying some to try I'm hoping someone here might have some experience in this area.

      I really appreciate any insight anyone is able to give.

      14 votes
    28. What lesser-known alternative would you recommend as a substitute for something more popular?

      Anything goes: foods, software, products, bands, websites, appliances, movies, programming languages, travel destinations, etc. The point of this topic is twofold: To surface some interesting...

      Anything goes: foods, software, products, bands, websites, appliances, movies, programming languages, travel destinations, etc.

      The point of this topic is twofold:

      1. To surface some interesting alternatives that could use more exposure.
      2. To highlight some of the issues with the currently popular option(s).

      Let us know your best “more people should know about this!” swaps, and sell us on why they’re better than the well-known option.

      79 votes
    29. Seeking new wireless router for high bandwidth streaming

      I've not bought a new router since 2010 because I try to physically wire everything in my house so it's pretty much my phone using Wifi. However, I've found great use for my Steam Deck as a...

      I've not bought a new router since 2010 because I try to physically wire everything in my house so it's pretty much my phone using Wifi.
      However, I've found great use for my Steam Deck as a streaming platform on my TV using Moonlight and I'd like to get a new, good router to support it.
      I think the Steam Deck can support Wifi 6, but I'd like a Wifi 7 router if possible so I can future proof the possibility of getting a new wireless VR headset too. Though I'm not 100% sold to the idea if there's good argument to just buy Wifi 6 today.

      Long story short, I'm finding it really hard to choose what router to buy. There's so much "gamer" junk.
      Reviews are all over the place too, site A will give a router a top recommend and site B will list off a huge range of cons.

      Does anyone have any advice? I just want a good, reliable, high throughput router and I can't be bothered with the returns process to try and buy if possible.

      12 votes
    30. Formula 1 Japanese Grand Prix 2025 - Results

      Warning: this post may contain spoilers

      Overheard in the Cooldown Room:

      Piastri: "That's all the highlights? That's all that happened in that race?

      Norris: "Nothing happened. I didn't think there was one overtake [laughs]."

      Piastri: "For a race that felt like it was pretty flat out, nothing...nothing happened."

      Haha, never change, Oscar. Never change.

      I'm going to bed.

      Next race:

      Bahrain Grand Prix
      Bahrain International Circuit
      Sunday, April 13, 2025

      Grand Prix Results -- SPOILER
      Pos No Driver Car Laps Time/retired Pts
      1 1 Max Verstappen Red Bull Racing Honda RBPT 53 1:22:06.983 25
      2 4 Lando Norris McLaren Mercedes 53 +1.423s 18
      3 81 Oscar Piastri McLaren Mercedes 53 +2.129s 15
      4 16 Charles Leclerc Ferrari 53 +16.097s 12
      5 63 George Russell Mercedes 53 +17.362s 10
      6 12 Kimi Antonelli Mercedes 53 +18.671s 8
      7 44 Lewis Hamilton Ferrari 53 +29.182s 6
      8 6 Isack Hadjar Racing Bulls Honda RBPT 53 +37.134s 4
      9 23 Alexander Albon Williams Mercedes 53 +40.367s 2
      10 87 Oliver Bearman Haas Ferrari 53 +54.529s 1
      11 14 Fernando Alonso Aston Martin Aramco Mercedes 53 +57.333s 0
      12 22 Yuki Tsunoda Red Bull Racing Honda RBPT 53 +58.401s 0
      13 10 Pierre Gasly Alpine Renault 53 +62.122s 0
      14 55 Carlos Sainz Williams Mercedes 53 +74.129s 0
      15 7 Jack Doohan Alpine Renault 53 +81.314s 0
      16 27 Nico Hulkenberg Kick Sauber Ferrari 53 +81.957s 0
      17 30 Liam Lawson Racing Bulls Honda RBPT 53 +82.734s 0
      18 31 Esteban Ocon Haas Ferrari 53 +83.438s 0
      19 5 Gabriel Bortoleto Kick Sauber Ferrari 53 +83.897s 0
      20 18 Lance Stroll Aston Martin Aramco Mercedes 52 +1 lap 0

      DOTD: Yuki Tsunoda

      Additional info from Multiviewer.

      Source: F1.com

      14 votes
    31. Tips for attending a protest?

      Hello all, as the title implies, I will be attending my first ever large scale protest(USA based) in person. I’m wondering if people have any advice of what to expect/do and how to stay safe ?...

      Hello all, as the title implies, I will be attending my first ever large scale protest(USA based) in person.

      I’m wondering if people have any advice of what to expect/do and how to stay safe ?

      Thank you !

      PS - was not sure where to post this.

      53 votes
    32. What is the current state of facial recognition or other morphological detections?

      Curious to know if we have a current morphometric based system that can detect with the same accuracy as DNA testing, if two people are related, without a priori knowledge that they are related,...

      Curious to know if we have a current morphometric based system that can detect with the same accuracy as DNA testing, if two people are related, without a priori knowledge that they are related, if that makes sense.

      Meaning, if a system is fed 100 random photos of humans, but is not told "there are definitely related people in here" can it match it as accurately as a DNA test of those same humans' DNA samples?

      context

      I was wondering to myself, "you know, for as dissimilar as our DNA is to our siblings, it's actually quite remarkable that we look so similar." Which lead me to wondering, do we look similar to our siblings, or are our brains so deeply primed to think we look similar to those who are related to us, that we do indeed "look similar," to our brains(or simulations produced by our brains). If that makes sense.

      8 votes
    33. Looking for recommendations for a dumb phone (Canada)

      So I am considering switching to a dumb phone. All I really need it to do is call and text. However, the texting part might be slightly tricky. I am fine learning how to text using a numpad, but...

      So I am considering switching to a dumb phone. All I really need it to do is call and text. However, the texting part might be slightly tricky. I am fine learning how to text using a numpad, but being able to do group chats would be something I would want to keep. Using Google Messages as my texting app even on an older Samsung has worked to get effective group chat functionality, so being able to access the Google Play Store to download it would be beneficial. Other than that, I don't have any other tasks I need to do on my phone. Does anyone have any recommendations?

      A list of requirements:

      • Available in Canada
      • Can handle group chats or can download and install Google Messages
      • Ideally not too expensive
      8 votes
    34. What would your past self say about your current self?

      What would your past self(intentionally vague) say about your current self(also intentionally vague)? my own answer My past self would be surprised by the following: I am both less black and white...

      What would your past self(intentionally vague) say about your current self(also intentionally vague)?

      my own answer

      My past self would be surprised by the following:

      I am both less black and white and more black and white thinking than I used to be.
      I no longer put as heavy of an emphasis on Science being the only way to explain things.
      I have chosen to have less reliance on external validation.
      I burned out and hit at least two rock bottoms, and still have not fully recovered from them.
      I am pansexual and have at least grey thoughts about monogamy.
      I am more spiritual.
      I struggle socially (not in making friends, but how much anxiety or exhaustion I have around it)
      I am disabled.
      I can no longer travel or do physical activities that were a large part of my life.
      Experiencing pain that is constant and chronic.
      I would mourn so many things at such young an age.
      My family would become disconnected.
      I would have a much better relationship with my dad, but not my mom.
      I would live in a non-high density or HCOL area.
      I would consider a career outside of lawyer, psychiatrist, or scientist.
      Difficulty reading or learning.
      Commitment issues.
      Losing some of my best friends or other partners.
      I am neurodivergent (though that is only because the terminology did not exist at the time).
      Not being able to solve all problems or get myself out of everything, a drop in self-reliance, see burnout.
      Liking children and desiring to be a mentor or some sort of male au-pair.
      No longer like drinking, but do enjoy cannabis, ketamine, and LSD.

      My past self would not be surprised by:
      Still a perfectionist
      Still argumentative
      Still a clown and silly
      Enjoyment of philosophy and law
      Holding out to not have a car for decades only to be saddled with a lemon.
      Constant boredom and a need to know "why" or learn something new or otherwise seek out novelty and stimulation.
      Don't know what to do in life. Want to be a constant traveler and learner.
      Still hate cars.
      Still have a pretension and elitist problem.
      Struggle with self-love and self-worth, probably self-compassion too.
      Overly generous.
      Overly forgiving.
      Lover of showers and baths.
      Foodie despite hating the word and being anosmic. Becoming anosmic for two years and counting should be on the surprised list.
      I learn best by visual instruction as well as hands on.

      My current self, for the most part, likes itself in a way that I hadn't experienced for a long time. It's like my body took a break for ten years, deciding it hated itself and wanted constant improvement, all the while being its own worst critic and never really cheering it on. My current self is turning away from this mindset, and it feels great to have a more optimistic and self-satisfying life, but I just wish my physical body had not taken such a toll over the last few years.

      Look forward to hearing others' thoughts.

      29 votes
    35. 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.

      8 votes
    36. 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.

      10 votes
    37. Is University Of The Third Age safe?

      An elderly family member has become involved with this organization and it sounds cultish and dangerous at first listening. Anyone aware of them or can offer any insight? I don't much trust their...

      An elderly family member has become involved with this organization and it sounds cultish and dangerous at first listening. Anyone aware of them or can offer any insight? I don't much trust their official sources.

      Family member has to pay fees to be a part of this thing, I'm concerned that they may becoming part of something unsavory.

      Nothing would please me more if I'm being overly paranoid about this, but the way they describe it sounds suspect as all heck.

      Edit: This is UK related

      11 votes
    38. When is it okay to give up?

      When is is okay to give up on making a situation work? I legitimately ask, as I’ve pretty much given up on most “immediate” family in recent months. As an American federal civilian employee, I...

      When is is okay to give up on making a situation work?

      I legitimately ask, as I’ve pretty much given up on most “immediate” family in recent months. As an American federal civilian employee, I found the rhetoric of my immediate family crazy enough to warrant cutting them out of my life. I can’t get beyond their clear contempt for my livelihood. Despite conversations regarding how a certain admin’s policies are making my life worse, I have been told constantly not to complain because it could be worse. So I have “given up” and no longer interact with them. There have been further conversations prior to this, but I don’t think it’s necessarily important to the conversation.

      I ask this legitimately, as I am feeling guilt over it, despite the fact that I no longer feel dread or anxiety about it. I haven’t visited immediate family in over 2 months now, despite living within walking distance.

      At what point should one continue making attempts to repair to maintain relationships, even familial, and when is it okay to end them?

      35 votes
    39. Is there any source for news that hits the editing floor? That is, doesn't make the published edition?

      I figure that for each new story that hits a site like Reuters, theres at least a few that don't get chosen, hitting the editing floor so to speak (like scenes of a film falling to the editing...

      I figure that for each new story that hits a site like Reuters, theres at least a few that don't get chosen, hitting the editing floor so to speak (like scenes of a film falling to the editing room floor). Doe anyone know where these might be reported?

      Like, an rss feed of some editor somewhere that lists the stories they passed over.

      7 votes
    40. Are any of you fans of the older Harvest Moon/Story of Seasons games?

      I've been a fan of the farming/life sim/role playing/cozy games or however you want to label these games since I was a kid and my older brother brought home a new game for the Nintendo 64: Harvest...

      I've been a fan of the farming/life sim/role playing/cozy games or however you want to label these games since I was a kid and my older brother brought home a new game for the Nintendo 64: Harvest Moon 64. Over the years, I played several titles in the series through the Wii/NDS era, before my tastes changed, and I found myself playing more online games with my friends and just less gaming overall.

      Stardew Valley releasing was a huge event for the genre and I do greatly enjoy the game (even though I've yet to finish a play through as I keep restarting after taking a break from playing) as it captured the feeling of the early Harvest Moon games really well. It also got me to start the habit of having an N64 emulator and a copy of Harvest Moon 64 on practically every device I own.

      There have been some recent remakes of older games, specifically Friends of Mineral Town and A Wonderful life, but I didn't enjoy the art style and some of the changes made to the games, which ended up with me not picking them up.

      I was curious if anyone else was a fan of the series (or one particular game in the series), or if there are any recent games that you felt are great in this genre.

      10 votes
    41. Is it possible to completely hide one’s activity on the Internet from one’s ISP?

      As the years go by, I’ve become increasingly annoyed (I choose that word intentionally) at the thought that there’s some “record” of my activity on the Internet somewhere, which was probably put...

      As the years go by, I’ve become increasingly annoyed (I choose that word intentionally) at the thought that there’s some “record” of my activity on the Internet somewhere, which was probably put together by my ISP. I “don’t have anything to hide” (other than perhaps the one or other ROM or movie that I download), but I also don’t want to randomly get fined or put in prison if, in a few years, our governments decide to retroactively criminalize certain activities (I’m thinking mostly about piracy).

      I’m not tech savvy though. That’s not because I haven’t tried. I have. I spent countless hours reading about how one can keep one’s activity on the Internet “private”. To my knowledge, it isn’t actually possible. I mean, even if I didn’t use my real name anywhere, or didn’t have any social media accounts (thankfully, I don’t), just the fact that I have to use an ISP to surf the web means that at least they are “spying” on me.

      So, I’m approaching all of you wonderful, tech savvy people (rather than ChatGPT or a search engine) to ask you if there’s something that I’m missing, and if there is a way (preferably a fool-proof one) to stop my ISP (or “anyone” for that matter) from collecting data on my activity on the Internet (particularly when I download ROMs or movies, which is the only “illegal” thing that I ever do).

      24 votes
    42. TV Tuesdays Free Talk

      Warning: this post may contain spoilers

      Have you watched any TV shows recently you want to discuss? Any shows you want to recommend or are hyped about? Feel free to discuss anything here.

      Please just try to provide fair warning of spoilers if you can.

      9 votes