Skip to content

Instantly share code, notes, and snippets.

View johntholland's full-sized avatar

John T Holland johntholland

View GitHub Profile
@johntholland
johntholland / gitignore
Created December 10, 2015 15:15 — forked from mustafaturan/gitignore
remove gitignored files
# remove gitignored files
git rm . -r --cached
git add .
git commit -m "fixed untracked files"
@johntholland
johntholland / gist:6117244
Created July 30, 2013 21:38
A class that illustrates how to determine if a point falls on a line
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PointOnLine
{
class Class1
{