this post was submitted on 10 Jul 2026
1177 points (99.0% liked)

Lemmy Shitpost

40849 readers
4058 users here now

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/ExplicitContent


-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

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

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

founded 3 years ago
MODERATORS
 
(page 2) 50 comments
sorted by: hot top controversial new old
[–] AnUnusualRelic@lemmy.world 17 points 6 days ago (2 children)

I'm so glad that I don't know enough about teams to know what most of this means.

load more comments (2 replies)
[–] PM_ME_YOUR_ZOD_RUNES@sh.itjust.works 20 points 6 days ago (8 children)

Unlike many others in this thread, I can't download any programs on my work laptop. I just don't have permissions.

So I found a much lower tech way of staying green. I go to the chat with yourself chat. Then I put a 3 pound weight on the backspace button. This keeps me green forever.

With my old work laptop, I was able to press backspace then wedge a set of tweezers in the key to hold it down.

Whatever works lol.

load more comments (8 replies)
[–] SailorFuzz@lemmy.world 19 points 6 days ago (10 children)
[–] 666dollarfootlong@lemmy.world 20 points 6 days ago (2 children)

What is this, a smart ash tray?

load more comments (2 replies)
load more comments (9 replies)
[–] bloooooort@sh.itjust.works 10 points 6 days ago (1 children)

Why does it matter?

  • a solo freelancer
[–] mbp@slrpnk.net 7 points 6 days ago (2 children)
load more comments (2 replies)
[–] myster0n@feddit.nl 16 points 6 days ago

Sometimes Teams doesn't even know if you're online during a video call

[–] 20cello@lemmy.world 16 points 6 days ago (1 children)
load more comments (1 replies)
[–] Limonene@lemmy.world 11 points 6 days ago

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.

[–] Tikiporch@lemmy.world 14 points 6 days ago (1 children)

With a mouse jiggler, you can control your status manually, even from your phone while you're in bed. Away at five, Busy at nine, Available when I'm actually at the keyboard only if necessary.

load more comments (1 replies)
[–] raspirate@lemmy.world 4 points 5 days ago (2 children)

With all these "IT can see when you connect a USB device" comments, I must ask has anyone ever actually worked for an IT department that made you micromanage/snitch on people like that? It all sounds like a bunch of hypothetical scare mongering to me. Granted, I've never been company IT for a fortune 500, but I've been outsourced IT for dozens and dozens of other companies all across the spectrum, and the notion that we were monitoring USB devices connected to each workstation is laughable. We monitor for the presence of malicious files, files with names like passwords.txt, and suspicious logins to your account. That's pretty much it. People change mice all the time. I've used an arduino-based jiggler on my own work PC.

Furthermore, and this is the more important detail for myself, I've known many many different IT people working at every level and I don't think I've ever met a single one who gives half a shit if employees aren't being productive. Just don't break your computer please, and if you do, for the love of God don't try to fix it yourself. Personally, I've never seen any instance of any worker ever trying to circumvent arbitrary productivity metrics with easy workarounds because I'm not a fucking snitch. In IT, we also have bullshit "productivity" targets that are completely decoupled from actual productivity. We get that it's bullshit. If there's an IT department out there that's full of snitches trying to catch workers slacking, that sounds like a genuinely awful place to work.

[–] h4lf8yte@lemmy.ml 3 points 5 days ago

Generic USB HID Device driver on a microcontroller with commercial USB IDs and IT doesn't see shit. Looks like an old USB mouse with no support.

load more comments (1 replies)
[–] OldChicoAle@lemmy.world 9 points 6 days ago

Wow we are all slaves. :( I type this between my Teams meetings.

[–] Batman@lemmy.world 8 points 6 days ago

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

[–] 13igTyme@piefed.social 11 points 6 days ago (1 children)

Just set the status to something other than active. If it says buy or away 100% of the time, even while on a call, then any crazy manager that's monitoring it will start to think it's bugged.

load more comments (1 replies)
[–] m3t00@lemmy.world 6 points 5 days ago

your job sucks

[–] dan69@lemmy.world 3 points 5 days ago (1 children)

Your not working if it takes u more than 2 minutes to any thing

load more comments (1 replies)
[–] jystfact@sh.itjust.works 9 points 6 days ago* (last edited 6 days ago) (8 children)

If you start a chat with yourself click the message textbox and hold down the left shift key the teams will think that your typing and it never changes the status. You don't need to make any changes to your system or install anything with this. Just place a heavy object on the shift key.

load more comments (8 replies)
load more comments
view more: ‹ prev next ›