gregbeech

Stories kicked by gregbeech

Regex based Lexer with F#(blogs.msdn.com)

submitted by jemtsjemts(591) 2 years, 4 months ago

A regular expression based lexer in F# using computation expressions to enable a declarative way to define the lexer rules. read more...

add a comment |category: |Views: 42

tags: another

My Favorite Helpers For ASP.NET MVC(blog.wekeroad.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

Rob shares some of his frequently used helpers for working with ASP.NET MVC. read more...

1 comment |category: |Views: 473

tags: another

Making NCloak fool Reflector (an implementation) : Paul Mason(blog.paul-mason.co.nz)

submitted by tivittivit(364) 2 years, 4 months ago

In the last article of the series we took a look at two different methods for stopping Reflector being able to successfully decompile our code: inserting invalid IL, and modifying header information. Today we'll implement the more common approach: inserting invalid IL into each method inside our assembly making unreadable in Reflector. read more...

3 comments |category: |Views: 226

tags: another

How to not suck at a techincal interview(www.bradcunningham.net)

submitted by FoovanadilFoovanadil(155) 2 years, 4 months ago

CORRECT LINK THIS TIME. Tips to improve your marketability during a technical interview. Mostly a rant :) read more...

7 comments |category: |Views: 668

tags: another

Avoid pseudomutator methods(gregbeech.com)

submitted by gregbeechgregbeech(76) 2 years, 6 months ago

Explores why methods that appear to change the state of immutable objects can cause subtle bugs, and what you should do to avoid them on your own objects. read more...

add a comment |category: |Views: 12

tags: another

Application-wide action filters in ASP.NET MVC(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 11 months ago

Ever had a team of developers using your ASP.NET MVC framework? Chances are you have implemented some action filters (i.e. for logging) which should be applied on all controllers in the application. Two ways to do this: kindly ask your developers to add a [Logging] attribute to the controllers they write, or kindly ask to inherit from SomeCustomControllerWithActionsInPlace. If you have been in this situation, monday mornings, afternoons, tuesdays and other weekdays are in fact days where some developers will forget to do one of the above. This means no logging! Or any other action filters that are executed due to a developer that has not been fed with enough coffee… Wouldn’t it be nice to have a central repository where you can register application-wide action filters? That’s exactly what we are going to do in this blog post. read more...

add a comment |category: |Views: 243

tags: another

ASP.Net – Never again fear publishing your website with debug=true(blog.aggregatedintelligence.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 1 month ago

What makes the deployment element special is that it is a machine level configuration element. When its retail attribute is set to true, it will disable the <compilation debug=”true”> for ALL ASP.Net applications running on that machine. In addition, it turns of detailed errors messages being sent to remote machines and disables the ability to trace output. read more...

add a comment |category: |Views: 407

tags: another

The State of ALT.NET(coderjournal.com)

submitted by zigamorphzigamorph(3319) 3 years, 2 months ago

Over the past 6 months I have been trying to really quantify what it means to be using ALT.NET practices. And I can honestly say that I still honestly don’t know what it means to be an ALT.NETer. But I have come to a number of conclusions about the state of the ALT.NET community, that I wanted to share. (1) The ALT.NET Community is fractured among itself. (2) Take the religious zealotry out of ALT.NET (3) Craftsmanship with out Engineering is no way to program software. read more...

add a comment |category: |Views: 392

tags: another

All about the IDisposible Pattern(gregbeech.com)

submitted by hakkiyilmazhakkiyilmaz(80) 3 years, 2 months ago

Why and how to implement IDisposible pattern in your own code. Here you will find almost all aspects of this pattern read more...

add a comment |category: |Views: 439

tags: another

How .NET Regular Expressions Really Work(moserware.com)

submitted by moserwaremoserware(1665) 3 years, 2 months ago

A very deep dive into the source code for how .NET Regular Expressions really work read more...

3 comments |category: |Views: 609

tags: another

How to Integrate with Facebook Connect(devtacular.com)

submitted by bkonbkon(210) 3 years, 3 months ago

This article demonstrates how to integrate Facebook Connect into your existing ASP.NET site in just a few simple steps. It teaches the basics of integration with full sample code included for download. read more...

2 comments |category: |Views: 618

tags: another

OAuth Providers on ASP.net MVC Projects(bgeek.net)

submitted by buildmasterbuildmaster(225) 3 years, 3 months ago

A Library for creating OAuth Providers with MS ASP.net MVC read more...

add a comment |category: |Views: 564

tags: another

Arguments against using an ORM layer - an ammunition stockpile(ifdefined.com)

submitted by markheathmarkheath(1485) 3 years, 3 months ago

Interesting read questioning the conventional arguments for using ORM. Always useful to hear the "other" side of the argument once in a while. read more...

add a comment |category: |Views: 27

tags: another

Deserializing the request body into a parameter with ASP.NET MVC(gregbeech.com)

submitted by gregbeechgregbeech(76) 3 years, 4 months ago

Shows how to deserialize the body of an HTTP request into a method parameter by using a custom IModelBinder in ASP.NET MVC. Particularly useful for PUT/POST if you're implementing a RESTful API with it. read more...

add a comment |category: |Views: 30

tags: another

Integrating StructureMap with WCF(lostechies.com)

submitted by gregbeechgregbeech(76) 3 years, 8 months ago

Details of how to create custom service hosts & behaviours to integrate StructureMap with WCF. It would be much the same approach for any other service container. read more...

add a comment |category: |Views: 230

tags: another

Tips & Tricks: Use DebuggerDisplayAttribute for easier debugging(gregbeech.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 8 months ago

When debugging, it's common to hover over an object to get a quick view of what its properties are. This is where DebuggerDisplayAttribute comes in. The format string looks similar to normal .NET format strings in that the values to replace are between curly braces, but instead of being told what to substitute the debugger treats these values as expressions and attempts to evaluate them using the current context. read more...

add a comment |category: |Views: 225

tags: another