Browse by Tags

Related Posts

  • The best way to show code in your blog

    Forget what I said earlier ... get this: http://www.jtleigh.com/people/colin/software/CopySourceAsHtml/ This is a much better solution. For example: public IQueryable < Property > SecuredProperties { get { IQueryable < Property > q; //if the user is an admin, bypass security if (_Service...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 11-23-2006, 12:00 AM
    Filed under: DLINQ, C#, C# 3.0, Tips and Tricks, ASP.NET, .NET
  • How to log in to the "Orcas" - January 2007 Community Technology Preview (CTP)

    If you were like me and downloaded the CTP today, all anxious to give it a whirl, you probably found out like I did, that the credentials that the web page state to use DON'T WORK! The website says: VPC Credentials: Username: Administrator Password: P2ssw0rd ( NOTE: Microsoft strongly recommends...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 01-11-2007, 12:00 AM
    Filed under: Downloads, C#, .NET, DLINQ, ASP.NET, C# 3.0, Tips and Tricks
  • How to log in to the "Orcas" - January 2007 Community Technology Preview (CTP) Base Image

    If you were like me and downloaded the CTP today, all anxious to give it a whirl, you probably found out like I did, that the credentials that the web page state to use DON'T WORK! The website says: VPC Credentials: Username: Administrator Password: P2ssw0rd (NOTE: Microsoft strongly recommends that...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 01-11-2007, 12:00 AM
    Filed under: Downloads, C#, .NET, DLINQ, ASP.NET, C# 3.0, Tips and Tricks
  • How to easily deal with Nullable Types

    If you have to work with mapping data to objects you know what a pain working with nulls has been historically. In the past, your database can deal with nulls very easy but your object model could not. As developers and architects, we would have to come up with “schemes” to deal with a null...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 11-27-2006, 12:00 AM
    Filed under: C#, .NET, DLINQ, ASP.NET, C# 3.0, Tips and Tricks, Nullable Types
  • The best way to show code in your blog

    Forget what I said earlier ... get this: http://www.jtleigh.com/people/colin/software/CopySourceAsHtml/ This is a much better solution. For example: public IQueryable < Property > SecuredProperties { get { IQueryable < Property > q; //if the user is an admin, bypass security if (_Service...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 11-23-2006, 12:00 AM
    Filed under: C#, .NET, DLINQ, ASP.NET, C# 3.0, Tips and Tricks
  • Some cool info on C# 3.0 in an easy to read, concise format

    LINQ enables developers to query data sources directly out of code with a SQL like query language. You could write to get all customers out of a table. This new way of queries is only possible because of several new language features in C# 3.0, which Anders explained in his 75 min. session: Local Variable...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 11-13-2006, 12:00 AM
    Filed under: C#, .NET, ASP.NET, C# 3.0
  • Goodies Downloaded this week

    1) Beta 2 of Atlas/Ajax or whatever you wanna call it this week http://ajax.asp.net/ 2) .NET 3.0 Framework http://www.microsoft.com/downloads/details.aspx?FamilyId=10CC340B-F857-4A14-83F5-25634C3BF043&displaylang=en 3) The Visual Studio 2005 SP1 Beta http://connect.microsoft.com/VisualStudio/content...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 11-09-2006, 12:00 AM
    Filed under: C#, .NET, ASP.NET, C# 3.0
  • LINQ, ScottGu and NDDNUG

    After a killer presentation by ScottGu at North Dallas .Net User Group I finally got around to playing with LINQ and in particular the database portion of it known as DLINQ. After about 20 hours of "learning the ropes" over the weekend, I decided to show what I had figured out to some of my...
    Posted to CodeMonkey<wwright>:IConfused (Weblog) by wwright on 11-09-2006, 12:00 AM
    Filed under: C#, .NET, DLINQ, ScottGu, NDDNUG, ASP.NET, C# 3.0
  • Nested sequences and palindrome numbers

    Problem 4 of Project Euler poses and impractical albeit intriguing problem: given all three digit numbers (100, 101, 102, ..., 998, 999), find the largest product of 2 of those numbers, where the product is a palindrome . For example, 580.085 is the product of two three-digit numbers (995 x 583) but...
    Posted to .NET at 9.400 ft above sea level (Weblog) by Edgar Sánchez on 04-22-2008, 12:00 AM
    Filed under: C#, Functional Programming, C# 3.0, Project Euler
  • Recursive lambdas and sequence aggregations

    The fifth problem at Project Euler proposes this nostalgic primary school exercise: find the smallest quantity that is evenly divisible by some numbers, the least common multiple of 1, 2, 3, ..., 20 to be precise. To begin with, let's remember the old arithmetic formula:   Where gcd is the greatest...
    Posted to .NET at 9.400 ft above sea level (Weblog) by Edgar Sánchez on 04-24-2008, 12:00 AM
    Filed under: C#, Functional Programming, Math, C# 3.0, Project Euler
Page 1 of 2 (13 items) 1 2 Next >