Skip to content
View axelheer's full-sized avatar

Block or report axelheer

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. nein-linq Public

    NeinLinq provides helpful extensions for using LINQ providers such as Entity Framework that support only a minor subset of .NET functions, reusing functions, rewriting queries, even making them nul…

    C# 533 21

  2. nein-math Public

    NeinMath is playing around with arbitrary precision integers, written in pure managed code, not using any unsafe stuff, and a bit faster than the build-in .NET type for integers with a few thousand…

    C# 16 7

  3. Fake implementation of Entity Framew...
    1
    using System;
    2
    using System.Collections;
    3
    using System.Collections.Generic;
    4
    using System.ComponentModel.DataAnnotations;
    5
    using System.Data.Entity;
  4. Median extensions for LINQ
    1
    public static class MedianExtensions
    2
    {
    3
        public static double Median(this IEnumerable<int> source)
    4
        {
    5
            if (source == null)
  5. Generates a `Directory.Packages.prop...
    1
    function ConvertTo-CentralPackageManagement() {
    2
        Write-Host 'Searching for package references'
    3
    
                  
    4
        $packages = @{}
    5
        $conditionalPackages = @{}
  6. Custom *Assembly load context* as *M...
    1
    using System;
    2
    using System.Linq;
    3
    using System.Management.Automation;
    4
    using System.Reflection;
    5
    using System.Runtime.Loader;