Entries:
Comments:
Posts:

Loading User Information from Channel 9

Something went wrong getting user information from Channel 9

Latest Achievement:

Loading User Information from MSDN

Something went wrong getting user information from MSDN

Visual Studio Achievements

Latest Achievement:

Loading Visual Studio Achievements

Something went wrong getting the Visual Studio Achievements

Discussions

Adam Speight Adam​Speight2008 The Bandito Coder
  • Spamalot

    Can I suggest we let them spam away but on a newly spawned instance of the forum only they can interact. with.

    Wastes their time, whilst collecting evidence and information which then can be use as learning data for the forum software so it can automatically spawn, or suspicion of spam..

    The Mods can always change which instance of the forum you see.

  • I've been assimilated!

    He's the Guy in Nine Guy costume now.

  • Why does IE10 break Cleartype for us Desktop users???

    @JoshRoss:So you not heard that you can purchase polished turds.

  • How can I combine 2 ​Observable​Collections side by side?

    What about using zip.

    col_A.Zip(col_B, Function(a,b) {a,b})

    or using RX?

  • True hope!!!​!!!!!!

    Why not just urinate into a telsa turbine generator. After a night on the pop, that first whizz of the morning could power my laptop for a week. 

  • Thoughts on NuGet?

    Why do a lot people of assume NuGet is just for Visual Studio and programming?

    It's a Package Manager, there's nothing stop you using it for Managing Packages of other things. Say documentation auto-magically have up-to-date documentation. Eg Company Policies / Health & Safety Docs or Issuing of Comics. 

    Distribution of game levels.  

  • Windows 8 Surface versus Apple

    @spivonious

    What about a new XBox?

    XBox Mobile (Sony Vita)?

    This would be insanely cool, a mobile phone capable of playing current XBox games.

    HD Kinect? Enough for precision Finger joint recognition and facial expression recognition

    Imagine a shoot-em-up where your guns are your hands.

    For accessibility imagine someone using Skype where their signing is automatic "translated" into text / speech. And the other callers speech is translate into text / signing.

     

  • Sticky Language

    @spivonious: Not End as that just ends the program, but any of the following I'm fine with.

    End If
    End While
    End Select
    End With 
    End Function
    End Sub
    End Class
    End Structure
    End Interface
    End Module
    End Event
    End AddHandler
    End RemoveHandler
    End RaiseEvent
    End Get
    End Set
    End Property
    End SyncLock
    End Try
    End Namespace
    End Operator
    End Using
    End Enum
    #End Region
    #End ExternalSource

    I think that's all of them.

  • Sticky Language

    You could always use an import alias. The Explicit Line Continuation is needed in the following example, as its one of the place where Implicit Line Continuation leads to ambiguity. To separate the method parameters onto individual lines. Plus there is the single line IF Statement, and you don't need the brackets on the method call which takes no arguments. ByVal is the default so you don't them. If you turn off the pretty print mechanism you can also line them up. 

    Imports Dbgr=System.Diagnostics.Debugger
    
    Private Sub ScheduledAgent_UnhandledException _ 
    ( sender As Object,
           e As ApplicationUnhandledExceptionEventArgs
    )
      If Dbgr.IsAttached Then Dbgr.Break
    End Sub

  • How are you using Tuple in code?

    @Dr Herbie: I'm sure you can return anonymous types, if the return type in the signature is T.

    Subsequent variables have to be typed T or var, the same goes for input parameters.

     But in practice it usually better to have a "concrete" type instead.