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
#!/usr/bin/env bash | |
## this script assumes that you have the GitHub CLI and jq installed. | |
## before you run this script you should run `gh auth status` to make sure that | |
## you are logged in, otherwise the script will not work. | |
while getopts ":t:f:n:" args; do | |
case $args in | |
t) TO_ORGANIZATION=$OPTARG;; | |
f) FROM_ORGANIZATION=$OPTARG;; |
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
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "npm", | |
"script": "start:debug", | |
"group": "build", | |
"problemMatcher": [], | |
"label": "beginDebug", | |
"detail": "nest start --debug --watch" |
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Debug Nest Framework", | |
"args": [ | |
"${workspaceFolder}/src/main.ts" | |
], |
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
a4b.amazonaws.com | |
acm-pca.amazonaws.com | |
acm.amazonaws.com | |
alexa-appkit.amazon.com | |
alexa-connectedhome.amazon.com | |
amazonmq.amazonaws.com | |
apigateway.amazonaws.com | |
application-autoscaling.amazonaws.com | |
appstream.application-autoscaling.amazonaws.com | |
appsync.amazonaws.com |
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
DECLARE @json NVARCHAR(MAX) = N'{"json":"here"}'; | |
INSERT INTO tableName (Id, columnA, columnB, ...) | |
SELECT NEWID(), * FROM OPENJSON(@json) | |
WITH ( | |
columnA VARCHAR(255) '$.columnA', | |
columnB VARCHAR(255) '$.columnB', | |
... | |
) |
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/bash | |
# downloads all dependencies for a project via nuget. | |
# useful for vscode users on linux. | |
regex='PackageReference Include="([^"]*)" Version="([^"]*)"' | |
find . -name "*.*proj" | while read proj | |
do | |
while read line | |
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
[ | |
'account:DisableRegion', | |
'account:EnableRegion', | |
'account:ListRegions', | |
'a4b:ApproveSkill', | |
'a4b:AssociateContactWithAddressBook', | |
'a4b:AssociateDeviceWithRoom', | |
'a4b:AssociateSkillGroupWithRoom', | |
'a4b:AssociateSkillWithSkillGroup', | |
'a4b:AssociateSkillWithUsers', |