keyvan

Stories kicked by keyvan

Premature optimization: Not necessarily the root of all evil(www.keyvan.ms)

submitted by dpetersondpeterson(4397) 8 months, 5 days ago

Keyvan Nayyeri gives us an excellent discussion piece regarding the use and abuse of Knuth's quote "Premature optimization is the root of all evil". Nayveri goes on to explain what Knuth really meant by this quote, in the context of his overall work. This is a must read for any developer! read more...

1 comment |category: |Views: 48

tags: another

How to Implement 2-Step Verification in ASP.NET MVC(www.nayyeri.net)

submitted by keyvankeyvan(4086) 9 months, 16 days ago

In this post Keyvan walks through an example to show how to implement 2-step verification (with phone) in ASP.NET MVC applications. read more...

3 comments |category: |Views: 141

tags: another

What’s new in Subtext 2.5: full-text search, related posts and more(codeclimber.net.nz)

submitted by siphilpsiphilp(919) 1 year, 11 months ago

In Subtext 2.5 we changed the internal search provider from the “like %term%” SQL based one to a more mature and powerful one powered by Lucene.net. I wrote about how Lucene.net is implemented inside Subtext, but it didn’t show the benefits for the users. In this post I’m explaining the visible features of the full-text search. read more...

add a comment |category: |Views: 115

tags: another

12 ASP.NET MVC Best Practices(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 2 years, 6 months ago

In this post Simone Chiaretta outlines a list of 12 best practices to use with ASP.NET MVC. read more...

add a comment |category: |Views: 848

tags: another

My ASP.NET MVC stack and why I chosen it(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 2 years, 7 months ago

In this post Simone Chiaretta talks about the tools, components, and technologies he uses along with ASP.NET MVC to build web applications. read more...

add a comment |category: |Views: 584

tags: another

Integrating Exception Handling Into the Development Cycle(leedumond.com)

submitted by leedumondleedumond(2144) 2 years, 7 months ago

The time to start thinking about exception handling is right after you click File > New Project. Exception handling shouldn't be something you "tack-on" to an application after the fact. Here, I discuss a practical approach to incorporating exception handling into the normal code-writing process. read more...

add a comment |category: |Views: 373

tags: another

How to use Ninject 2 with ASP.NET MVC(codeclimber.net.nz)

submitted by sharplifesharplife(4570) 2 years, 9 months ago

In this blog post, Simone has explained how to utilize new Ninject 2.0 in ASP.NET MVC. read more...

add a comment |category: |Views: 401

tags: another

Beginning ASP.NET MVC 1.0 – Finally Available(nayyeri.net)

submitted by simonechsimonech(10.1k) 2 years, 9 months ago

Kevan announces the availability of the book Beginning ASP.NET MVC by Wrox, and explains in details the contents of the book and the level it is targeting read more...

add a comment |category: |Views: 281

tags: another

Ajax survey 2009: jQuery and MS Ajax are almost tied(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 2 years, 11 months ago

Simone posts the results of the survey about ajax adoption among .NET developers. jQuery gained 58% since 2007 and now is almost tied to the MS Ajax stack (Control toolkit and ajax core) read more...

6 comments |category: |Views: 326

tags: another

Open Source or Die – The *Real* Future of Graffiti?(leedumond.com)

submitted by leedumondleedumond(2144) 3 years ago

Telligent’s Graffiti hasn’t quite flatlined yet, but the signs aren’t looking too good. Could OSS be the way to breathe life back into this once-promising CMS platform? read more...

1 comment |category: |Views: 408

tags: another

Custom Controller Factory in ASP.NET MVC(nayyeri.net)

submitted by MarwanMarwan(850) 3 years ago

Introducing Controller Factory in ASP.NET MVC read more...

add a comment |category: |Views: 76

tags: another

WPF NotifyIcon Released(hardcodet.net)

submitted by interferencesinterferences(385) 3 years ago

This is an implementation of a NotifyIcon (system tray icon) for the WPF platform. It does not just rely on the corresponding WinForms component, but is a purely independent control which leverages several features of the WPF framework in order to display rich tooltips, popups, context menus, and balloon messages. read more...

add a comment |category: |Views: 857

tags: another

Free Chapter of Beginning ASP.NET MVC 1.0 Published(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 3 years ago

Simone Chiaretta announces the availability of chapter 9 of Wrox Beginning ASP.NET MVC 1.0 book about Testing ASP.NET MVC Applications and shares some good news about the release date of the book. read more...

add a comment |category: |Views: 171

tags: another

ASP.NET MVC brings FUN back inside web development, on .NET(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 3 years ago

Simone writes about his impressions on ASP.NET MVC and why it has reactivated the motivation of developers on the .NET community for web development. read more...

add a comment |category: |Views: 368

tags: another

IRouteHandler in ASP.NET MVC(nayyeri.net)

submitted by simonechsimonech(10.1k) 3 years ago

Keyvan explains how to write a RouteHandler that checks for banned IPs and blocks any further processing read more...

add a comment |category: |Views: 72

tags: another

What about DataLoadOptions for Entity Framework ObjectContext?(mosesofegypt.net)

submitted by mosessaurmosessaur(5424) 3 years, 1 month ago

I think the proper way to start this post is to ask How do you do eager loading with Entity Framework? And the basic native simple answer is by using ObjectQuery<T>.Include(string) method. No matter what you tried to do, you’ll end up using this way. So there was ideas about how enhance the eager loading in our Entity Framework base applications. You can read about some of these ideas.... read more...

add a comment |category: |Views: 112

tags: another