Just .Net
The other day I listened to a very informative webinar with Scott Bain. He talked about lean programming and designing as you go through the dev cycles.
To view the iPod Video go here.
This
code formatting utility facilitates for formatting code for
1) C#
2) VB
3) html/xml/aspx
4) t-sql
5) msh
Convert Code to Html format for Blog posting
When writing code and documentation for source files, there is lots of manual work. Often you follow a specific code standard and some code you write quite often with small changes. Dan Handevik has developed a set of Macros for easing your daily work.
See the full article.
This is a great list of tools.
These are some
tips for commonly faced problems in .NET
Who said client deployment has to be difficult? The ClickOnce technologies baked into Visual Studio 2005 and .NET Framework 2.0 make distributing your application either online or offline much easier.
More...
Visual Studio Add-Ins Every Developer Should Download Now
Ten Must-Have Tools Every Developer Should Download Now
The
Regulator is an advanced,
free regular expressions testing and learning tool written by
Roy Osherove.
It allows you to build and verify a regular expression against any text input, file or web, and displays matching, splitting or replacement results within an easy to understand, hierarchical tree.
Good
article on .net project architecture
How to programmatically control an NT Service.
I just ran across this great
list of ODBC DSN Connection Strings.
Many web applications provide a search capability, which allows users to search all the content of a web application. This seems at first glance to be a difficult task. How can you search all the files in your web application and at the same provide robust search capabilities most users have come to take for granted? For example search for any combination of words with AND or OR combination, search for phrases or search for partial word matches. Building such a search engine is not a small task. There are many custom solutions out there which create their own search algorithms. They are either cheap but provide only limited search capabilities or they are expensive.
But there is no need to build your own solution or to buy an expensive one. Microsoft provides a solution to this problem - Microsoft Indexing Server. More
Simple and complete cheat sheet that shows a majority of the regular expressions with an example of each. Go there.
Once upon a time in the tech world, obscurity was security - this being most true in the early years of the industry, when there were gaping holes in privacy policies and confidential client information was bandied about from site to site without a care as to who actually could read the information. With the new Cryptography classes in .NET, there's absolutely no excuse for not hiding even the most innocuous user data.
More
An
article to show how Debugging and Tracing has been implemented in .NET and how to customize them according to our needs
This
article demonstrates how to get a screen shot of the entire desktop, or a particular window, using .NET (and a few API functions).
With debugger visualizers, you can define the information you would like to see about a specific .NET or custom class during debug mode. And as the name suggests, you can also choose how you would like to visualize these details.
More
This
article describes step by step creation of an AddIn for VS.NET
A simple, string-oriented
class for symmetric encryption, asymmetric encryption, and hashing.