Skip to content

Instantly share code, notes, and snippets.

View JaimeStill's full-sized avatar
👽

Jaime Still JaimeStill

👽
  • Arma Global / General Dynamics
  • Fayetteville, NC
View GitHub Profile
@JaimeStill
JaimeStill / experiments.js
Created April 23, 2016 06:31
D3 Maps Notes
(function () {
var createBoundingMap = function () {
var height = 600,
width = 900;
var projection = d3.geo.mercator();
var mexico = void 0;
var path = d3.geo.path().projection(projection);
@JaimeStill
JaimeStill / index.html
Created April 23, 2016 23:15
Rotating Orthographic - USA Highlighted
<!DOCTYPE html>
<html>
<head>
<title>Rotating Orthographic - USA Highlighted</title>
<meta charset="utf-8" />
<link href="site.css" rel="stylesheet" />
</head>
<body>
<h2>Rotating Orthographic - USA Highlighted</h2>
<div id="rotating-orthographic"></div>
@JaimeStill
JaimeStill / bootstrap-intro.md
Last active March 12, 2017 15:47
Introductory Tutorial for Working with Bootstrap
@JaimeStill
JaimeStill / platform.md
Last active March 12, 2017 20:23
Angular and ASP.NET Core Template / Workflow

Angular and ASP.NET Core Template Scaffolding and Workflow

Documentation in Progress

See on GitHub

This project was put together based off of the Angular projects from the generator-aspnetcore-spa generator. I wanted to understand how all of the components worked in that project template, and how to strip it down to a more bare starting point. A big reason for this was that I didn't want to be tied to using Bootstrap

Contents

@JaimeStill
JaimeStill / efdp.md
Last active March 16, 2017 00:00
EFDP Web App Process Guide
@JaimeStill
JaimeStill / javascript.md
Last active April 19, 2017 13:15
Snippet notes related to JavaScript and JavaScript-based technologies
@JaimeStill
JaimeStill / intermediate-aspnet-core.md
Last active July 9, 2017 13:23
MVA Intermediate ASP.NET Core 1.0
@JaimeStill
JaimeStill / dotnet.md
Last active July 13, 2017 20:06
Snippet notes related to .NET technologies
@JaimeStill
JaimeStill / AccountModel.cs
Last active August 10, 2017 20:07
Stuff to remember for PowerShell interactions in C# / Angular
public class AccountModel
{
public string samAccountName { get; set; }
public string surname { get; set; }
public string givenName { get; set; }
public string initials { get; set; }
public string path { get; set; }
public string officePhone { get; set; }
public string company { get; set; }
public string department { get; set; }