This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # RSelenium + 2048 demo on Budapest RUG (BURN) meetup - Laszlo Szakacs, 2015-01-14 | |
| # Commented and updated on 2015-01-18 | |
| # Selenium: http://www.seleniumhq.org | |
| # RSelenium: http://ropensci.github.io/RSelenium | |
| # 2048: http://gabrielecirulli.github.io/2048 | |
| # 2048 + R: http://decisionsandr.blogspot.hu/2014/04/play-2048-using-r.html | |
| # Strategies: http://stackoverflow.com/questions/22342854/what-is-the-optimal-algorithm-for-the-game-2048 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Solution for RStudio Server AltGr problem - an AutoHotkey script | |
| ; | |
| ; RStudio Server Version 0.98.1091 has a bug for Windows browsers: | |
| ; on international keyboards AltGr + <any key> turns into a Ctrl + Alt + <key> shortcut, | |
| ; if that shortcut is defined. For example, AltGr + X calls the "Extract Function" method, | |
| ; while e.g. it is the keyboard combination for # on the Hungarian keyboard. | |
| ; | |
| ; The little AutoHotkey (http://www.autohotkey.com/) script below catches the AltGr combinations, | |
| ; and writes the appropriate characters (defined by ASCII codes) to the editor/console. | |
| ; |