Skip to content
View ahancock1's full-sized avatar

Block or report ahancock1

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Han.EntityFrameworkCore.Repository Han.EntityFrameworkCore.Repository Public

    A generic repository pattern for entity framework core

    C# 2

  2. Han.Wpf.ViewportControl Han.Wpf.ViewportControl Public

    A Wpf Viewport Control that provides pan and zoom functionality.

    C# 7 3

  3. Ramer–Douglas–Peucker algorithm is a... Ramer–Douglas–Peucker algorithm is a line simplification algorithm for reducing the number of points used to define its shape. Implemented in C# 7
    1
    namespace Interpolation
    2
    {
    3
        using System;
    4
        using System.Collections.Generic;
    5
        using System.Linq;
  4. MonotoneCubicInterpolation MonotoneCubicInterpolation
    1
        public class MonotoneCubicSpline
    2
        {
    3
            private readonly double[] _x;
    4
            private readonly double[] _y;
    5
            private readonly int _n;
  5. A weighted and timed rate limiter fo... A weighted and timed rate limiter for c# that limits access to resources
    1
    
    
    2
        public abstract class Disposable : IDisposable
    3
        {
    4
            private bool _disposed;
    5