sergeyfast

Stories kicked by sergeyfast

Introduction to Model View Control (MVC) Pattern using C#(c-sharpcorner.com)

submitted by maheshchamaheshcha(1620) 2 years, 7 months ago

The benefits of using the Model-View-Control (MVC) pattern in our development projects is that we can completely decouple our business and presentation application layers. Furthermore, we will have a completely independent object to control the presentation layer. read more...

2 comments |category: |Views: 461

tags: another

ASP.NET MVC Cheat Sheets(elijahmanor.com)

submitted by elijahmanorelijahmanor(1448) 2 years, 7 months ago

Most of you have seen many jQuery Cheat Sheets out in the wild, but as of recently there are now also many ASP.NET MVC Cheat Sheets to chose from. If you know of any other ASP.NET MVC Cheat Sheets, please let me know and I’ll add it to the above list. I hope these prove to be helpful for you. You might consider printing them out and posting them on your cubical walls ;) read more...

add a comment |category: |Views: 585

tags: another

How to improve the performances of ASP.NET MVC web applications(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 1 month ago

Today I stumbled upon a nice presentation that Rudi Benkovic gave last week at the Slovenian DotNet User Group, about ASP.NET MVC Performances. It is an in depth analysis of a Digg-like site and how it went from serving (on a test machine) 6 req/sec to 390 req/sec. The analysis prove the usual rule of performance optimization: no matter what you do to optimize your code, the biggest performance hit is data retrieval, and the first thing you have to optimize is always this. But apart from this obvious outcome, I just want to take out from this presentation the 3 point that are really specific to ASP.NET MVC read more...

add a comment |category: |Views: 318

tags: another

Optimizing ASP.NET MVC performance (blog.whiletrue.com)

submitted by bh213bh213(255) 3 years, 1 month ago

Slides on how to optimize ASP.NET MVC application to get reasonable performance out of it. read more...

add a comment |category: |Views: 495

tags: another

Cheap way of speeding up Visual Studio I/O(nesteruk.org)

submitted by dmitridmitri(408) 3 years, 3 months ago

Visual Studio loves file I/O. It really, really does, and it cares very little about caching and the like. What this means is that, when you open a solution file, it always reads it from disk. Which means that the speed of operation when generating lots of files (e.g., via T4 transformations) is typically atrocious. The fact that file I/O in VS does not appear to be multithreaded is another hindrance. In short, it’s a mess. read more...

add a comment |category: |Views: 991

tags: another

WPF Apps With The Model-View-ViewModel Design Pattern(msdn.microsoft.com)

submitted by mrprkmrprk(370) 3 years, 3 months ago

A nice article on the MVVM pattern for WPF. read more...

add a comment |category: |Views: 460

tags: another

Visual Studio 2010 == Visual Studio 2008 + ReSharper(codebetter.com)

submitted by LordLord(3737) 3 years, 4 months ago

o you want the next gen of next-gen applications? Get the Visual Studio 2010 CTP! Which is – according to Microsoft itself – really just Visual Studio 2008 with ReSharper installed. read more...

7 comments |category: |Views: 931

tags: another

Skip the Visual Studio Splash Screen(visualstudiohacks.com)

submitted by javeryjavery(5523) 3 years, 4 months ago

Anything to speed up Visual Studio. read more...

add a comment |category: |Views: 645

tags: another

Self Installing Windows Service(blogs.microsoft.co.il)

submitted by kim_majorkim_major(375) 3 years, 4 months ago

Reusable class that can be added to a Windows Service project to enable Install, Uninstall, Start and Stop functionality. read more...

2 comments |category: |Views: 642

tags: another

When Should I Write Tests?(stevenharman.net)

submitted by usshermussherm(5285) 3 years, 5 months ago

The definitive answer to a question that comes up all the time... read more...

2 comments |category: |Views: 494

tags: another

Improve your jQuery - 25 excellent tips(tvidesign.co.uk)

submitted by beckelmwbeckelmw(2755) 3 years, 5 months ago

jQuery is awesome. I've been using it for about a year now and although I was impressed to begin with I'm liking it more and more the longer I use it and the more I find out about it's inner workings. I'd call myself an "intermediate" jQuery user and I thought some others out there could benefit from all the little tips, tricks and techniques I've learned over the past year. The article also ended up being a lot longer than I thought it was going to be so I'll start with a table of contents so you can skip to the bits you're interested in. read more...

2 comments |category: |Views: 776

tags: another

Yet another Singleton Yada-Yada(sharpregion.com)

submitted by AdrianAisembergAdrianAisemberg(2004) 3 years, 5 months ago

Using a static-constructor in a singleton, affects it's laziness. Here's a generic singleton that is thread-safe using a static-constructor, and still lazy. read more...

add a comment |category: |Views: 465

tags: another

Pimp My Debugger - DebuggerDisplay Attribute(monstersgotmy.net)

submitted by bradygasterbradygaster(4897) 3 years, 5 months ago

The other day I was reading some friends code, and I saw that he used a DebuggerDisplay attribute. It allows you to create a custom view of your objects in the Visual studio debugger. This attribute is very straight forward, but very powerful in the amount of time it can save you when debugging your application. I'll show you a cookie cutter example, but you can use your imagination as to how to use this particular attribute. read more...

add a comment |category: |Views: 415

tags: another

Creating Temporary Passwords - Bring in da' Func<T>(devlicio.us)

submitted by johnsheehanjohnsheehan(4785) 3 years, 5 months ago

Using Func<T> to generate random passwords read more...

add a comment |category: |Views: 460

tags: another

Microsoft kills Linq to SQL(ayende.com)

submitted by JonSagaraJonSagara(310) 3 years, 6 months ago

Ayende (aka Oren) expresses disbelief at Microsoft's decision to effectively kill off LINQ to SQL. read more...

5 comments |category: |Views: 1388

tags: another

Getting rid of strings (3): take your app settings to the next level(blog.andreloker.de)

submitted by alokeraloker(1810) 3 years, 8 months ago

In the first article of this series I talked about the problems with strings in code. This article will show you how you can use lambda expressions and expression trees as another tool to avoid strings read more...

2 comments |category: |Views: 769

tags: another