One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <?php | |
| // recursive concatenation of a PHP multidimensional/associative array | |
| function recursiveImplode($arr) | |
| { | |
| $s = ""; | |
| foreach ($arr as $key => $value) { | |
| if (is_array($value)) { | |
| $s = $s . recursiveImplode($value); | |
| } else { |
| ; Switch the input language in Windows 10 (and Windows 8 AFAIR) in the macos way | |
| ; Press and release CapsLock to switch the input language (by sending the Win-Space combination) | |
| ; Press, hold for half of a second or more, and release CapsLock to toggle the CapsLock status | |
| ; (macos toggles the CapsLock status WHILE you hold, will make it that way later) | |
| ; Thanks to: | |
| ; Castor http://dae.me/blog/1173/pereklyucheniye-yazika-vvoda-po-caps-lock-v-windows/#comment-253278 | |
| ; Elliot DeNolf https://stackoverflow.com/questions/17396412/autohotkey-script-support-request-to-lock-capslock-key-in-the-on-position |
| /* | |
| Short: | |
| a helper for Microsoft Natural Keyboard 7000 and 4000: | |
| - map the zoom rocker to up/down arrows | |
| - make the favorite keys work without the IntelliPoint | |
| - make the calculator keys work without IntelliPoint | |
| - show screen indicators for Caps/Scroll/Num Locks |