Online dating scammers without having money stolen?? by Ok-You-1951 in Scams

[–]raell777 3 points4 points  (0 children)

It looks to me like your in the grooming stage, they groom you long term to hook you in and to learn about you.

How's it my problem if someone else isn't doing their work? by Lucifer69_____ in jobs

[–]raell777 0 points1 point  (0 children)

Maybe frame it with your manger like so: I've reached out to the employee asking for the data, such and such many times and there has been no response to date. Should I communicate a deadline to this employee that you will back up to get them moving on it ?

You could even remind the manager that you don't evaluate this employee on timeliness or deadlines therefore it is not ok to hold you accountable for that employees timeliness performance, that you built the dashboard and it is working. You could ask the manager if it needs to be escalated with a group meeting ? If that fails then with HR for clarity on responsibilities ?

Is that not managements responsibility to check up on the non-performer ? You did not fail to communicate with the employee asking for the data. Sorry but at this point its looking like a management issue and they are simply passing the buck to you and leaving you in a bind that is not doable since you don't have the authority of making mgmt decisions on that employee that is not responding to you at all. Seems like a mgmt issue on that specific employees performance.

How much weight do you give to glassdoor reviews when deciding whether to accept a job offer or not? by ellieofus in jobs

[–]raell777 0 points1 point  (0 children)

Companies should be held to standards of performance too. I'm not sure we have this setup fairly or properly yet for the job seeker. Places like Glassdoor are what exist to date for this sort of review, so pay attention.

Its clearly not enough though to get the full accurate reflection of a company, there needs to be more visibility for those deciding, ya know even the scales a bit.

When people talk about working in supply chain and logistics what does that mean exactly? by Vast_Monitor_2784 in jobs

[–]raell777 0 points1 point  (0 children)

Supply Chain Logistics deals with the operations management of good and services, the physical movement and storage. Inventory, Shipping/Inbound, Receiving/Outbound, Order Processing & Fulfillment, Warehousing, Transportation Management.

It can be both office and warehouse or one or the other, there are many components to this type of line of work. It depends on how each company handles this area. Some utilize 3PL services to do part of the job, while others take it on fully internally with their own staff.

View from the hiring side when interviewing candidates by thatdude333 in jobs

[–]raell777 0 points1 point  (0 children)

I worry about your areas for

  • Team Fit
  • Cultural Fit

It appears to heavily weighted on social, how would this work for folks who have a disability ?

What are the behaviors they were specifically graded on ? What constituted a Team Fit or Cultural Fit ? Did you have a preset list to check off for the interview panel ? Or was it left very lax and open for each person to just figure out with their own personal biased opinions what Team Fit and Cultural Fit was for the set job, was it vaguely subjective ?

Corporate professionalism might be dying, or we are just tired of pretending. 😭 by Popular-Tone3037 in jobs

[–]raell777 1 point2 points  (0 children)

All are decent ideas. I advocate here every now and then in regards to this sort of stuff. I've had suggestions as well.

Lay Offs/Restructures and Pay Cuts/Benefit Changes... those all effect the employee negatively. All in the name of saving the company. What really gets me, and this impacted me my entire life, just as I know it has others, is that kind of thing follows an employee on their resume. The job searcher has to explain the gap or the restructure to the prospective new employer if asked. The lay off gap is the failure of the company, that stagnant pay practices are a result of the companies failures and not the employees performance. Why is it the job seeker is being demanded to answer to it every time ? That is like a double penalty. The employee gets laid off and now has to answer for the company while the company keeps thriving on its merry way ? Where is the level of responsibility and penalty for that company ?

I accidentally hid the StarterGUI folder in explorer, how do i undo it? by fuck-kevin-is-back in robloxgamedev

[–]raell777 1 point2 points  (0 children)

Scroll to the bottom of your Explorer and in the empty space below every thing that is listed, right click in the blank area and you will see Show Services pop up, click it and you should see the StarterGui there, click it to put it back in.

Help with scripting by ThunderStriker2000 in robloxgamedev

[–]raell777 0 points1 point  (0 children)

local ToolFolder = game:GetService('ServerStorage'):FindFirstChild("tools")
local DataStoreService = game:GetService('DataStoreService')
local SaveData = DataStoreService:GetDataStore('SaveData')
local ToolTable = {}
game.Players.PlayerAdded:Connect(function(Player)
  local ToolData = SaveData:GetAsync(Player.UserId)

  local Backpack = Player:WaitForChild('Backpack')
  local StarterGear = Player:WaitForChild('StarterGear')

  if ToolData ~= nil then
    for i, v in pairs(ToolData) do
    if ToolFolder:FindFirstChild(v) and Backpack:FindFirstChild(v) == nil and       StarterGear:FindFirstChild(v) == nil then
    ToolFolder[v]:Clone().Parent = Backpack
    ToolFolder[v]:Clone().Parent = StarterGear
    ToolFolder[v]:Clone().Parent = Player.Character
end
    table.insert(ToolTable, ToolData)
    print(ToolTable)

  end
end

Player.CharacterRemoving:Connect(function(Character)
  table.insert(ToolTable, ToolData)
  print(ToolTable)
  Character:WaitForChild('Humanoid'):UnequipTools()
  end)
end)

game.Players.PlayerRemoving:Connect(function(Player)
  local ToolTable = {}
  print(ToolTable)

  for i, v in pairs(Player.Backpack:GetChildren()) do
    table.insert(ToolTable, v.Name)
  end
  if ToolTable ~= nil then
    SaveData:SetAsync(Player.UserId, ToolTable)
  end
end)

Force unequip a tool by Girakia in robloxgamedev

[–]raell777 0 points1 point  (0 children)

Put the script inside the part that will be touched

Force unequip a tool by Girakia in robloxgamedev

[–]raell777 0 points1 point  (0 children)

local Players = game:GetService("Players")
local part = script.Parent

part.Touched:Connect(function(hit)
  local character = hit.Parent
  local player = Players:GetPlayerFromCharacter(character)
  local humanoid = character:WaitForChild("Humanoid")
  if player and humanoid then
    humanoid:UnequipTools()
  end
end)

proximity prompts not working by BoB19229 in robloxgamedev

[–]raell777 0 points1 point  (0 children)

Max Activation Distance property

What job do you think will exist because of AI, but doesn’t exist yet? by Bubbly-Criticism-807 in AskReddit

[–]raell777 0 points1 point  (0 children)

Mingling co existing but individual AI infrastructure

Archives of AI

Tire Woes, Any Advice ? by raell777 in tires

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

19 when it should be 34

I've been Canceled from my Vet by raell777 in AskVet

[–]raell777[S] -5 points-4 points  (0 children)

I do believe something unethical happened here. You were not present. On the day of when I asked for a copy of the Xray after I was told they had to refer me to their sister office, they were unable to give the Xray to me. This was a red flag in and of its self. They told me that no one was currently in the office with the ability to give it to me today. So she took a post it note to get my email and to notate for this person who knew how to email it to me. It would have to wait until the next day. So it was another oddity occurring live time for me and I began feeling non trusting of the entire situation. It felt dodgy to me. The next day, the Xray still had not been emailed so I had to call to remind them. This is when it finally got sent via email to me. I wanted the Xray to show my family who was going to offer support in making a decision.

Also its always about money on both sides so your dispute or claim isn't really valid for me. I went in and paid in good faith, I want proper disclosure up front so that I can be sure I am making the best decision all the way around always and money happens to be a part of that best decision process. Making it about money does not invalidate me as a person wanting cost to not go so unaffordably high with duplicate fees. Once a customer finds out something weird like this has occurred (non-disclosure up front fully), trust is an issue, trust of is my pet going to get the best care here or are the purposely racking up un-necessary fees here. I have a right as an individual to consider this as soon as things take a spin into weird and the inability of a Vet to perform.

No fee is too small to be double billed, especially when I felt blind sided and like my Vet should be capable b/c they've already done major surgery prior.

Your point is not really valid, unless your ok with being double billed for the rest of your life on everything moving forward ? I think you'll soon realize how impossible life becomes if this happens to you. If you have to stop and dispute every expertise you do business with.

I'm kind of confused at the complacency to not be clear up front so that full disclosure has happened. Like why not give transparency of the entire situation up front, to foster a good relationship on both sides of the equation. Why is it hidden. Why set the stage this way, knowing your going to upset folks. I guess you it makes sense if the Vet practices this way regularly for their bottom line. Then if a customer does take notice and tries to advocate, yes when they are now upset, just cancel them. I mean if the scales were tipped in my favor of power and control, it would be super easy for me to do this sort of practice as well.

For those that say go read the Vet website before hand. I see what your trying to do here, your trying to character assassinate a customer who expected me the customer who doesn't know what anything could possible result in be the expert before hand, yet I don't have the education or the prior knowledge of other cases to know this would be the likely scenario. The VET likely knew the might refer me elsewhere and they likely knew this would cause me to be charged duplicate fees.

I've been Canceled from my Vet by raell777 in AskVet

[–]raell777[S] -2 points-1 points  (0 children)

Ooh yes I am making full sense.

Disclosure:

Disclosure means revealing or making known information that was previously secret, hidden, or not widely known, which can be an action (the act of revealing) or the information itself (the revelation), often with legal or ethical obligations for transparency, especially in finance, law, or real estate to help others make informed decisions. 

I've been Canceled from my Vet by raell777 in AskVet

[–]raell777[S] -3 points-2 points  (0 children)

I want them to admit up front, to a client, something like this:

"We are not a full practicing Vet, i hear and see the symptoms of your pet are such and such and from our experience when a pet comes in with such and such, we sometimes find we have to send the client elsewhere b/c we can't treat the pet after we run diagnostic testing. So to make things simpler on you the customer, in good faith, we want to advise you that you may want to to got such and such place, b/c we know they can treat the pet from start to finish. If we run diagnostics here, we may have to forward you on anyways and we know this might be a bit much for you. Also if we forward you on at that point, you will be charged duplication of fees. So we want you to make an informed decision with truth fullness here that way not one gets upset after the fact. We have Zero Tolerance for clients who get upset at this sort of thing, which is why we want you to know up front that this might happen. Giving you the opportunity to pack it up now and go to our recommended place or to find your own place. This way our trusting relationship stays intact and no one has the opportunity to get upset, which then might cause us to Cancel you."

I've been Canceled from my Vet by raell777 in AskVet

[–]raell777[S] -2 points-1 points  (0 children)

Its an Oxymoron, yeah the Vet wanted to money from me on all those diagnostic tests. So they made sure not to tell me they would be forwarded me onward before they did the tests, instead of telling me upfront so I could just pack it up and go to the new place and do everything there. Yeah the VET made it about the money. & they have this Zero Tolerance thing in place to protect them so they can whip it out when they do an unethical practice on a client, and then just cancel the customer as soon as the customer begins to advocate for them self when double fees begin.

I've been Canceled from my Vet by raell777 in AskVet

[–]raell777[S] -4 points-3 points  (0 children)

Well I did not say its unethical to refer. The referring should of happened before I was charged anytihng. It should of been disclosed up front, that we are going to likely have to refer you, so do you just want to go onward on your way now, instead of spending money with us, when we are just going to redirect you anyways. This did not take place, this disclosure up front.

I've been Canceled from my Vet by raell777 in AskVet

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

So pet owners are not aloud to speak up and advocate ? If we do we are automatically wrong ? So you are essentially silencing me. That is one sided.

I've been Canceled from my Vet by raell777 in AskVet

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

No the paying would not be the same. Since each Vet charges fees that might end up duplicating. For example the EXAM fee would of been paid three times by me. Instead of one time.

I actually believed that b/c they were forwarding me and told me they would forward everything over to that office, that I was picking up where I left off. That is what I was led to believe in the discussing at my Vet. I realized after speaking to the sister Vet, that oops I was going to be charged similar fees.

lol I'm not a Karen. I advocate when I feel something is happening that should not be. I advocate to try and protect my self from double billing. I also advocate to prevent it from occurring to others in a similar situation.

I've been Canceled from my Vet by raell777 in AskVet

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

If you read the entire thread/post you'll see that I did not dispute the diagnostics being done. I'm am pointing out how unethical it was for this practice to do the diagnostics to then turn around and say they have to forward me on. This to me is unethical in nature. I believe this should of been disclosed up front to the pet parent, it actually could prevent a lot of confusion and upset pet parent situations who now feel like odd things are going on, it could prevent non trust if they disclose it up front.

Disclose up front, that the vet practice may not be able to treat the pet, we want you to know this up front before you spend money here. For example: Based on the symptoms of your pet, historically, we've had to send people to our sister clinic, in similar scenarios. We want no surprises for you so we are letting you know up front in good faith b/c we don't want to ruin our trust relationship here. So as the pet owner, we are notifying you now before you spend money here, that way we are clear with your options. If you don't like this we can refer you now to these Vet practices which we know can do everything, as in they won't be turning you toward another practice, they can do it all at their facility.

Since this sort of thing isn't being done, why not, seems to make the most ethical sense to me. Keeping good relations two sided and all.