ccyvas

Stories kicked by friends of ccyvas

Large or asynchronous file uploads in ASP.NET MVC(dimebrain.com)

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

The challenge of uploading large files in ASP.NET through HTTP is not a new challenge. In addition to handling large files, users often request an experience that shows the progress of an upload as it occurs. When you have either or both of these requirements, or if you simply need direct control of a stream of file data uploaded from a browser, you invariably hit the wall. I set about solving the problem in an ASP.NET MVC-specific way. read more...

add a comment |category: |Views: 866

tags: another

How Fanboys See .NET ORMs(www.kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 4 months ago

A play off of the recent "How Fanboys See Operating Systems" post. read more...

4 comments |category: |Views: 717

tags: another

New Year's Resolutions for Software Developers(jeffblankenburg.com)

submitted by jblankenburgjblankenburg(1264) 2 years, 4 months ago

A great list of ways to challenge yourself in 2010. I especially like "I will be an agent of change in my organization." read more...

4 comments |category: |Views: 543

tags: another

Differences in Vulnerability between Oracle and SQL Server(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years, 4 months ago

In the IT world, but not among experienced DBAs, there has been a long-standing myth that the Oracle database platform is more stable and more secure than SQL Server from Microsoft. This is due to a variety of reasons; but in my opinion, the main ones are listed below: Read the whole article read more...

3 comments |category: |Views: 478

tags: another

Windows 7 Optimizations on Solid State Drives(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 4 months ago

Be default, Windows 7 disables Superfetch, ReadyBoost, as well as boot and application launch prefetching on Solid State Drives (SSD) with good random read, random write and flush performance. These technologies were all designed to improve performance on traditional hard disk drives (HDD), where random read performance could easily be a major bottleneck. Because of the design changes, Windows 7 powered PCs with SSDs run fast. To understand how these design changes improve overall system performance, read this team blog post by the Windows 7 product group. read more...

2 comments |category: |Views: 296

tags: another

.NET Serialization Performance Comparison(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 2 years, 4 months ago

Comparing the speed and output of the different serializers available in .NET with the latest version of Json.NET. read more...

3 comments |category: |Views: 931

tags: another

Mindscape LightSpeed 3.0 – Advocating a Commercial ORM(ericswann.org)

submitted by ericswannericswann(145) 2 years, 5 months ago

Compares the features of Mindscape's LightSpeed 3.0 ORM with those of LINQ to SQL and NHibernate. read more...

5 comments |category: |Views: 427

tags: another

Windows Azure in 20 Minutes!(blogs.msdn.com)

submitted by wzackwzack(1968) 2 years, 5 months ago

I had the opportunity to present The Windows Azure Platform at the 2nd Annual ISV Architects Workshop in New York City on December 10,2009. My thanks to my associate Gunther Lenz who is the local Microsoft ISV Architect Evangelist for the opportunity. read more...

8 comments |category: |Views: 292

tags: another

131 jQuery Snippets for Visual Studio 2010(john-sheehan.com)

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

I've started a new project to create jQuery Code Snippets for Visual Studio 2010 now that it supports HTML and JavaScript snippets. There are 131 so far. read more...

1 comment |category: |Views: 685

tags: another

Just say no to Service Locator!(blog.vuscode.com)

submitted by malovicnmalovicn(1590) 2 years, 7 months ago

This is a blog post focusing on the differences between Service Locator and Dependency Injection based code particularly focusing on benefits DI has in unit testing. read more...

add a comment |category: |Views: 388

tags: another

ReSharper 5.0 Overview(blogs.jetbrains.com)

submitted by nihi_l_istnihi_l_ist(110) 2 years, 7 months ago

As promised, we’re publishing a general ReSharper 5.0 overview, elaborating on its feature set. Please keep in mind that this is a preliminary document. The general picture will stay unchanged, but local amendments cannot be ruled out at this point, and many user interface items will probably change. read more...

2 comments |category: |Views: 753

tags: another

Design Patterns – Which to use When? Take the Quiz!(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 7 months ago

I received several questions on how to pick a Design Pattern, which motivated me to write this post. As it was mentioned in the Design Patterns overview article, there is no rule of thumb in selecting a Design Pattern. Developers should not choose a design pattern and design a solution around it. Instead they need to analyze at a higher level, the problem they are attempting to solve and pick a Design Pattern that is most appropriate. read more...

add a comment |category: |Views: 704

tags: another

IoC, SRP and DI best practices(blog.vuscode.com)

submitted by malovicnmalovicn(1590) 2 years, 7 months ago

A blog post summing some of real world IoC experiences in 5 "laws" read more...

add a comment |category: |Views: 627

tags: another

Fun with Func<T,TResult> Delegates, Events and Async Operations(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 7 months ago

Delegates are powerful for event handling, highly useful in LINQ and a core requirement for async operations. Func<T> makes using delegate based logic a lot easier by providing a generic implemenation that in many cases allows you to skip creation of a separate delegate and instead just point at the Func<T> definition which can be a big timesaver and a nice way to remove delegate defintions from your namespaces. read more...

add a comment |category: |Views: 343

tags: another

Fault Tollerance in Windows Azure(blogs.msdn.com)

submitted by wzackwzack(1968) 2 years, 7 months ago

Ever since we announced Windows Azure there has been speculation about how reliable it will be and how we will insure that your application will continue to operate reliably in the face of changes to your application or the underlying software. Although we did say that we use multiple role instances and update domains to insure that your allocation has no single point of failure it was not until recently that we exposed more of the details of how this will work Now we have published the documentation on how this will work. read more...

add a comment |category: |Views: 123

tags: another

ASP.NET MVC 2 Preview 2 Released(haacked.com)

submitted by TroyMGTroyMG(2670) 2 years, 7 months ago

Today we just released ASP.NET MVC 2 Preview 2 for Visual Studio 2008 SP1 (and ASP.NET 3.5 SP1), which builds on top of the work we did in Preview 1 released two months ago. Some of the cool new features we’ve added to Preview 2 include... read more...

add a comment |category: |Views: 438

tags: another