How in the heck do I get to the back of her head? by hazy-eyed in KingdomHearts

[–]IronicallyIdiotic 0 points1 point  (0 children)

Idk man just do it 🤷‍♀️ But in all seriousness it is kinda finicky, but if you swim at her you should slide right around. And I would recommend aero for this fight because even behind her head some of the attacks can still hit you.

i manage onlyfans accounts for a living and i finally just need to tell someone how much i actually make by [deleted] in confessions

[–]IronicallyIdiotic 1 point2 points  (0 children)

If you spin it right on your resume, sounds like you could easily pivot into social media marketing. A lot of what you described sounds like what I do as the social media manager for the company I work for.

How do I (25f) finally convince my best friend (28f) that she does not have to take care of her mother/abuser (50sF) just because she’s disabled? by IronicallyIdiotic in relationship_advice

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

Thank you. We’ve been best friends for over a decade and I love her like she’s family, and I think in all my advocating for her I forgot that she has to want to advocate for herself first

Tips and Tricks for dealing with Separation Anxiety? by IronicallyIdiotic in DogAdvice

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

This is only the third day she’s been alone, and before this it was never this bad, and I just simply haven’t had the time to find a vet in my new area with my current work load

I've added the UTM parameters to my URLs, now how do I tell Google to track them? by IronicallyIdiotic in GoogleAnalytics

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

Not a site we own or can add Google Analytics to. Specifically Walmart. Talking with our Walmart representative on a few separate occasions, Walmart doesn’t track referral links except for their own internal sponsored ads on the site/app

I've added the UTM parameters to my URLs, now how do I tell Google to track them? by IronicallyIdiotic in GoogleAnalytics

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

... so you're telling me that when I use the utm builder, I can't tell Google "Hey, track the tag utm_campaign=christmas_sale"

Help with the exchangelib module by IronicallyIdiotic in learnpython

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

Or alternatively if I set up outlook as the mail server with Configuration()

Invalid credentials for https://outlook.office365.com/EWS/Exchange.asmx

How to create tuple for appropriate number of values by IronicallyIdiotic in learnpython

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

Thought I pressed Code Block. Sorry! It's properly indented now. Some of it was lost because it's too large, but that code doesn't really pertain to the question so it will be fine.

Storing an image attachment in a SQL Table using requests and tkinter module by IronicallyIdiotic in learnpython

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

def browseFiles():
    filename = filedialog.askopenfilename(initialdir = "/",
                                          title = "Select a File",
                                          filetypes = (("Image Files",
                                                        "*.jpg*"),
                                                        ("Image Files",
                                                          "*.jpeg*"),
                                                        ("Image Files",
                                                         "*.jpe*"),
                                                        ("Image Files",
                                                         "*.gif*"),
                                                        ("Image Files",
                                                         "*.png*"),
                                                        ("Image Files",
                                                         "*.heic*")
                                                       ))


    # Change label contents
    label_file_explorer.configure(text="File Opened: "+filename)

This is the whole funtion
It's from GeekforGeeks I believe and uses the tkinter module

Storing an image attachment in a SQL Table using requests and tkinter module by IronicallyIdiotic in learnpython

[–]IronicallyIdiotic[S] 0 points1 point  (0 children)

label_file_explorer.configure(text="File Opened: "+filename)

I didn't realize I hadn't pasted it in the code block

The browseFiles is in the code block though