antny

Stories kicked by antny

Performance testing of Dictionary, List and HashSet(softscenario.blogspot.com)

submitted by snaitssnaits(197) 2 years, 11 months ago

A quick little test of how the .net 3.5 Dictionary, List and HashSet compare adding and finding items. read more...

add a comment |category: |Views: 1949

tags: another

SQL Server 2005/2008 Diagnostics Queries and Configuration Checklist(sqlservercurry.com)

submitted by mopenmopen(3596) 3 years ago

Very useful queries by SQL Server MVP, Glenn Berry ..A must have read more...

2 comments |category: |Views: 324

tags: another

CSS Message Boxes for different message types (jankoatwarpspeed.com)

submitted by jankojanko(2555) 4 years ago

Can you believe this: Few days ago I went to my bank to check my credit score with the Credit Bureau. The bank official typed in my personal data and sent a request. Web application responded by displaying a yellow message box with an exclamation icon saying that data processing is still in progress. He checked several more times, but he didn't notice that at one moment the message changed to "Account available". But the message box hasn't changed. He continued to check a few more times and eventually he realized that the request was successful. I don't know what was in the minds of developers and designers who created this application, but it certainly wasn't the user. This poor bank official was really frustrated. I can't imagine what the rest of the application looks like. read more...

add a comment |category: |Views: 576

tags: another

Why Should You Wrap Your ASP.NET Session Object (dev102.com)

submitted by razamitrazamit(4566) 4 years ago

ASP.NET provides mechanisms for storing information for a single user session or across multiple sessions. This is done using the HttpSessionState and HttpApplicationState classes. The Page class has Application and Session attributes to provide access to current objects. The simple way to access them is as following: read more...

3 comments |category: |Views: 73

tags: another

Creating user friendly strings for enum values(ytechie.com)

submitted by SuperJasonSuperJason(2740) 4 years ago

I’ll show you how to create a custom attribute for enum values to assign extra information to an enum. In this case, we’ll be associating a user friendly display name. read more...

1 comment |category: |Views: 61

tags: another

Things you MUST dispose(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

When the .NET Framework instantiates an object, it allocates memory for that object on the managed heap. The object remains on the heap until it's no longer referenced by any active code, at which point the memory it's using is reclamed by the Garbage Collector (GC). Before the GC deallocates the memory, the framework calls the object's Finalize() method, but developers are responsible for calling the Dispose() method. read more...

add a comment |category: |Views: 22

tags: another

13 Tips to Comment Your Code(devtopics.com)

submitted by bliekbliek(170) 4 years, 2 months ago

Following are 13 tips on how to comment your source code so that it is easier to understand and maintain over time. read more...

2 comments |category: |Views: 21

tags: another

Deep Zoom version of Silverlight 2 Developer Reference Poster(blogs.msdn.com)

submitted by JemmJemm(9604) 4 years, 2 months ago

"I took a reasonable resolution version of the Silverlight 2 Developer Reference Poster and crossed that with the Deep Zoom Composer, added a JS mouse wheel library and in about 5 minutes had a Deep Zoom version of the poster running in Silverlight." Source available, too! read more...

add a comment |category: |Views: 18

tags: another

stylizedweb.com - Most used CSS tricks(stylizedweb.com)

submitted by wisemxwisemx(8074) 4 years, 2 months ago

Earlier before I have written an article about current best CSS hacks which you can see here And now here’s the list of today’s most used CSS tricks – tips. I have added image examples for most of them because of critics on CSS hacks article. If you think I have missed any please let me know. read more...

add a comment |category: |Views: 11

tags: another

Top 10 Best Practices for Production ASP.NET Applications(daptivate.com)

submitted by kbeyerkbeyer(445) 4 years, 3 months ago

A list of some things to pay attention to when dealing with production ASP.NET applications. read more...

1 comment |category: |Views: 175

tags: another

Confessions of a Software Developer(aaronlerch.com)

submitted by aaronlerchaaronlerch(1670) 4 years, 3 months ago

Has anybody else ever felt overwhelmed with the sheer mass of "stuff" involved with software development? read more...

add a comment |category: |Views: 5

tags: another

An easier Table Design View in Sql Server Management Studio(west-wind.com)

submitted by rstrahlrstrahl(7226) 4 years, 4 months ago

One of the things that bugs me no end in Sql Server Management Studio is that the table designer's UI is a pain to use. Entering column properties is an excercise in mousercise. It turns out there's an easier way to do this with custom views in the DataBase Diagram Designer. read more...

3 comments |category: |Views: 53

tags: another

Add or remove the www sub domain(blog.madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 4 years, 4 months ago

An HttpModule that let's you easily add or remove the www sub domain from any ASP.NET web application. read more...

add a comment |category: |Views: 29

tags: another

The Myth of Stored Procedures Preference(bloggingabout.net)

submitted by adel83kadel83k(660) 4 years, 4 months ago

When looking to the Stored Proscedures debate, there is always those three factors you should measure by. read more...

add a comment |category: |Views: 12

tags: another

SQL Server Indexes: The Basics(sqlteam.com)

submitted by grazgraz(255) 4 years, 5 months ago

Indexes directly affect the performance of database applications. This article uses analogies to describe how indexes work. The estimated execution plan feature of the Query Window is utilized to compare the performance of two queries in a batch. read more...

add a comment |category: |Views: 8

tags: another

Solution Folders in Vs.Net(dotnettipoftheday.org)

submitted by joejoejoejoejoejoejoejoe(1140) 4 years, 5 months ago

Big Visual Studio.NET solutions can be organized by grouping related projects into folders read more...

add a comment |category: |Views: 3

tags: another