• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. 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
    2. 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
    3. 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
    4. 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
    5. 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
    6. 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
    7. 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
    8. Book recommendation: A Half-Built Garden, by Ruthanna Emrys

      This sci-fi book starts out as a first contact novel. Aliens show up and say "Your planet is dying--we're here to rescue you! Come join our galactic federation!" Here's the twist: the protagonist...

      This sci-fi book starts out as a first contact novel. Aliens show up and say "Your planet is dying--we're here to rescue you! Come join our galactic federation!"

      Here's the twist: the protagonist emphatically refuses. The world is sick, but humanity is healing it. Successfully. They have been for decades. And they refuse to leave Earth and go explore the stars until the job is done.

      Thus begins this story's major conflict. The aliens have visited a few other planets with signs of advanced civilization, and in every case they've arrived too late--the other civilizations have extincted themselves by the time they arrive. The aliens are emphatic that technological societies cannot thrive on a planet's surface; in every other case, either the planet or the civilization dies. The humans are unfazed. Repairing an ecosystem is possible, they say. We've proven it. Are proving it. Yes, there's a hurricane bearing down on us, but the storms get a little less intense every year.

      This is a story about meeting people utterly unlike you and finding common ground with them. It's about imagining a better future and working doggedly toward it.

      Eco-focused stories usually have a back-to-the-land, pastoral vibe; they want to get in touch with nature by reducing our use of technology as much as possible. That's not this book at all. Our heroes use neural interfaces and networked decision-making algorithms to manage the restoration of the ecology. They write algorithms that weight the vote in favor of community-defined ethical preferences. Technology isn't the enemy--corporations are, which is why the corps were exiled decades ago. Networks and algorithms can be powerfully good when they're used to benefit the many instead of the few.

      This book has so much heart and so much beautiful imagery. It is gloriously weird in lots of ways I'm not going to spoil. It's a hopeful book that's giving me ideas I'm starting work on now. You can find it here or in your local library.

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

      6 votes
    10. Tildes modded Minecraft server is now up (whitelisted)

      The link to join is tildes.modded.fun It is whitelisted, so just drop your username either in the comments or in my DMs and I'll add you as soon as I see it. I saw that @teaearlgraycold is...

      The link to join is
      tildes.modded.fun
      It is whitelisted, so just drop your username either in the comments or in my DMs and I'll add you as soon as I see it.


      I saw that @teaearlgraycold is possibly deciding to reopen the vanilla Minecraft server at some point. So, I decided that I'd start up a modded server instead of a vanilla one. Let's see how it goes. It's still in its early stages, like it doesn't have an icon as of now (still working on figuring out why not).

      The spawn is at x:0 y:74 z:0 and is on the southern mooshroom island (there's two big islands, so ofc I couldn't resist that seed). The main land isn't too far away, but I'd recommend going east or west if you want a quick trip. We have a horse+boat compatibility datapack, as well. There are trees on the island and I set up a little starting area to the north, on the shore of the southern island. Just replant, breed, etc if you need anything. Also, there's a (very slow) egg farm in the cobble/water near the animals.

      I figured we could have two main areas, one on the northern island and southern island (and put a Create train/monorail & bridge between them?). One for living, but also maybe we can create a shopping & gaming district to avoid the rapid progression for players via farming everything and then just taking. Hopefully that staves off boredom and losing interest. Let me know what you think. Right now, Idk what currency it would be other than diamonds or winning prizes.


      The main mods we have are:

      • Create (and its side mods),
      • Rechiseled,
      • Adorn,
      • ChoiceTheorem's Overhauled Villages (CTOV),
      • Bobby,
      • MouseTweaks,
      • Traveler's Backpack,
      • Clickthrough (toggle with F9),
      • McPaint (custom drawings for paintings),
      • No Chat Reports.
        There are some more that go with these, like smaller ones and required libraries.
        This is a Fabric 1.20.1 server. I recommend downloading the zip for all the proper files, as there's a resource pack for McPaint to work, the list of mods and datapacks, and the config files if you need/want them.

      You can download the zip of mod configs/mods/required resourcepack/datapacks here:
      https://www.dropbox.com/scl/fi/pz76nmyxgk7lamagg1opq/TildesModdedMinecraft.zip?rlkey=wepd36lr7g022vy4bh5juz2pq&dl=0

      Some things to note:

      • Hold "W" to ponder items/blocks in Create to learn how they work.

      • Throw an egg on a painting to turn it into an easel to draw on. After drawing, save your work first, then export while holding a regular painting in your hand. Then place your drawing anywhere!

      • We have recipe fix datapacks as well as custom head drops from mobs and players.

      • Ask questions and report bugs to this thread/in my DMs.

      • Don't break any spawners.

      • FireTick is off.

      • Phantoms don't spawn.

      • keepInventory is off.

      • PVP is on.

      • The seed is -3315377300917012846.

      27 votes