flyingkick

Stories submitted by flyingkick

Clearer MVC(msprogrammer.serviciipeweb.ro)

submitted by flyingkickflyingkick(331) 3 months, 20 days ago

In every application there are some variables that are set by the ASP.NET application( ASP.NET_SessionId cookie ) and some that are set by the programmer( cached data in Application/Session/Cache/Cookies and so on).I wanted every time to have a page where I can “clear” / delete those – and not found. So it’s the Clearer project. read more...

add a comment |category: |Views: 9

tags: another

Performance - Using .Net and COM(itaibh.blogspot.com)

submitted by flyingkickflyingkick(331) 3 months, 20 days ago

Yesterday I was given a task to help improve the performance of a feature. I was told that the feature was written in a very straight forward way, nearly no optimizations taken. The problem was that it took several minutes (yes, minutes) to run, rather than a few seconds or better than that. read more...

1 comment |category: |Views: 3

tags: another

Why is RAID So Important for Databases?(www.sqlservercurry.com)

submitted by flyingkickflyingkick(331) 3 months, 20 days ago

A good server design has no, or very few, single points of failure. One of the most common server component that fails, are disks. So data redundancy becomes essential to recoverability. Redundant Array of Independent/Inexpensive Disks (RAID) is a disk system that provides better fault-tolerance by making use of redundancy of disk(s). read more...

1 comment |category: |Views: 175

tags: another

Signed Integers Considered Stupid(blackhole12.blogspot.com)

submitted by flyingkickflyingkick(331) 3 months, 20 days ago

Signed integers have always bugged me. I've seen quite a bit of signed integer overuse in C#, but it is most egregious when dealing with C/C++ libraries that, for some reason, insist on using for(int i = 0; i < 5; ++i). Why would you ever write that? i cannot possibly be negative and for that matter shouldn't be negative, ever. Use for(unsigned int i = 0; i < 5; ++i), for crying out loud. read more...

add a comment |category: |Views: 7

tags: another

Prepare web.config for HTML5 and CSS3(madskristensen.net)

submitted by flyingkickflyingkick(331) 1 year, 5 months ago

HTML5 and CSS3 introduces some new file types that enables us to create even better websites. We are now able to embed video, audio and custom fonts natively to any web page. Some of these file types are relatively new and not supported by the IIS web server by default. It’s file types like .m4v, .webm and .woff. read more...

add a comment |category: |Views: 31

tags: another

Generic Reversing Comparers(geekswithblogs.net)

submitted by flyingkickflyingkick(331) 1 year, 5 months ago

I was looking at some code the other day, and came across a instance where a developer was trying to handle a column click to sort or reverse sort the data. So, they developed a Comparer which was pretty huge that could account for any column selected and then compare based on that column. read more...

add a comment |category: |Views: 3

tags: another

Developing a Silverlight UI for Windows Phone 7(www.drdobbs.com)

submitted by flyingkickflyingkick(331) 1 year, 7 months ago

Silverlight for Windows Phone, the application development platform for Windows Phone 7 Series, supports core Silverlight features while providing access to the phone's unique capabilities through managed .NET code. read more...

add a comment |category: |Views: 4

tags: another

Jounce: MVVM with MEF Guidance for Silverlight(jounce.codeplex.com)

submitted by flyingkickflyingkick(331) 1 year, 7 months ago

Jounce is a reference framework for Silverlight intended to provide guidance for building modular line of business applications that follow the MVVM pattern and utilize the Managed Extensibility Framework (MEF). read more...

add a comment |category: |Views: 30

tags: another

var vs dynamic keyword in C# 4.0(www.devcurry.com)

submitted by flyingkickflyingkick(331) 1 year, 8 months ago

Cool post showing how dynamic is different from var keyword read more...

add a comment |category: |Views: 353

tags: another

When to use STUFF instead of REPLACE – SQL Server(www.sqlservercurry.com)

submitted by flyingkickflyingkick(331) 1 year, 9 months ago

Excellent example that shows when to use STUFF instead of REPLACE in SQL Server read more...

add a comment |category: |Views: 160

tags: another

ASP.NET MVC 3 Preview 1 - Razor View Engine(www.dotnetcurry.com)

submitted by flyingkickflyingkick(331) 1 year, 9 months ago

The following article demonstrates how to use the new Razor view engine in ASP.NET MVC 3 Preview 1 release. read more...

1 comment |category: |Views: 334

tags: another

Different Ways of using the C# Null Coalescing Operator(www.devcurry.com)

submitted by flyingkickflyingkick(331) 1 year, 9 months ago

Here are some different ways of using the Null-Coalescing operator in your code. read more...

add a comment |category: |Views: 477

tags: another

Silverlight 4 - Trim Text in a TextBlock and display Ellipses instead (www.devcurry.com)

submitted by flyingkickflyingkick(331) 2 years, 1 month ago

What happens when you have text that does not fit its container? Let’s see. <Grid x:Name="LayoutRoot" Background="White" Margin="40"> <TextBlock Name="tb" Height="20" HorizontalAlignment="Left" Text="This sentence is too long to fit in here" Width="100"> </Grid> read more...

add a comment |category: |Views: 90

tags: another

Silverlight Web Services Team(blogs.msdn.com)

submitted by flyingkickflyingkick(331) 2 years, 1 month ago

When shipping a product, there are always a handful of painful issues that we unfortunately cannot fix due to schedule pressure. One thing we can do is blog about these issues early and provide workarounds, so customers don’t have to spend countless hours debugging. read more...

add a comment |category: |Views: 3

tags: another

What's New in ASP.NET 4.0 – Better ViewState Control (www.dotnetcurry.com)

submitted by flyingkickflyingkick(331) 2 years, 2 months ago

In ASP.NET 2.0/3.5, you could disable ViewState for individual controls. However what you could not do is disable ViewState at a Page level and then enable it individually for controls on that page that require it. ASP.NET 4.0 changes that and gives more control to developers. read more...

add a comment |category: |Views: 5

tags: another

Test Lint: A Unit Testing Helper for VS 2010(dotnet.dzone.com)

submitted by flyingkickflyingkick(331) 2 years, 2 months ago

In an increasingly test-driven software industry, Typemock has successfully filled a growing niche market for unit testing productivity tools. Typemock offers enterprise tool suites along with a free set of tools read more...

add a comment |category: |Views: 10

tags: another