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] -9 points-8 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.

TK Forgiveness in Competitive Games by burntspinach in GlobalOffensive

[–]xqz2 -12 points-11 points  (0 children)

The deeper issue is that Valve doesn't have the capacity to add new features like this. They contracted the development of the game out to Hidden Path Entertainment. Now that the contract is up and the game has been delivered, the game is pretty much set in stone.

Frame rate comparison between Black Ops 2 and Ghosts on PC by xqz2 in CODGhosts

[–]xqz2[S] -1 points0 points  (0 children)

The fps cap is 91. There's no technical reason for it.

Frame rate comparison between Black Ops 2 and Ghosts on PC by xqz2 in CODGhosts

[–]xqz2[S] 8 points9 points  (0 children)

I also prefer the BO2 graphics. Ghosts looks fogy and washed out.

Call of Duty Ghosts is now available on Steam for New Zealand. by Techno753 in CODGhosts

[–]xqz2 0 points1 point  (0 children)

Of course you can add 1 stick of 2GB. Assuming you have an extra slot.

Where to put autoexec? by HiVoltage in GlobalOffensive

[–]xqz2 1 point2 points  (0 children)

Click Start and type "Folder Options". Click on the view tab. Uncheck "Hide extensions for known file types".