I hereby claim:
- I am luisenmarroquin on github.
- I am luismx (https://keybase.io/luismx) on keybase.
- I have a public key ASD5PU1ShSaxpQYZk32WvF-aFIQzr2uaU6xtMLO0WSZhygo
To claim this, I am signing this object:
| // Enhanced SIA to Contact ID mapping based on EventCodeList.csv | |
| // Gabriel's complete mapping - all events enabled | |
| const map = { | |
| // Medical/Health Events | |
| 'MA': { code: '100', qualifier: 'E' }, // Medical Alarm | |
| 'MH': { code: '100', qualifier: 'R' }, // Medical Alarm Restored | |
| // Burglary/Intrusion Events | |
| 'BA': { code: '130', qualifier: 'E' }, // Burglary Alarm | |
| 'BH': { code: '130', qualifier: 'R' }, // Burglary Alarm Restored |
I hereby claim:
To claim this, I am signing this object:
| # Install Docker with convenience script | |
| curl -fsSL https://get.docker.com -o get-docker.sh | |
| sudo sh get-docker.sh | |
| # Add your user to the Docker group | |
| sudo usermod -aG docker $USER | |
| # Refresh Docker group changes | |
| newgrp docker |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: S3 bucket for SPA and public read policy | |
| Parameters: | |
| BucketName: | |
| Type: String | |
| Default: my-unique-bucket-name-123456789 | |
| Resources: | |
| MyS3Bucket: | |
| Type: AWS::S3::Bucket | |
| Properties: |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| #SingleInstance Force ; Skips the dialog box and replaces the old instance automatically. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; ! = alt | |
| ; + = shift | |
| ; alt + key | |
| !a:: Send, {Asc 160} |
| #!/bin/bash | |
| CL_NULL='\e[0m' | |
| CL_FAIL='\e[0;31m' | |
| CL_NICE='\e[0;32m' | |
| CL_WARN='\e[0;33m' | |
| CL_BLUE='\e[0;34m' | |
| CL_PURP='\e[0;35m' | |
| CL_CYAN='\e[0;36m' |