Skip to content
View jelster's full-sized avatar
Block or Report

Block or report jelster

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

  1. space-truckers space-truckers Public

    A game of getting stuff from Point A to Point B... IN SPAAAACCE!

    JavaScript 54 21

  2. CqrsMessagingTools CqrsMessagingTools Public

    C# 39 4

  3. gravitywell gravitywell Public

    BabylonJS powered game

    TypeScript 4

  4. ASP.NET Core 2.1 - Setting up functi... ASP.NET Core 2.1 - Setting up functional integration tests with authentication middleware
    1
    using Microsoft.AspNetCore.Mvc.Testing;
    2
    using System.Net;
    3
    using System.Threading.Tasks;
    4
    using Xunit;
    5
    using System.Net.Http;
  5. sample implementation of a recursive... sample implementation of a recursive (indirectly speaking) SymbolVisitor for Roslyn CTP. Returns flattened list of type symbols regardless of namespace nesting
    1
        public class Walk : SymbolVisitor<NamespaceSymbol, IEnumerable<NamedTypeSymbol>>
    2
        {
    3
    
                  
    4
            protected override IEnumerable<NamedTypeSymbol> VisitNamespace(NamespaceSymbol symbol, NamespaceSymbol argument)
    5
            {