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
| python get-pip.py |
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
| <IfModule mod_mime.c> | |
| AddType text/css .css | |
| AddType text/x-component .htc | |
| AddType application/x-javascript .js | |
| AddType application/javascript .js2 | |
| AddType text/javascript .js3 | |
| AddType text/x-js .js4 | |
| AddType video/asf .asf .asx .wax .wmv .wmx | |
| AddType video/avi .avi | |
| AddType image/bmp .bmp |
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
| clear() --clear the console from last run | |
| local keyboardIdentifier = '13DD145D' | |
| lmc_print_devices() | |
| if keyboardIdentifier == '0000AAA' then | |
| lmc_assign_keyboard('MACROS'); | |
| else lmc_device_set_name('MACROS', keyboardIdentifier); | |
| end | |
| dev = lmc_get_devices() |
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
| echo off | |
| start c:\Macros\LuaMacros.exe -r c:\Macros\TheNameYouSaved.lua |
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
| elseif (button == 37) then lmc_spawn("C:\\Program Files\\AutoHotkey\\autohotkey.exe", "c:\\Macros\\AHK\\WTP-ANALYTICS.ahk") |
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
| clear() --clear the console from last run | |
| local keyboardIdentifier = '13DD145D' | |
| lmc_print_devices() | |
| if keyboardIdentifier == '0000AAA' then | |
| lmc_assign_keyboard('MACROS'); | |
| else lmc_device_set_name('MACROS', keyboardIdentifier); | |
| end | |
| dev = lmc_get_devices() | |
| for key,value in pairs(dev) do |
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
| clear() --clear the console from last run | |
| local keyboardIdentifier = '0000AAA' | |
| if keyboardIdentifier == '0000AAA' then | |
| lmc_assign_keyboard('MACROS'); | |
| else lmc_device_set_name('MACROS', keyboardIdentifier); | |
| end | |
| --This lists connected keyboards | |
| dev = lmc_get_devices() | |
| for key,value in pairs(dev) do | |
| print(key..':') |