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
function sendCommand(direction) | |
print("in sendcommand") | |
if lastKeys~="" then | |
print("hit it: " .. lastKeys) | |
file = io.open("c:\\dev\\logs\\lua.txt", "w") | |
file:write(lastKeys) | |
file:close() | |
lastKey="" | |
lastKeys="" | |
ignoreUp=true |
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
devices={"Lefty","Logi","Rolly"} | |
lmc_assign_keyboard('Lefty'); | |
lmc_assign_keyboard('Logi'); | |
lmc_assign_keyboard('Rolly'); | |
-- Do not edit below this line | |
-- -------------------------------------------------- | |
clear(); | |
require "functions" |
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
namespace PROJECTNAME.Migrations | |
{ | |
using System; | |
using System.Data.Entity; | |
using System.Data.Entity.Migrations; | |
using System.Linq; | |
public sealed class Configuration : DbMigrationsConfiguration<PROJECTNAME.CLASSNAME> | |
{ | |
public Configuration() |
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
#Include Gdip.ahk | |
#Include CircleProgressClass.ahk | |
#SingleInstance, Force | |
SysGet, mon, MonitorWorkArea | |
thickness := 15 | |
spacing := thickness*2 | |
hrDiam := thickness+spacing | |
minDiam := hrDiam+spacing |
NewerOlder