This is the right part of the mountain I use to decorate my profile :)
View gist:c6804d012bc4ed7b5f4ad0839b5165ae
/* | |
Quaack Quack | |
_ | |
<(o) Quick Qwack | |
( —) _ | |
^^^^^^^^^^ (o)> | |
(— ) | |
^^^^~~~~~~ |
View FAT.c
///////////////////////////////////////////////////////////////////////// | |
//// FAT_PIC.C //// | |
//// //// | |
//// Driver/Library for a FAT filesystem with a PIC //// | |
//// //// | |
//// This Library was designed to resemble standard ANSI C I/O as //// | |
//// much as possible. There are, however, some caveats to this. //// | |
//// Please read the comments to make sure the inputs and outputs //// | |
//// to each function are understood before using anything in //// | |
//// this library. //// |
View easa_flightlog.html
<table class="table table-bordered"> | |
<thead> | |
<tr> | |
<th scope="col" rowspan=2>#</th> | |
<th scope="col">Date</th> | |
<th scope="col" colspan=2>Departure</th> | |
<th scope="col" colspan=2>Arrival</th> | |
<th scope="col" colspan=2>Aircraft</th> | |
<th scope="col" colspan=2>Single Pilot Time</th> | |
<th scope="col" rowspan=2>Multi Pilot Time</th> |
View CoordinatesToText.linq
<Query Kind="Program"> | |
<Reference><RuntimeDirectory>\System.IO.Compression.dll</Reference> | |
<Reference><RuntimeDirectory>\System.IO.Compression.FileSystem.dll</Reference> | |
<NuGetReference>Humanizer</NuGetReference> | |
<NuGetReference>NetTopologySuite</NuGetReference> | |
<Namespace>System.IO.Compression</Namespace> | |
<Namespace>System.Net</Namespace> | |
<Namespace>System.Threading.Tasks</Namespace> | |
<Namespace>NetTopologySuite.Index.KdTree</Namespace> | |
<Namespace>GeoAPI.Geometries</Namespace> |
View LicenseComparison.cs
void Main() | |
{ | |
StreamReader csvreader = new StreamReader(@"C:\Documents\subset.csv"); | |
var font = new Font("kenteken", 300, FontStyle.Regular, GraphicsUnit.Pixel, 0x00); | |
Dictionary<String, double[]> results = new Dictionary<String, double[]>(); | |
var reference = new Bitmap(@"C:\Documents\reference.bmp"); | |
var normalizedRef = Normalize(reference); |