Skip to content

Instantly share code, notes, and snippets.

View jongalloway's full-sized avatar

Jon Galloway jongalloway

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jongalloway
jongalloway / itkonekt 2018 - What's New in .NET Core - Jon Galloway.md
Last active April 21, 2018 10:12
Links from What's New in .NET Core presentation at it-Konekt 2018

Keybase proof

I hereby claim:

  • I am jongalloway on github.
  • I am jon_galloway (https://keybase.io/jon_galloway) on keybase.
  • I have a public key ASARz-IGrH5DyRsKyXz_OHgLO5jk40W4OYScG5GFJx7KHAo

To claim this, I am signing this object:

@jongalloway
jongalloway / barrys-user-secrets.json
Created September 17, 2018 23:36
Barry is a terrible person
{
"twitter:consumerSecret": "sPiigZdUtlrYTY2wmZurNcxZza0gnwVwFw9AGiL9tm5Mns6vzY",
"twitter:consumerKey": "eFqGFPAG9VbcKXi13NoiNfqcl",
"google:clientID": "{your-client-ID-here}",
"google:clientSecret": "{your-key-here}"
}
@jongalloway
jongalloway / FunctionalTests.cs
Last active June 4, 2019 03:41
ASP.NET Core 2.1 Functional Testing
using Microsoft.AspNetCore.Mvc.Testing;
using System;
using System.Threading.Tasks;
using Xunit;
namespace WebApp.Tests
{
public class BasicTests
: IClassFixture<WebApplicationFactory<Startup>>
{
@jongalloway
jongalloway / aspnetcore-one-hour-makeover.md
Last active April 30, 2022 08:24
ASP.NET Core One Hour Makeover
@jongalloway
jongalloway / _Layout.cshtml
Created October 24, 2018 09:03
ConferencePlanner with identity
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - FrontEnd</title>
<environment include="Development">
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="~/css/site.css" />
Set-Alias less "C:\Program Files\Git\usr\bin\less.exe"
function f($text, $files="*.*")
{
findstr /spin $text $files | less
}