2022-01-20
remotesremotes.com
I just replace a missing car remote for a very low price and relatively easy instructions for setting it up for my car.
This website sells via Amazon.com
RemotesRemotes.com
A free markdown editor
2021-12-17
time synchronization script
fedora version upgrade in-place
2021-12-06
AutoHotKey script to find mouse coordinates
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; While CapsLock is toggled On
; Script will display Mouse Position (coordinates) as a tooltip at Top-Left corner of screen.
; Also allows to copy them (to clipboard) with a PrintScreen button.
#SingleInstance force ; only one instance of script can run
#Persistent ; to make it run indefinitely
settimer start1, 0 ; "0" to make it update position instantly
return
start1:
if !GetKeyState("capslock","T") ; whether capslock is on or off
{
tooltip ; if off, don't show tooltip at all.
}
else
{ ; if on
CoordMode, ToolTip, Screen ; makes tooltip to appear at position, relative to screen.
CoordMode, Mouse, Screen ; makes mouse coordinates to be relative to screen.
MouseGetPos xx, yy ; get mouse x and y position, store as %xx% and %yy%
tooltip %xx% %yy%, 0, 0 ; display tooltip of %xx% %yy% at coordinates x0 y0.
PrintScreen:: ; assign new function to PrintScreen. If pressed...
clipboard == %xx% %yy% ; ...store %xx% %yy% to clipboard.
return
}
return
Autohotkey is your WIndows superpower
Autohotkey (AHK) is a Windows programming macro application to click the mouse or repeat keystrokes to your heart's content. I just wrote this 6-line program to click "GO LIVE" button in Youtube, launched by Windows (Task) Scheduler at a particular time, because we kept forgetting to click the "GO LIVE" to begin our livestreams. It is actually setup "in case you forgot" as "GO LIVE" becomes "END LIVESTREAM".
The mouse coordinates are particular to the computer it was intended for and may not match your computer.
(Find mouse coordinates with this script: https://www.bachcottage.com/2021/12/autohotkey-script-to-find-mouse.html )
#WinActivateForce
WinActivate, Live streaming - YouTube Studio,
sleep 300
WinMaximize, Live streaming - YouTube Studio,
sleep 6000
mouseclick Left,1803,96
sleep 3000
mouseclick Left,1600,96
| AutoHotKey |
Linux NetworkManager command line configuration
Configure Network Settings Using Network Manager in Linux Last updated: March 25, 2025 Written by:baeldung Network ConfigurationNetworkMana...
-
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
-
Configure Network Settings Using Network Manager in Linux Last updated: March 25, 2025 Written by:baeldung Network ConfigurationNetworkMana...
-
#!/usr/bin/perl $load = `/usr/bin/uptime`; $load =~ /\s+load average:\s+(\S+),\s+/; #print $1, "\n"; $me = `/bin/hostname`; $l...