Skip to content

Instantly share code, notes, and snippets.

View jeffhollan's full-sized avatar
❄️
Working

Jeff Hollan jeffhollan

❄️
Working
View GitHub Profile
{
"$schema": "http://json.schemastore.org/proxies",
"proxies": {
"loaderio": {
"matchCondition": {
"methods": [ "GET" ],
"route": "/loaderio125125125"
},
"responseOverrides": {
"response.body": "loaderio125125125",
@nertim
nertim / CSVToJsonArray.cs
Created December 11, 2017 23:40
CSV To Json Array Azure Function
#r "newtonsoft.json"
using Newtonsoft.Json.Linq;
using System;
using System.Linq;
using System.Net;
public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
log.Info("C# HTTP trigger function processed a request.");