Shagnik Sarkarsarkarshagnik.hashnode.dev·Nov 2, 2024Gesture Controlled Virtual MouseOne afternoon, while studying a PDF on my PC, I had to keep scrolling down with my mouse, which was out of reach. It was frustrating. So, I wondered, "Isn't there a way to use my hands from a far distance to scroll the PDF?" With this thought, I sear...python 3.8.5
Divv Saxenadivvsaxena.hashnode.dev·Jan 5, 2024Where did that Click came from?Often we create dynamic elements and our web-app needs to know which element the user has interacted!, now that’s really easy if you put the event listener on every element the user might interact with. Every button for example but adding endless eve...#ClickEventAnalysis
Arnav Guptaarnav.tech·Jan 2, 2024MX Master on Mac OS - Jittery Cursor Position and Jumping PointerI have been a long-time MX Master user. 5+ years with the MX Master 2S and now 1+ with MX Master 3. (I do not use the 3S because it has a different kind of receiver that doesn't let me use the same receiver for MX Keys) One issue that has been plagui...2 likes·1.6K readsmx master
Biohacker0corvus-ikshana.hashnode.dev·Dec 4, 2023How to make a macro recorder in pythonIn this Blog, I will show you how I built a macro recorder in Python to record all mouse and keyboard operations such as clicks, scrolling, hold&drag, key presses etc. In this blog post, we'll explore a Python script that leverages libraries such as ...225 readsmacro recorder
Olumide Michealcodewithmide.hashnode.dev·Oct 23, 2023Ensuring Accessibility Beyond the MouseI first learned about accessibility while I was taking the ALX SW Engineering Boot Camp. I got interested in it because "accessibility is not a feature" as Ethan Marcotte said. The project covered a lot about accessibility. But in this article, I'll ...21 likes·31 readsaccess control
Trevor Pearsontrevorpearson.hashnode.dev·Aug 4, 2023The Dev MouseI updated my mouse a few months ago and...I'm loving it! It's so much fun! I won't go back! What mouse? The M65 RGB Ultra (wired). It's decent but the feature I love is the "gestures". This mouse uses the "iCue" software. In there I setup "mouse tilt...mouse
Mrugesh Mohapatrahn.mrugesh.dev·Apr 4, 2023Logitech MX 2S Mouse Cursor Problems? Here's How to Fix Them!My trusty Logitech MX 2S mouse has been a reliable companion for years, seamlessly working with all types of hardware, even my Android phone (although I rarely use it for that purpose). However, I noticed a significant decline in cursor tracking spee...1.6K readslogitech
Aman Ullaconnectaman.hashnode.dev·Aug 22, 2022Move Mouse Cursor using PythonEver wanted a code/program that will keep your laptop awake even if you cannot edit the settings on corporate laptops? Well worry not, I have a small python code that you can run and your laptop will never sleep :) import pyautogui import time import...10 likes·27 readsmouse
Haneunhanlee.hashnode.dev·Jul 14, 2022How to Control Mouse and Keyboard with Pythonhow to install My computer uses Anaconda3, conda 4.10.1 pip install pyautogui Finding Coordinate It will display current mouse coordinate every second. import pyautogui import time while True: print("Current Mouse Position : ", pyautogui.position(...Python 3