Make Directery From Text File

FOR /F %i IN (list.txt) DO MD %i
list.txt aa
bb
cc

簡易四捨五入

之前參加就博會面試時,寫的簡易四捨五入 四捨五入 - JS Bin

nextSibling VS nextElementSibling

<p id="P1">Hello World</p>
<p id="P2">Hello Baby</p>

document.getElementById("P1").nextsibling //return [object Text]
document.getElementById("P1").nextElementSibling //return [object HTMLParagraphElement]

Example by JS Bin
Node.nextSibling - MDN
Element.nextElementSibling - MDN

Detect a key double press

~Esc::
if (A_PriorHotkey <> A_ThisHotkey or A_TimeSincePriorHotkey > 400)
{
    ; Too much time between presses, so this isn't a double-press.
    KeyWait, Esc
    return
}
WinMinimize, A    ; Assign a hotkey to minimize the active window.
;another example ↓ using to quick close the application
;Run, cmd /c TASKKILL /IM chrome.exe
return

keyboard shortcuts - Detect a double key press in AutoHotkey - Stack Overflow