You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

ChristianKl comments on Open Thread, November 8 - 14, 2013 - Less Wrong Discussion

1 Post author: witzvo 08 November 2013 08:13PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (141)

You are viewing a single comment's thread.

Comment author: ChristianKl 14 November 2013 02:05:51PM *  1 point [-]

While having heard of AutoHotkey a long time ago I just started using it and it's extremly useful.

One example would be opening wikipedia with the clipboard content as search string. It just takes 3 lines to assign that task to 'Windows Key + W'. I can't grasp why they didn't recommend us student at computer science to get proficient with it. It"s useful for automating common tasks.

It"s much easier to get results for learning programming through automating task with autohotkey than it's through learning it with simple python programs that serve no use and are just for pratice.

 #w::
Run, <https://en.wikipedia.org/w/index.php?search=%clipboard%>
return

I wish someone would have told me to get proficient in it years ago.

Comment author: niceguyanon 14 November 2013 08:46:55PM *  0 points [-]

It's great that there are already so many useful scripts written by other people that you could use.