This script makes use of the Numpad to control media players and volume on your system.
- Install AutoHotkey
- Right-click
.ahk
script Compile Script
- Start executable
This script makes use of the Numpad to control media players and volume on your system.
.ahk
scriptCompile Script
// C# version -> https://gist.github.com/dehghani-mehdi/2af3d913786d8b1b286f9c28cc75d5f4 | |
var isValidNationalCode = function(code) { | |
if (code.length !== 10 || /(\d)(\1){9}/.test(code)) return false; | |
var sum = 0, | |
chars = code.split(''), | |
lastDigit, | |
remainder; |