• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. "The One Who Is". Who on Tildes recently called God by this name?

      I was recently on a topic and a commenter referred to God this way. I can't seem to find it now. If it was you, or you know anything about this, I'm curious why that phrase? What does it mean? Is...

      I was recently on a topic and a commenter referred to God this way. I can't seem to find it now. If it was you, or you know anything about this, I'm curious why that phrase? What does it mean? Is it associated with a particular tradition?

      Also, is there a way to search for specific text on Tildes?

      22 votes
    2. 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?

      11 votes
    3. Deciding whether to continue with chemotherapy and immunotherapy

      I have stage four colo-rectal cancer. It's not curable. It's not particularly treatable. I'm getting palliative care, but I'm not yet end of life. They're not offering surgery or radiotherapy...

      I have stage four colo-rectal cancer. It's not curable. It's not particularly treatable. I'm getting palliative care, but I'm not yet end of life. They're not offering surgery or radiotherapy (yet, that may change). They are giving me chemotherapy (capecitabine and irinotecan) and immunotherapy (cetuximab).

      Prognosis is difficult, but if everything goes well I have about 18 months.

      I've had 6 cycles of treatment. I had a re-staging PET CT scan and the results were very good.

      But, here's the thing: chemo & immuno therapy suck. I don't just mean "I feel a bit bad sometimes", I mean "I feel awful most of the time."

      We've just about got nausea under control, but those meds cause constipation and that's causing problems with my stoma. And because the nausea meds are only used for the first week it means the second week I have problems with fast output, and that's causing other problems with my stoma. My stoma team and my oncology team are not particularly joined up. In theory I can build in laxido for the first week and loperamide for the second week but that's complicated because side effects are so variable. And that's just stoma output -- there's a bunch of other stuff around pain, fatigue, skin toxicity (I'm not allowed in the sun, even on bright but overcast days. I have to use three different creams, but not too much of any of them, and they're not compatible with each other), loss of appetite, etc.

      One example of how healthcare isn't joined up and I'm getting conflicting advice (there are lots of these): My stoma team want me to wear a hernia support belt to prevent my hernia getting worse, and to help my stoma work properly. But this is a tight broad elastic belt going round my lower abdomen, right where my diaphragm is, and so it makes it harder for me to breath. My physio doesn't want me to wear the belt because it's interfering with fatigue treatment (which is "do more stuff, but do it slowly, and build in breaks, and FOCUS ON YOUR BREATHING"). My oncology team have no opinion and are leaving it to the other teams.

      I know some people just want more life, and they don't care about side effects. "Do anything you can to give me more life". But that's not me. I'd much rather have 3 months of mostly feeling okay and then a month of active death over a year of mostly feeling fucking lousy and then a few months of active death.

      I don't know how to talk to my family about this. I have spoken to my care team and they're giving me all the options - (1) continue chemo and immuno therapy on 2 week cycles until I die or until it stops working, and try to buidl in better support meds. (2) continue chemo & immuno on 2 week cycles, but build in breaks (3) stop chemo & immuno and focus on pain relief.

      Some tricky decisions to be made.

      77 votes
    4. Suggestions on how to secure reasonable US Taylor Swift - Eras Tour tickets?

      Hi everyone, I haven't seen a post like this before, but figured I would give it a shot (since it doesn't look like the rules/Code of Contact prohibit it) My fiancée is a huge fan of Taylor Swift,...

      Hi everyone, I haven't seen a post like this before, but figured I would give it a shot (since it doesn't look like the rules/Code of Contact prohibit it)

      My fiancée is a huge fan of Taylor Swift, and although I'm mostly indifferent, seeing this concert is a big deal to her, but with the way US ticket sales are through Ticketmaster scalpers are off the charts, charging like $2000/ticket which is ridiculous

      I was wondering if any other users here in the US (or North America) might have suggestions on where I could go, or what I could do to find tickets for us that might be more affordable. Most of the shows I go to now use DICE, which prevents scalping but clearly that's not the case with this show

      I understand that her music may not be everyone here's forte (it's really not mine) but this would mean the world to her (fiancée) so I'm eager to find a way to make it happen

      Thank you!

      12 votes
    5. 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
    6. 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
    7. 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
    8. 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?

      16 votes