Lord

Stories kicked by Lord

nvents 0.6 now runs on .NET 3.5 and 4.0(nvents.org)

submitted by LordLord(3737) 1 year, 2 months ago

The latest version of nvents (an open source library for strongly typed publishing/subscribing of events over the network) adds support for .NET 3.5 in addition to .NET 4.0 read more...

add a comment |category: |Views: 7

tags: another

Performance improvements and inheritance support in nvents 0.4(nvents.org)

submitted by LordLord(3737) 1 year, 5 months ago

Prior to version 0.4 nvents searched for subscribers and opened the connection to each server on every publish. Nvents 0.4 keeps the connections open and sends the publish event to known subscribers before searching for more subscribers. This, of course, dramatically increases the performance. read more...

add a comment |category: |Views: 3

tags: another

AOP in C#? Over Anders Hejlsberg’s Dead Body! (www.sharpcrafters.com)

submitted by gfraiteurgfraiteur(988) 1 year, 6 months ago

Gael Fraiteur respectfully demystifies the untruths spread by Anders Hejlsberg during PDC 10 about aspect-oriented programming . read more...

add a comment |category: |Views: 603

tags: another

Encryption, handlers and filters in nvents 0.3(nvents.org)

submitted by LordLord(3737) 1 year, 6 months ago

nvents (.NET events across the network) version 0.3 adds support for encryption, event handlers and filtering read more...

add a comment |category: |Views: 2

tags: another

LABjs & RequireJS: Loading JavaScript Resources the Fun Way(msdn.microsoft.com)

submitted by LordLord(3737) 1 year, 6 months ago

avaScript resource loading has many different concerns that bear on how it is approached. An increasing number of sites and applications are relying on complex systems of JavaScript resources and many developers are hoping for easier, faster and more maintainable patterns for dependency management. The authors of two open source projects, LABjs and RequireJS, discuss some different perspectives that accomplish those goals. read more...

add a comment |category: |Views: 90

tags: another

nvents - .NET events across the network(nvents.org)

submitted by LordLord(3737) 1 year, 6 months ago

Open source library for strongly typed publishing/subscribing of events. Events.Subscribe<FooEvent>(e => ..), Events.Publish(new FooEvent()). read more...

add a comment |category: |Views: 18

tags: another

What Really Makes a Good Programmer?(dpatrickcaldwell.blogspot.com)

submitted by tncbbthositgtncbbthositg(266) 1 year, 6 months ago

I wrote this survey and could really use some responses from the community. Feel free to stop by and take the survey. I'm publishing results soon. read more...

4 comments |category: |Views: 568

tags: another

Timing The Execution Time Of Your MVC Actions - Nick Berardi's Coder J(coderjournal.com)

submitted by javeryjavery(5523) 1 year, 6 months ago

Awesome approach for timing MVC Actions read more...

add a comment |category: |Views: 153

tags: another

Mobilize! Adapting the ASP.NET MVC Project Template for jQuery Mobile(yobriefcase.posterous.com)

submitted by kouphaxkouphax(345) 1 year, 7 months ago

Without modifying any server side code and only tweaking the views I found I was able to create a fully jquery-mobilified version of the ASP.NET MVC project template. This is how I did it. read more...

add a comment |category: |Views: 240

tags: another

ASP.NET MVC 2 Localization complete guide(adamyan.blogspot.com)

submitted by Alik.AdamyanAlik.Adamyan(135) 2 years, 3 months ago

This is a full guide for localizing asp.net mvc 2 web application covering following aspects: views localization, simple culture switching mechanism, model validation messages localization, DisplayName attribute localization and problem solving with caching(OutputCache) and localization. read more...

add a comment |category: |Views: 2508

tags: another

Executing lambdas on transaction commit - or Transactional delegates(blog.lowendahl.net)

submitted by lowendahllowendahl(750) 2 years, 6 months ago

One great thing with the TransactionScope class is that it makes it possible to include multiple levels in your object hierarchy. Except delegates. This post makes lambda delegates participate in a transaction scope and execute on Commit. read more...

add a comment |category: |Views: 6

tags: another

NHibernate Event Listener Registration With Fluent NHibernate(ferventcoder.com)

submitted by ferventcoderferventcoder(836) 2 years, 6 months ago

I’m a huge fan of NHibernate. It has excellent documentation and just makes the whole job of getting things into and out of the database much more enjoyable. There is a whole series of posts on NHibernate from one of the committers, Ayende. When Fluent NHibernate (FNH) came out, it was like butter on sliced bread. FNH makes it even easier to use NHibernate. Ayende had a post a while back on how to use Event Listeners. That helped me to ... read more...

add a comment |category: |Views: 57

tags: another

Pass Number 1: ActiveRecordEngine for ASP.NET « Rob Conery(blog.wekeroad.com)

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

Rob is looking for feedback read more...

add a comment |category: |Views: 227

tags: another

It’s Time for This: ActiveRecordEngine for ASP.NET MVC(blog.wekeroad.com)

submitted by senfosenfo(881) 2 years, 6 months ago

Rob Conery speaks about his idea for implementing an ActiveRecordEngine for ASP.NET MVC. Kind of like how Rails does it, but more loosely coupled. read more...

add a comment |category: |Views: 271

tags: another

CQRS à la Greg Young(blog.fohjin.com)

submitted by LordLord(3737) 2 years, 6 months ago

Greg has taken Domain-Driven Design from how Eric Evans describes it in his book and has adapted mostly the technical implementation of it. Command Query Separation (CQS) was originally thought of by Bertrand Meyer and is applied at object level Bertrand defines CQS as: every method should either be a command that performs an action, or a query that returns data to the caller, but not both. In other words, asking a question should not change the answer. Greg however takes this same principle but he applies it to the whole architecture of a system, clearly separating the write side (Commands) from the read side (Queries) of the system. read more...

add a comment |category: |Views: 38

tags: another

Using Test Impact Analysis in Visual Studio 2010(dotnetsurfers.com)

submitted by whocareswhocares(20) 2 years, 6 months ago

How to use Test impact analysis in visual studio 2010 read more...

add a comment |category: |Views: 20

tags: another