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
| { | |
| "title": "Change keyboard layout on cmd/alt press (Birman)", | |
| "rules": [ | |
| { | |
| "description": "Change input source to En Birman by left_command; Ru Birman by right_command (internal Apple keyboard).", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "conditions": [ | |
| { |
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
| { | |
| "title": "Change keyboard layout on cmd press", | |
| "rules": [ | |
| { | |
| "description": "Change input source to En by left_command; Ru by right_command.", | |
| "manipulators": [ | |
| { | |
| "type": "basic", | |
| "from": { | |
| "key_code": "left_command", |
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
| using System; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| namespace Test.UPnP | |
| { | |
| class MainClass | |
| { | |
| public static void Main(string[] args) | |
| { |
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
| #!/bin/sh | |
| # | |
| # Usage: startup_debug.sh <homegenie_folder_path> | |
| # Example: ./startup_debug.sh /usr/local/bin/homegenie | |
| # | |
| cd "`dirname \"$0\"`" | |
| if [ -f /usr/bin/mono ] | |
| then | |
| MONO="/usr/bin/mono" | |
| else |
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
| using System; | |
| using System.Net; | |
| using System.IO; | |
| using System.Xml.Linq; | |
| using ICSharpCode.SharpZipLib; | |
| using ICSharpCode.SharpZipLib.Zip; | |
| using ICSharpCode.SharpZipLib.Core; | |
| using System.Linq; | |
| namespace P1Db |