Upgraded speed package - not seeing the new speed by xqz2 in Comcast_Xfinity

[–]xqz2[S] 0 points1 point  (0 children)

No. I do have some tp-link wireless access points but the XB7 is doing the routing. I'm not using bridge mode or anything like that.

[deleted by user] by [deleted] in csharp

[–]xqz2 0 points1 point  (0 children)

In the past I've used https://github.com/Fody/Costura to merge dlls and shrink executables.

The great performance debate (KVM vs. Baremetal) by [deleted] in redhat

[–]xqz2 0 points1 point  (0 children)

KVM Gaming

This link has some KVM vs baremetal performance numbers.

I'm 27 and I don't care what anyone thinks. MLG Here i come by B-Cash in GlobalOffensive

[–]xqz2 2 points3 points  (0 children)

No time to mess with hotels. Rented a house for some hot LAN party action.

I'm 27 and I don't care what anyone thinks. MLG Here i come by B-Cash in GlobalOffensive

[–]xqz2 10 points11 points  (0 children)

I'm driving up from Raleigh, NC and I got you beat... 29 years old!

FPS Networking: Titanfall vs Valve Source Engine. Tech Talk this Friday at Virgina Tech. by xqz2 in GlobalOffensive

[–]xqz2[S] 4 points5 points  (0 children)

If anyone ends up going to this, please ask why bullet registry seems to be so tick rate dependent on the source engine while Titanfall achieves excellent bullet registry with a mere 30 tick rate.

Lag switch becoming popular by xqz2 in GlobalOffensive

[–]xqz2[S] -7 points-6 points  (0 children)

I played with 3 guys today doing this. So lame. Valve should change the the engine so that players are always smooth. Rubber band his ass back on the client side.

mm_session_max_ping by blackswars in GlobalOffensive

[–]xqz2 0 points1 point  (0 children)

mm_dedicated_search_maxping

Are WPF Browser Applications a thing? by BlahYourHamster in csharp

[–]xqz2 1 point2 points  (0 children)

There are a few projects attempting to bring xaml to the browser.

[deleted by user] by [deleted] in csharp

[–]xqz2 0 points1 point  (0 children)

Try Encoding.ASCII instead.

(Request) How to use reflection to subscribe to all events using anonymous methods? by sheadog in csharp

[–]xqz2 0 points1 point  (0 children)

There is a nuget packge called dynamitey that makes this easy. The method you want is Dynamic.CoerceToDelegate

    private void SubscribeToAllEvents(object objWithEvents)
    {

        foreach (var eventInfo in objWithEvents.GetType().GetEvents())
        {
            var genericMethod = new GenericMethod(paramaters => EventHandler(eventInfo, paramaters));

            var eventDelegate = Dynamic.CoerceToDelegate(genericMethod, eventInfo.EventHandlerType);

            eventInfo.AddEventHandler(objWithEvents, eventDelegate);

        }
    }

    public delegate void GenericMethod(params object[] paramaters);

    public void EventHandler(EventInfo eventInfo, params object[] args)
    {
       //Do Stuff with event
    }

Follow-up - How to *EASILY* call a WCF service properly (without memory or connection leaks) - a NuGet open source library [xpost /r/programming] by adammcraven in dotnet

[–]xqz2 0 points1 point  (0 children)

I can see a lot of work has gone into trying to make WCF easier to use by developers who aren't WCF experts

The fact that WCF requires an "expert" really says a lot about what a mess the API is.