• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Tildes Book Club discussion - Cloud Atlas by David Mitchell

      Warning: this post may contain spoilers

      This is the first of an ongoing series of book discussions here on Tildes. We are discussing Cloud Atlas.
      Our next book will be Piranesi, sometime in the third week of April.

      I don't have a particular format in mind for this discussion, but I will post some prompts and questions as comments to get things started. You're not obligated to respond to them or vote on them though. So feel free to make your own top-level comment for whatever you wish to discuss, questions you have of others, or even just to post a review of the book you have written yourself.


      For latecomers, don't worry if you didn't read the book in time for this Discussion topic. You can always join in once you finish it. Tildes Activity sort, and "Collapse old comments" feature should keep the topic going for as long as people are still replying.
      And for anyone uninterested in this topic please use the Ignore Topic feature on this so it doesn't keep popping up in your Activity sort, since it's likely to keep doing that while I set this discussion up, and once people start joining in.

      24 votes
    2. Offbeat Fridays – The thread where offbeat headlines become front page news

      Tildes is a very serious site, where we discuss very serious matters like glassdoor, monopolies and steam.families. 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 glassdoor, monopolies and steam.families. Tags culled from the highest voted topics from the last seven days, if anyone was curious.

      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!

      4 votes
    3. Fun programming challenge: figure out which sets of passports grant visa-free access to the whole world

      Hey there, I wanted to know which sets of passports grant together visa-free access to every country in the world, but I could not easily find that info online. So I figured that I could try to...

      Hey there,

      I wanted to know which sets of passports grant together visa-free access to every country in the world, but I could not easily find that info online. So I figured that I could try to write a small program to determine these sets of passports myself, and then it occurred to me that it would probably be a fun programming challenge to organize, so here we go.


      Here's the challenge.

      1. Scrape the data you need for instance from The Henley Passport Index.
      2. Design a clever algorithm to efficiently find out which are the smallest sets of passports that will grant you visa-free access to every country in the world.
      3. Optional. Allow the user to specify which passports they already hold and find out which sets of passports would complement their passports well.
      4. Optional. Rank the sets of passports by how easy it is to acquire citizenship in those countries.

      The choice of the programming language is yours, bonus points if you write it in assembly 😂

      Feel free to collaborate and share your solutions (the algorithms and the actual results) in the comments, and feel free to share your own twists to the challenge that could make it even more fun & interesting.

      The person with the most clever, efficient and elegant algorithm wins!

      Happy coding folks!

      32 votes
    4. Seems like all socials are being scraped for AI and personal/aggregate data. Is Tildes?

      I was just reminded of that again when going back and looking at some of my old posts on reddit which is openly selling online data. Prompted me to use Redact which erases and overwrites comments...

      I was just reminded of that again when going back and looking at some of my old posts on reddit which is openly selling online data. Prompted me to use Redact which erases and overwrites comments before deleting them. But that got me wondering if the same is true of Tildes? And how would we know?

      34 votes
    5. How do you keep your home smelling nice?

      Assume cleaning is done on a regular basis. My apartment has a subtle "scent" from, what I assume to be, the vinyl flooring wax. I'd like that to not be the smell visitors first experience. I'm...

      Assume cleaning is done on a regular basis. My apartment has a subtle "scent" from, what I assume to be, the vinyl flooring wax. I'd like that to not be the smell visitors first experience.

      I'm considering an air purifier/diffuser, but don't know if they're effective.

      32 votes
    6. New Music Fridays: Kacey Musgraves, Four Tet, Tierra Whack and more

      This is a thread to discuss 2024 releases that have recently arrived on our doorstep, or been announced for the future. Feel free to share albums, singles, EPs or reissues that have caught your...

      This is a thread to discuss 2024 releases that have recently arrived on our doorstep, or been announced for the future. Feel free to share albums, singles, EPs or reissues that have caught your eye and interest, or share your thoughts about any new music that you've had the chance to listen to this week.

      Discussion Points
      Is there anything you've been looking forward to listening to?
      Any releases that have surprised you?
      Have you listened to any new music recently? What are your thoughts?
      What have you enjoyed from these artists in the past? How does their latest work compare?

      Links:
      Pitchfork - Out This Week
      AllMusic - All New Releases
      Stereogum - New Music

      ~~ Feedback on the format welcome
      7 votes
    7. Please proofread this AI-generated AutoHotkey script

      For my job I need to copy a person's name out of a field and split it into first and last names. I have a AHK script that can do this but my version only works with simple, one-word,...

      For my job I need to copy a person's name out of a field and split it into first and last names. I have a AHK script that can do this but my version only works with simple, one-word, non-hyphenated names. I tried prompting Gemini as below.

      There is a line of text consisting of one or more words, a comma, then one or more words. write an autohotkey 1.1 script to select everything before the comma, store it to a variable called firstname, then select everything after the comma and store it to a variable called lastname. thanks

      (the firstname and lastname variables should be swapped as the last name would come before the comma, that was my error)

      Here's the AutoHotkey 1.1 script to achieve what you described:

      ; This script splits a text line into first and last name based on a comma
      
      #NoEnv  ; Recommended for performance and compatibility.
      SendMode Input  ; Simulates keystrokes for reliable input.
      
      ; Function to split the text
      Func SplitText(_text, firstName, lastName) {
        StringSplit, parts, _text, `,`
        if (parts[1]) {
          firstName := parts[1] ; Assign first name
          lastName := SubStr(_text, 1 + StrLen(parts[1])+1) ; Extract last name after comma (including space)
        } else {
          firstName := _text ; Handle cases without a comma
          lastName := ""
        }
      }
      
      ; Hotkey to trigger the script (replace F2 with your desired key)
      F2::
        Send, ^c ; Copy the selected text to clipboard
        clipText := ClipboardAll  ; Read the clipboard content
        SplitText(clipText, firstName, lastName) ; Call the function to split the text
        MsgBox, First Name: %firstName%`nLast Name: %lastName%
      
        ; Optional: Clear clipboard to avoid unintended pasting (comment out if not desired)
        ; Clipboard := 
      Return
      

      Explanation:

      #NoEnv and SendMode Input: These lines are included for performance and reliable input simulation.
      Func SplitText(_text, firstName, lastName): This function takes the text (_text) as input and assigns the split parts to variables firstName and lastName.
      StringSplit, parts, _text, ,:** Splits the text based on the comma (,`) delimiter.
      if (parts[1]):** Checks if there's a second part (i.e., text after the comma).
      If true, the first part is assigned to firstName and the text after the comma (including the space) is extracted using SubStr and assigned to lastName.
      else:** If there's no comma, the entire text is assigned to firstName and lastName is set to an empty string.
      F2::: This line defines a hotkey. When F2 is pressed, the following actions occur:
      Send, ^c:** Copies the selected text to the clipboard.
      clipText := ClipboardAll:** Reads the copied text from the clipboard and stores it in the variable clipText.
      SplitText(clipText, firstName, lastName):** Calls the function to split the copied text into first and last names.
      MsgBox:** Displays a message box showing the extracted first name and last name.
      Optional: Clear Clipboard: The commented line Clipboard := clears the clipboard content after processing. Uncomment this line if you want to avoid accidentally pasting the copied text elsewhere.

      Edit: To answer questions, and provide info I probably should have from the beginning: I'm a medical transcriptionist using AHK with my job's software (Emdat Inscribe) and a word expander (Instant Text). Inscribe seems to be browser-based but functions as a standalone app. I already have dozens of AHK 1.1 macros; my .ahk file has over 2000 lines, although I'm sure it's terribly written code. This is also why I'm disinclined to switch to AHK 2.0 since I have no desire to rewrite everything unless absolutely necessary. The first part of this macro is a bunch of keypresses to jump to the relevant patient info field, then this part would be used to store the names appropriately. I already have hotkeys to use the variables as needed and most macros are limited with #ifwinactive to Inscribe.

      6 votes
    8. 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!

      5 votes
    9. Is a NAS for me?

      Hi, I keep reading about this thing called a "NAS" and I don't have in my social network a bunch of reasonable geeks to figure out if this is something for me or if it is overkill and I can get by...

      Hi, I keep reading about this thing called a "NAS" and I don't have in my social network a bunch of reasonable geeks to figure out if this is something for me or if it is overkill and I can get by with less -- trying to be frugal and all.

      The Situation

      At the moment, I have a Raspberry Pi 3 (that a colleague gifted me) which runs Jellyfin, mostly for music. I'd use it for watching series and movies, but given how slow it is at transferring files and the fact that it has a 1GB (maybe 2GB) RAM... I was afraid to break it. On top of that, its storage is a years-old external hard drive.

      I use Jellyfin mostly to have music on my iPhone. I can access it when I'm out and about on Tailscale. I hope to find a solution for my photos as well.

      I'd also occasionally use the pi to experiment with some self-hosted open-source apps.

      I constantly find myself wanting to upgrade because I want to also backup my important photos (with face recognition if possible) and documents "offline" (i.e. in my local network) to something more stable than an aging hard drive. They're all in the cloud, but a second backup option could be great.

      What I understand from reading about NAS's is that I basically have one, it's just not... reliable?

      The Question

      I understand there is definitely a buy-in cost for buying an actual NAS, I'd like to know how much... so that I can make an informed decision on if and when I would buy it. What is an entry-level NAS and how much will it cost? What could it NOT do that an RPi could, and vice-versa? Am I missing an in-between or even an alternative solution for my use case? Is it overkill and should I just upgrade the pi? What are my options?

      Thanks in advance for reading my post!

      20 votes
    10. Movie of the Week #21 - High Noon

      Warning: this post may contain spoilers

      Third movie of Best Picture nominees that didn't win is High Noon from 1952 directed by Fred Zinnemann and starring Gary Cooper and Grace Kelly. Gary Cooper won for best actor, Dimitri Tiomkin won for the score and for the title song "The Ballad of High Noon ("Do Not Forsake Me, O My Darlin'")"

      IMDb
      Letterboxd
      Wikipedia

      Besides any thoughts on this movie, have you seen the other nominees that year and do you think this deserved the win instead?

      The other nominees:

      • The Greatest Show on Earth (winner)
      • Ivanhoe
      • Moulin Rouge
      • The Quiet Man

      The rest of the schedule is:

      • 25th: Saving Private Ryan
      10 votes
    11. Other artists like Freya Catherine, Jillian Aversa, Erutan?

      I really like listening to video game music covers, some of my favorite artists are Freya Catherine, Jillian Aversa, Erutan, Malukah, Karliene. Does anyone else enjoy this kind of music, and do...

      I really like listening to video game music covers, some of my favorite artists are Freya Catherine, Jillian Aversa, Erutan, Malukah, Karliene. Does anyone else enjoy this kind of music, and do you have any recs for similar artists (especially if they are still actively posting music) (and bonus points if they have a bandcamp page)?

      3 votes