Skip to content

Instantly share code, notes, and snippets.

View anthonychu's full-sized avatar

Anthony Chu anthonychu

View GitHub Profile
@anthonychu
anthonychu / resources.md
Last active December 6, 2018 09:24
Resources for DEVintersection SignalR talk
@anthonychu
anthonychu / resources.md
Last active October 30, 2018 05:38
CPEN 321 - Containers resources
@anthonychu
anthonychu / resources.md
Last active October 24, 2018 17:29
Calgary .NET User Group - SignalR Resources
@anthonychu
anthonychu / resources.md
Last active January 23, 2019 07:58
Ignite The Tour - Azure Functions + SignalR Service resources
#!/bin/bash
APPS=$(az functionapp list --query "[].{group: resourceGroup, name: name}" --output tsv)
IFS=$'\n'
for APP in $APPS
do
GROUP=$(echo $APP | cut -f 1)
NAME=$(echo $APP | cut -f 2)
VERSION=$(az functionapp config appsettings list -g $GROUP -n $NAME --query "[?name == 'FUNCTIONS_EXTENSION_VERSION'].value" --output tsv)
@anthonychu
anthonychu / sfdeploy-app-1.json
Last active July 18, 2018 17:00
Service Fabric Mesh TensorFlow Fruit Deployment
{
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string",
"defaultValue": "eastus",
"metadata": {
"description": "Location of the resources."
}
@anthonychu
anthonychu / netbc-signalr-july-2018.md
Last active July 11, 2018 23:17
Resources for .NET BC SignalR Meetup
FROM microsoft/aspnet
WORKDIR /inetpub/wwwroot
COPY . .
ENTRYPOINT ["powershell.exe", ".\\Startup.ps1"]