Skip to content

Instantly share code, notes, and snippets.

View tdutch1's full-sized avatar

Tim Dutcher tdutch1

  • Altriva
  • Bellevue, WA
View GitHub Profile
@tdutch1
tdutch1 / function.json
Last active February 7, 2017 23:45
Azure Function to process Twitter tweets: Stores received tweet text in Azure Storage table, indicates whether tweet is a duplicate or should be ignored
{
"bindings": [
{
"type": "httpTrigger",
"direction": "in",
"webHookType": "genericJson",
"name": "req"
},
{
"type": "http",
@tdutch1
tdutch1 / GetHoursSinceUtcDateTime.csx
Last active January 19, 2017 02:10
Webhook triggered C# Azure Function: Returns the number of hours between now (UTC) and a given UTC-formatted date/time
#r "Newtonsoft.Json"
using System;
using System.Net;
using System.Globalization;
using Newtonsoft.Json;
public static async Task<object> Run(HttpRequestMessage req, TraceWriter log)
{
log.Info($"Function triggered");