Reverie

Stories kicked by Reverie

Cleaning Up Your C# Closet, Making Messy C# Code More Readable(keithelder.net)

submitted by keithelderkeithelder(450) 3 years, 5 months ago

Struggling with an existing code base and want to tidy things up? This article gives some great tips on how to do this along with a real world example. The end result is much more readable code that is easier to maintain. read more...

add a comment |category: |Views: 740

tags: another

String Extraction(west-wind.com)

submitted by kevinbabcockkevinbabcock(345) 3 years, 5 months ago

Ah thought I go back to basics today for a post. An operation I rely on a lot when I’m working with text is the ability to extract strings with delimiters from within another string. RegEx can be quite useful for many scenarios of finding matches and extracting text, but personally for the 10 times a year when I need to use RegEx expressions I tend to relearn most of the cryptic syntax each time. What should take me a couple minutes usually turns into a half an hour of experimenting with RegEx Buddy for me... read more...

add a comment |category: |Views: 19

tags: another

The dynamic Keyword Part 1 - Introduction(blogs.microsoft.co.il)

submitted by shayfriedmanshayfriedman(1411) 3 years, 5 months ago

This is the first post of my new series about the dynamic keyword. This part is an introduction to the new dynamic keyword that will become available on C# 4.0. read more...

add a comment |category: |Views: 10

tags: another

SILVER-U - A Neat Way to Remember the ASP.NET Page Life Cycle(leedumond.com)

submitted by daveschinkeldaveschinkel(1720) 3 years, 5 months ago

Mnemonic devices are fun, aren't they? They're especially userful for remembering steps that are performed in a certain order -- like how to start a motorcycle, or how ASP.NET serves web pages. I happen to be a certified Motorcycle Safety Instructor at Illinois State University. In our classes, we use the Motorcycle Safety Foundation curriculum, which contains all kinds of mnemonic devices to help student riders remember various motorcycle related procedures. read more...

add a comment |category: |Views: 27

tags: another

Easly improving .NET Code performance (codebetter.com)

submitted by dhelperdhelper(45) 3 years, 5 months ago

Simple code refactoring that can help your code to run 5 times faster read more...

add a comment |category: |Views: 36

tags: another

Performing Simple Interprocess Communication with Verbs(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 3 years, 5 months ago

In this post I’ll be discussing simple process interactions via ShellExecute API Verbs. Using Verbs will allow you to perform simple tasks on specific file types without having to worry about building a complex communication layer to a specific application. read more...

add a comment |category: |Views: 9

tags: another

Choosing Between WebForms and MVC(blog.gadodia.net)

submitted by whoisvaibhavwhoisvaibhav(1000) 3 years, 5 months ago

Another take on what to consider when making a decision between Asp.Net WebForms or Asp.Net MVC. read more...

add a comment |category: |Views: 682

tags: another

What Constitutes Ethical SEO?(frickinsweet.com)

submitted by dengar007dengar007(3084) 3 years, 5 months ago

As a web developer / someone who has a blog, I understand dealing with spam is one of the necessary evils of having a comments enabled on my site. Too often, SEO companies use unscrupulous tactics in the name of website optimization. What is the best way to prevent link spammers from overrunning your site? read more...

add a comment |category: |Views: 140

tags: another

Is F# faster than C#(nearinfinity.com)

submitted by josephfjosephf(235) 3 years, 5 months ago

I had a bet with a co-worker that C# would out perform F# for a simple counting exercise. This turned out to be quite a surprise for many reasons. In this blog post I will try to explain why. read more...

add a comment |category: |Views: 776

tags: another

DNK Community Guidelines - Suggestions welcome! (groups.google.com)

submitted by gavinjoycegavinjoyce(25.7k) 3 years, 5 months ago

Lets come up with some much needed community guidelines for DNK. Please post your suggestions and comments below, I'll update the community guidelines page on the Google group once we have reached a consensus. read more...

27 comments |category: |Views: 146

tags: another

More Image Processing with C# Lambdas(atalasoft.com)

submitted by eazydeazyd(970) 3 years, 5 months ago

This is a continuation of the earlier post on image processing with C# lambda expressions. The previous blog describes a simple way to define image processing in terms of lambda expressions, and while efficient, it’s missing the ability to do commands that examine pixels outside of the source pixel in order to compute the destination pixel. The way around this is to provide more information to the lambda expression. read more...

add a comment |category: |Views: 46

tags: another

Oxite: OpenSource CMS from Microsoft Built on ASP.NET MVC(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 3 years, 5 months ago

Simone Chiaretta writes about the recent announcement by Microsoft Evangelist, Jeff Sandquist, about Oxite which is an open source CMS built by Microsoft as a showcase and sample for ASP.NET MVC. read more...

add a comment |category: |Views: 744

tags: another

Microsoft Releases Free CMS-Blog System(codersbarn.com)

submitted by BognitBognit(2125) 3 years, 5 months ago

Read about the new, free CMS/Blog system released by Microsoft called "Oxite". It is built using the new ASP.NET MVC framework and is highly extensible, touting such features as Microformats and source control integration. read more...

add a comment |category: |Views: 401

tags: another

How To Guarantee That Your Software Will Suck(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 5 months ago

Do you bad software and unhappy developers? Well, it isn't that hard... read more...

add a comment |category: |Views: 651

tags: another

Implementing a red black tree in C#(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 5 months ago

This article talks about how to implement a red-black tree in C#. The implementation is generic, and it also implements IEnumerable<T>. read more...

add a comment |category: |Views: 1001

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