Quickly search for something online.
Slow websites are a headache and I have a list of them. To be efficient and save time, using AutoHotKey to query something is super easy and fast.
Google
as an example even though it's fast.CTRL
+SHIFT
+S
to search.InputBox
to get UserInput
.UserInput
^+s::
InputBox, UserInput, Google Search, Search Anything., , 320, 160
If (ErrorLevel = 0)
Run, https://www.google.com/search?q=%UserInput%
return