Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
benj8831yNice project!
Just a quick comment for the lazy like me, apparently you can also place your mouse over an analog watch and the motion of the watch keep the computer awake :-) -
Sounds wonderful. I'm so tired of coming back from a 45 minute shit to management being all "showing offline?"
-
Yep, there's a 13 line python script that can do this:
import pyautogui
import time
# while true, move the mouse in a clockwise fashion
while True:
pyautogui.move(0, -50)
time.sleep(1)
pyautogui.move(50, 0)
time.sleep(1)
pyautogui.move(0, 50)
time.sleep(1)
pyautogui.move(-50, 0)
time.sleep(1)
Meanwhile the rest of the neanderthal world will shell out $20+ for "mouse jigglers" on amazon (I shit you not, they are real, go look at them 😂) -
@fullstackcircus props to however came up with that though. They saw an opportunity and didn't waste it lol
-
@fullstackcircus Why would anyone use a 13 line script when you could install an npm package with a gazillion of dependencies instead?
-
@TheBeardedOne wait... do they seriously message you this? you need to run in the opposite direction, and very fast
🚀 Stay Active with @ttshivhula/stay-online!
Tired of auto screen locks or your system assuming you're idle? Look no further:
• Simulate Mouse Movement (either linear or circular)
• Simulate Keyboard Activity
• Set Random Activity Intervals
• Pick your mode: mouse, keyboard, or both!
💡 Quick Start:
Install with: `npm install -g @ttshivhula/stay-online`
🤝 Contribute & Collaborate:
Have improvements or ideas? We'd love your input! Dive in and contribute. Visit our GitHub repo: `https://github.com/ttshivhula/...`
Let's redefine 'active' together! Spread the word and keep your system awake.🚀🖥️🔒🚫
rant