Skip to content

Instantly share code, notes, and snippets.

View Gerrilicious's full-sized avatar

Gereon Doerner Gerrilicious

  • RDS CONSULTING GmbH
  • Düsseldorf
View GitHub Profile
@Gerrilicious
Gerrilicious / DownloadAspNetCoreHostingBundle.ps1
Created July 13, 2020 08:19
Download ASP.NET Core Hosting Bundle (3.1) with Powershell
#
# Reference: https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/iis/?view=aspnetcore-3.1
#
# Quick way to download the Windows Hosting Bundle and Web Deploy installers which may
# then be executed on the VM ...
#
#
# Set path where installer files will be downloaded ...
#
@Gerrilicious
Gerrilicious / App.jsx
Created February 7, 2019 12:01
React Router animation with typescript and Pose
// Libraries
import * as React from "react";
import posed, { PoseGroup } from 'react-pose';
import { Route, Switch, BrowserRouter } from "react-router-dom";
// Layout
import Layout from "./Layout";
// Components
import Dashboard from "./components/dashboard/Dashboard";