FlySwat

Stories kicked by FlySwat

Tagging in Normalized Form(gfilter.net)

submitted by FlySwatFlySwat(485) 3 years, 3 months ago

How I designed and implemented post tagging on a custom blog engine. read more...

add a comment |category: |Views: 5

tags: another

Using Custom Attributes for Fun and Profit(gfilter.net)

submitted by FlySwatFlySwat(485) 3 years, 3 months ago

How custom attributes can improve your QA Process and provide better visibility to the overall health of project code. read more...

add a comment |category: |Views: 12

tags: another

Infinite Lists With C# Yield(codethinked.com)

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

What we are about to talk about here may seem like a purely academic exercise, but hopefully I will convince you that this isn’t exactly the case. There are several situations in real-world applications where infinite lists can appears if only we were to think about them in the right way. read more...

1 comment |category: |Views: 451

tags: another

LINQ-To-Objects and Referential Equality(gfilter.net)

submitted by FlySwatFlySwat(485) 3 years, 3 months ago

I explore why Distinct() does not work with a custom comparer object, and then demonstrate a custom version that uses lambda's to define comparison rules. read more...

1 comment |category: |Views: 22

tags: another

Benchmarking the CLR vrs the JVM(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 3 years, 10 months ago

I've found that there are lots of flame wars regarding JVM/CLR performance, but very little solid data, so I thought I'd try running a benchmark of my own. read more...

add a comment |category: |Views: 24

tags: another

Announcing GFilter Open Beta(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 1 month ago

GFilter has been a small project that I began this week, and I am now opening up for beta. Please drop any bug reports as a comment here. The concept behind GFilter is simple. GFilter allows you to create a personal blacklist of sites that you do not want to show up when you search the internet. This means no more Experts Exchange when you are trying to find a handy regular expression etc... read more...

add a comment |category: |Views: 1

tags: another

Order of keys in Dictionary(blog.somecreativity.com)

submitted by dnksiddnksid(355) 4 years, 1 month ago

The article looks at the order of keys returned by a call to Dictionary.Keys and describes why we cannot make design decisions relying on that. read more...

add a comment |category: |Views: 4

tags: another

Domain Objects and Data Readers(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 2 months ago

How to defensively code your object population methods so they can handle varying columns in a passed Data Reader. read more...

add a comment |category: |Views: 3

tags: another

How to find local Data Sources on your server(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 5 months ago

Part of the difficulty of installing custom database driven sites onto remote servers is the unpredictability of the server configuration. I am trying to ease that pain by automating as much as possible the initial configuration. read more...

add a comment |category: |Views: 2

tags: another

MVC: ViewData vs TempData(squaredroot.com)

submitted by TroyMGTroyMG(2670) 4 years, 5 months ago

How do I pass data to a view when using RedirectToAction? TempData. Find out more about how TempData works and how it is different than ViewData. read more...

add a comment |category: |Views: 666

tags: another

ASP.NET MVC Dynamic Route builder Released(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 5 months ago

This is a simple HTTPModule that allows you to place your routing rules in web.config were they belong. read more...

add a comment |category: |Views: 343

tags: another

How To: Validation Using ASP.NET MVC(blog.danielroot.com)

submitted by boatboyboatboy(195) 4 years, 5 months ago

Validation using ASP.NET MVC. read more...

2 comments |category: |Views: 665

tags: another

ASP.NET MVC makes it impossible to dynamically build RouteTables?(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 5 months ago

If you cannot construct an anonymous class during runtime, then there is no way to dynamically build route tables with the MVC framework as it is currently designed. read more...

add a comment |category: |Views: 2

tags: another

Fixing the Visual Studio 2008 "InitializingToolbox" bug.(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 5 months ago

Opening a ASPX file would stall my system, spike my CPU/Ram usage and sit there frozen, with the message "Initializing Toolbox" in the status bar. read more...

add a comment |category: |Views: 128

tags: another

Setting up a SQLEXPRESS Database for use with ASP.NET(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 5 months ago

How to get solve authentication and permissions issues when using SQLExpress and ASP.NET read more...

add a comment |category: |Views: 3

tags: another

The hidden ORM Tax and why profiling is a good thing.(codeeleven.blogspot.com)

submitted by FlySwatFlySwat(485) 4 years, 5 months ago

I use a profiler to examine how efficient an ActiveRecord implementation really is, and in turn, find out how inefficient my code really is. read more...

add a comment |category: |Views: 2

tags: another