• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Andor discussion thread

      Warning: this post may contain spoilers

      Haven't seen a whole lot of discussion about this show on tildes. Not in weekly threads nor a main thread - so here is one!

      It's a 9/10 for me.

      I waited until all of season 2 was out before starting it. Realized I had forgotten almost everything since season 1 though, so rewatched that first. It turned into a binge of both seasons - I just could not stop! It has been probably 3 years since I was so glued to the screen and this engaged in a tv show (Euphoria season 1),

      I will skip an analysis or further review but every character was good. Every actor delivered. Just great all around. Season 2 (9.5/10) even better than season 1 (8.5/10).

      So anyways, discuss! More than happy to have my feelings about it validated lol, and also see other takes on it.

      47 votes
    2. What programming/technical projects have you been working on?

      This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...

      This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

      13 votes
    3. Tildes Minecraft Survival

      Server host: tildes.nore.gg (Running Java 1.21.4) Bluemap: https://tildes.nore.gg Playtime Tracker: https://tildes.nore.gg/playtimes.html Tildes website extension (shows online status & location):...

      Server host: tildes.nore.gg (Running Java 1.21.4)
      Bluemap: https://tildes.nore.gg
      Playtime Tracker: https://tildes.nore.gg/playtimes.html
      Tildes website extension (shows online status & location): Firefox (Desktop and Android) - Chrome
      Verification site: https://verify.tildes.nore.gg
      Patreon: https://www.patreon.com/TildesMC

      Plugins and Data Packs Data Packs:
      • Terralith - Overworld terrain upgrade
      • Nullscape - End terrain upgrade
      • Armor Statues [Vanilla Tweaks]
      • Bat Membranes [Vanilla Tweaks]
      • Cauldron Concrete [Vanilla Tweaks]
      • Husks Drop Sand [Vanilla Tweaks]
      • Mini Blocks [Vanilla Tweaks]
      • More Mob Heads [Vanilla Tweaks]
      • Player Head Drops [Vanilla Tweaks]
      • Silence Mobs [Vanilla Tweaks]
      • Wandering Trades [Vanilla Tweaks]

      Plugins:

      • Bluemap - Adds a live 3D web map
      • Clickable Links - Makes http URLs in chat clickable (only for registered players)
      • CoreProtect - Records all block/container/mob changes (Anyone can look up changes with /co inspect)
      • EasyArmorStands - GUI for editing armor stands
      • Hexnicks - Enables Tildes usernames to be displayed
      • LuckPerms - Locks down unregistered users
      • Nerfstick - Allows survival use of the minecraft:debug_stick item (requires admin to spawn in)
      • Rapid Leaf Decay - Increases the speed of leaf decay by 10x
      • WorldEdit - Used for occasional admin stuff
      • WorldGuard - Prevents unregistered users from changing anything in the world

      The server operates on a soft whitelist. Anyone can log in and walk around, but you need a Tildes account to gain build access.


      New Thread

      16 votes
    4. Help me understand vim motions

      I use vim on remote servers or on my machine to edit single files. I, however, use it in a very basic sense, I do not use any vim motions. I enter edit mode, I change what I need to change, exit...

      I use vim on remote servers or on my machine to edit single files. I, however, use it in a very basic sense, I do not use any vim motions. I enter edit mode, I change what I need to change, exit edit mode and save and quit, that's it.

      Recently, I've been looking for alternatives to Visual Studio Code as Microsoft is starting to push Copilot very heavily and while I could use a cleaned up fork, the other concern is with more and more essential extensions becoming closed source and subject to Microsoft's licensing. And vim is a text editor that pops up over and over when I ask for recommendations.

      A few days ago I've listened to No Boilerplate's Writing at the Speed of Thought which brings up a point about vim and vim motions being designed around the human body and how "editing by letters is extremely unnatural ... [and] extremely ill-suited to our nature".
      That just doesn't sit well with me and may be the reason why vim never fully clicked with me. For context, I've been using computers in some capacity since a very early age, so perhaps the 'unnatural' way I've learned is so ingrained that I just can't make the switch, maybe I just think about things in a way that is more computer-centric just due to that as well.

      I am still on my quest to replace VSCode and I would love to make a switch to something that's less attached to a single corporation that can pull the rug from under me at any time. A part of that quest I guess turned out to be trying to understand vim and maybe finally making it click for me, so I turn to the wonderful community of Tildes for help :)

      Thank you

      22 votes
    5. Offbeat Fridays – The thread where offbeat headlines become front page news

      Tildes is a very serious site, where we discuss very serious matters like socialism, videos and gender affirming care. Tags culled from the highest voted topics from the last seven days, if anyone...

      Tildes is a very serious site, where we discuss very serious matters like socialism, videos and gender affirming care. Tags culled from the highest voted topics from the last seven days, if anyone was obsessive.

      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!

      12 votes
    6. Is there a sane way to use Git as a glorified sync tool?

      I am not a programmer nor am I in IT, but I like to use some of the same tools they use. I use Emacs for writing fiction and I like it a lot. One of the packages I use with Emacs is...

      I am not a programmer nor am I in IT, but I like to use some of the same tools they use. I use Emacs for writing fiction and I like it a lot. One of the packages I use with Emacs is git-timemachine, which allows me to visualize all the previously commited versions of the file I am currently working on. It serves as a very good and very reliable undo system. All my writing is on a private repo on Github. My usage is so simple and basic, Git/Github only serves as a kind of backup and undo (I know Git is not a backup, so I regularly download my repos as zips and send to OneDrive as an extra. They are also always available offline in the machines work, of course).

      The problem is, sometimes I work on different machines, and sometimes on different operating systems on the same machine (via dual boot). So I would like to know if there's an easy way to always "sync" the local mirror I am currently working on with the latest changes (also making sure that all changes are pushed). Essentially, I am asking if I can make Git work like Dropbox or OneDrive by automatically accept changes as long as they are the most recent version of a file. I do not wish to go through diffs approving every single change.

      I understand I could use something like rclone for that, but their bisync feature is still very new and not considered reliable. Also, I already use Git and it is good for me. So I would prefer not adding an extra piece to the puzzle.

      I am familiar with cron, have an elementary understanding of shell scripts, and can follow instructions.

      So, can Git do the job?

      28 votes
    7. May 2025 Backlog Burner: Week 4 Discussion

      Week 4 has begun! Post your current bingo cards. Continue updating us on your games! If you did not participate in Week 1 but want to start this week, that's fine! Reminder: playing bingo is...

      Week 4 has begun!

      Post your current bingo cards.
      Continue updating us on your games!

      If you did not participate in Week 1 but want to start this week, that's fine!
      Reminder: playing bingo is OPTIONAL.

      Quick links:


      Week 3 Recap

      10 Participants played 7 bingo cards and moved 38 games out of their backlogs!
      There were 0 bingo wins.

      Participants played as at least 7 animals:

      • a dolphin
      • a frog
      • a martian
      • a rat
      • two cats
      • a squirrel

      At least 1 of those animals possessed a gun.

      68% of the games played this week started with a letter in the first half of the alphabet.

      Thus far, a total of 107 games have been played for the May 2025 Backlog Burner.

      Game List:

      Week 2 Recap

      9 participants played 8 bingo cards and moved 46 games out of their backlogs!

      There was 1 bingo win. Congrats to u/Durinthal!

      Games were played at at least 1 major gaming convention.

      8 games played had at least five words in their titles.

      Game list:

      Week 1 Recap

      10 participants played 7 bingo cards and moved 23 games out of their backlogs!

      At least 6 different platforms were used: Nintendo DS, PC, Playdate, Switch, Wii U, Wonderswan

      There were 0 bingo wins.

      • 4 people played Flow bingo cards
      • 1 person played a Flow Golf bingo card
      • 2 people played Flux bingo cards
      • 3 people played free choice

      Game list:

      16 votes
    8. St. Louis local bookstores

      Last time I asked for local bookstore recs I had an AMAZING time visiting local bookstores in Minneapolis!! I'm going to St. Louis this weekend and I would love recs again! Some extra info: Not...

      Last time I asked for local bookstore recs I had an AMAZING time visiting local bookstores in Minneapolis!! I'm going to St. Louis this weekend and I would love recs again!

      Some extra info:

      • Not shopping for any kids currently so children's sections don't matter to me and I would not go to an all-children's bookshop (though I deeply appreciate their existence)
      • Primary interest is sci-fi & fantasy, so given the choice between a bookstore with a good overall selection, and a bookstore with a not-great overall selection but incredible spec fic section, I would go to the latter
      • My free time will mostly be on Monday, so both store opening & Memorial Day traffic patterns are relevant to me. If the traffic is expected to be untenable I might stay in my hotel instead, but that's helpful to know too

      But, all that said, I would love to hear about any bookstores at all in St. Louis that you enjoy going to!

      7 votes