your job sucks
Lemmy Shitpost
Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.
Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!
Rules:
1. Be Respectful
Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.
Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.
...
2. No Illegal Content
Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.
That means:
-No promoting violence/threats against any individuals
-No CSA content or Revenge Porn
-No sharing private/personal information (Doxxing)
...
3. No Spam
Posting the same post, no matter the intent is against the rules.
-If you have posted content, please refrain from re-posting said content within this community.
-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.
-No posting Scams/Advertisements/Phishing Links/IP Grabbers
-No Bots, Bots will be banned from the community.
...
4. No Porn/Explicit
Content
-Do not post explicit content. Lemmy.World is not the instance for NSFW content.
-Do not post Gore or Shock Content.
...
5. No Enciting Harassment,
Brigading, Doxxing or Witch Hunts
-Do not Brigade other Communities
-No calls to action against other communities/users within Lemmy or outside of Lemmy.
-No Witch Hunts against users/communities.
-No content that harasses members within or outside of the community.
...
6. NSFW should be behind NSFW tags.
-Content that is NSFW should be behind NSFW tags.
-Content that might be distressing should be kept behind NSFW tags.
...
If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.
Also check out:
Partnered Communities:
1.Memes
10.LinuxMemes (Linux themed memes)
Reach out to
All communities included on the sidebar are to be made in compliance with the instance rules. Striker
Why does it matter?
- a solo freelancer
Just here to flex?
just put a spoon on your trackpad
I'll go one step further and hope their both sides of their pillow are warm from fresh piss. What a totally asshole decision.
I'm going to give you a mega useful tip.
You need to create a group. You can kick the user later and say it was an accident. Then you start a meet inside of that group. You can be the only one in the call. Change your status from Busy to available again on top. Just leave yourself muted inside of that Teams call. Your Teams will never go inactive and neither will your laptop.
If anyone is wondering yes, it can see that you were in a meeting by yourself all day
I just always have mine set to show away. Management stops noticing when you are yellow in meetings regularly.
I open notepad and shut the laptop lid halfway on the enter key. Always green, always working.
Hmm, I just open notepad and use a stack of coins or something similar to hold down a key to stay active if I need to.
It's stupid we even have to care about our status on teams. Why should anyone give a fuck about your teams status as long as you're getting to your work done properly and on time?
Although to be fair right now I'm using a client laptop so my employer basically sees me as offline all the time but I'm reachable by teams or email on my phone.
Anyways it's just dumb. Fun trick though, I didn't know you could do that.
There’s a tool for Windows called Caffeine that simulates pressing the F15 key, which is almost never used by any software being that most keyboards don’t have function keys that go that high.
From the webpage:
If you have problems with your PC locking or going to sleep, caffeine will keep it awake. It works by simulating a keypress once every 59 seconds, so your machine thinks you're still working at the keyboard, so won't lock the screen or activate the screensaver.
I can't install unapproved software on my work laptop, probably like most others hence I ain't messing with that.
For what it’s worth, with Caffeine, it’s a single, portable executable, so it doesn’t need to be installed in the conventional sense, but if your IT department monitors processes or whitelists what is allowed to run, this would still be a problem.
The best is to get a physical mouse jiggler
Preferably one that moves your current mouse. The USB dongles all have the same hardware id and can be tracked.
What's does F15 does? My keyboard only goes to F12
It’s up to application software to define what it does. I have never seen a keyboard with function keys beyond F12 in person, but they do exist. Software is very unlikely to respond to F15, which is why Caffeine uses it to keep the system awake. Notably, the program can also instruct Windows to stay awake using its native mechanism instead (possibly insufficient for something like MS Teams) or another virtual key code of the user’s specification.
F12 and F3
I do get that this is the real differentiator to businesses in a chat app. how much it spies on employees. we need to unionize yesterday in tech
- physical mouse "jiggler" (mine is a turntable) that isn't connected to the work device
- physical key presser on a switch to press ESC every few seconds for when I'm pooping (this way the software shows both m n k activity)
I've even gone so far as to write a bash script that monitors the userdata folder that stores the JSON for activity and overwrite it with plausible but fake random activity data and screenshots, then name the process the same as the software so it's virtually undetectable- logs will show "Productivity Software Name" writing to its userdata directory at the same time the actual software is writing to it.
...Have you considered finding a new job, perhaps?
I mean it took me all of 20 minutes. They have the screenshots saved in the folder, the JSON just is a time stamp and a list of urls I looked at in that time.
For sure, I just hate the idea of my employer spying on me constantly. I guess ones that don't are few and far between these days.
Wow we are all slaves. :( I type this between my Teams meetings.
Super simple to write a script that prevents it.
FTTY
I opened my email and it fucking defaulted to Copilot. Like, bitch I clicked my email. Not your half baked AI bullshit.
My boss loves sending me messages saying "Are you working today?" within 3 minutes of being idle on teams at any point in the day.
Other times if i'm idle he'll call me just to give me some busy work or try and "catch me" not paying attention or something.
In the office I can be idle on teams for hours at a time and there's never, ever random spot checks for productivity... and we have no objectives, goals or project management (because he doesn't think any PM principles are effective.)
A bad boss can really make a job suck. If it was me I'd get a mouse wiggler, apparently there's a surprisingly many physical 'mouse movers' out there nowadays.
People don't quit jobs, they quit managers.
The saying is true for 95% of jobs. People don't quit bad jobs, they quit bad bosses.
have your free bot fix it while you get stuff done. i'd just make mine yellow all the time. wut is teams?
I was getting marked as "away" in Microsoft Teams every day, even though I was working. I just wasn't using Microsoft Teams, so it marked me as idle.
I wrote this Autohotkey script after my boss started complaining. It clicks on Teams every 2 minutes:
global running := 0
^+1::
{
global running := 1
while running == 1
{
CoordMode("Mouse", "Screen")
oldx := 0
oldy := 0
MouseGetPos(&oldx, &oldy)
prev_active := WinActive("A")
Try
{
WinActivate("ahk_class TeamsWebView")
}
Catch TargetError as e
{
}
CoordMode("Mouse", "Window")
Send("{Click 80 40 Left}")
Try
{
WinActivate("ahk_id " prev_active)
}
Catch TargetError as e
{
}
CoordMode("Mouse", "Screen")
MouseMove(oldx, oldy, 0)
sleep(115000)
}
}
^+2::
{
global running := 0
}
It has the side effect of preventing my computer from entering screensaver/lock screen when I really am away.
I used bots for games 20 years ago, I mean it should be easy to trick mouse movement...
I learned from my wife that you can start a meeting by yourself using the Meet Now button on the Teams calendar, and that will keep you flagged as Busy.
🖇️ can help? same guy