Skip to content

Instantly share code, notes, and snippets.

View DeanVanNiekerk's full-sized avatar

Dean van Niekerk DeanVanNiekerk

  • Monax
  • Port Elizabeth, South Africa
View GitHub Profile

Keybase proof

I hereby claim:

  • I am deanvanniekerk on github.
  • I am deanvanniekerk (https://keybase.io/deanvanniekerk) on keybase.
  • I have a public key ASCjmtH0OaD_XREiYZPtokYCluDo0NoeKaetrqTI3hK-Owo

To claim this, I am signing this object:

@DeanVanNiekerk
DeanVanNiekerk / Index.cshtml
Created May 30, 2018 12:32
alchemylab - snip7
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Hello world</h1>
<div id="root"></div>
</body>
@DeanVanNiekerk
DeanVanNiekerk / Index.cshtml
Created May 30, 2018 11:57
alchemylab - snip6
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Hello world</h1>
<div id="root"></div>
</body>
@DeanVanNiekerk
DeanVanNiekerk / Index.cshtml
Created May 30, 2018 08:54
alchemylab - snip5
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Hello world</h1>
<div id="root"></div>
</body>
@DeanVanNiekerk
DeanVanNiekerk / app.js
Last active May 30, 2018 08:51
alchemylab - snip4
let element = document.getElementById('root');
counter(element);
@DeanVanNiekerk
DeanVanNiekerk / Index.cshtml
Last active May 30, 2018 08:35
alchemylab - snip3
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>Hello world</h1>
<div id="root"></div>
</body>
</html>
@DeanVanNiekerk
DeanVanNiekerk / HomeController.cs
Last active May 30, 2018 08:14
alchemylab - snip2
using System;
using Microsoft.AspNetCore.Mvc;
namespace alchemylab.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
return View();
@DeanVanNiekerk
DeanVanNiekerk / Startup.cs
Created May 30, 2018 08:05
alchemylab - snip1
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())