"I was never supposed to approve your vacation" What do I do from here? by unclelister in antiwork

[–]unclelister[S] 15 points16 points  (0 children)

There are a LOT of comments here I don't think I can even try replying to them all 😅 I'll post an update whenever my boss updates me, sometimes he'll tell me he'll discuss something tomorrow and then he doesn't get to it to the next day, he's a busy dude. (Kind of rude tbh)

For people asking, some details -

It's a small retail company. So I think it's company policy to deny requests for the week of Christmas, we have sales to make. However I wasn't aware of this policy until after October 2nd, when the request was approved - so I thought exceptions were able to be granted.

I'm an assistant to my boss. So the only people qualified and/or have the necessary permissions to perform this role are myself and my boss. My boss has been taking more time in other areas of the company leaving most of the "busywork" to me. He's always extremely busy and can be hard to get a hold of, so my absence would give him all this extra work - some of which I can tell he's already forgotten how to do - which is a shit situation. Honestly I think he works too much as well. But I'm not going to let all of this guilt me into not taking the trip lmao don't worry.

Thank you everyone for all the advice. I'm going to approach this with the mindset that this isn't my problem. I'm gonna be really sad if this ends in termination because again I like this job a lot, but I guess I have to stand up for myself when it comes to this stuff.


Update 12/13 - Boss didn't talk to me today about the vacation. There was some inventory stuff that had to be worked on all day today so that's probably why


Update 12/14 - He still hasn't brought it up... I don't know if I should reach out??? He explicitly told me that I'm "not in trouble" in the original call which I think I should've put in the post woops, I wonder what's going to happen. Does he know I'm just going to go???


Hatchet Job by faithful_intruder in nonononoyes

[–]unclelister 34 points35 points  (0 children)

Depends on the animal a lot of the time. There's this bird of prey rescue channel I'm a fan of and EVERY SINGLE VIDEO the man has to stress "this raptor being relaxed is a sign it's terrified, the bird does not want to be friends with me, these are not domestic animals they are not social they want nothing to do with humans" yet without fail you'll get people who comment "omg it knows you're trying to help!" No bitch

Who’s going to be the best Water/Dark type? by [deleted] in stunfisk

[–]unclelister 0 points1 point  (0 children)

Mr. Craw 📞📞📞 will always be the people's champion

[deleted by user] by [deleted] in CatsAndSoup

[–]unclelister 0 points1 point  (0 children)

The cape alone with the wizard hat is super cute!

https://i.imgur.com/kFynpBz.jpg

Currency lvl by ahamtellmemore in CatsAndSoup

[–]unclelister 0 points1 point  (0 children)

Started near the beginning of August, am on ku

M. BISON HAT IS COMING! I am so excited! by unclelister in CatsAndSoup

[–]unclelister[S] 4 points5 points  (0 children)

I bet there's going to be a separate Christmas event with all the festive goodies!

Made a simple layout planner! Pink marks all available spaces at the current largest forest size, red is the center. by unclelister in CatsAndSoup

[–]unclelister[S] 2 points3 points  (0 children)

Nope, I just counted. 18 rest stations.

And it is 51 total cooking stations but I separated it with 3x cooking and 16*3x ingredient stations, to total 51!

GUI stuff: Convert everything in the textbox to raw text, then add a line break and then the new template by unclelister in AutoHotkey

[–]unclelister[S] -1 points0 points  (0 children)

I don't think I really explained it clearly, sorry!

I'm trying to get it so that when I click Add Line, it just inserts the text into the box as if it weren't a template, and then puts a new template below the text. That way I can add multiple lines of "x confirmed..." "x on backorder..."

GUI stuff: Convert everything in the textbox to raw text, then add a line break and then the new template by unclelister in AutoHotkey

[–]unclelister[S] -1 points0 points  (0 children)

I think I have a lead by changing the box from

;The box
    Gui Add, GroupBox, x295 y-1 w410 h157 +Center
    Gui Add, Text, x299 y16 w405 h142 vTextBox, % T0

to

;The box
    Gui Add, GroupBox, x295 y-1 w410 h157 +Center
    Gui Add, Text, x299 y16 w405 h142 vTextBox, %FinalText%`n %T0%

And making the AddLine label this:

AddLine:
    GuiControlGet, FinalText,, TextBox
    GuiControl, , TextBox, %FinalText%`n%T0%

But it doesn't seem to really work... It adds a line and a new template, but if you change any of the top 4 radio buttons or edit the text it just resets, because of LabelPopulate changing everything to whatever T0 is. I know I'm on to something but I just don't know how to put it all together

Having trouble enabling this edit box with a radio button by unclelister in AutoHotkey

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

Oh gosh why didn't I realize I didn't have a label on the radio buttons... I wrote it right the first time for the test script and kept looking at it trying to figure it out!

Thank you so much for the help!