eazyd

Stories submitted by eazyd

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

Debugging Fu, Part 1(atalasoft.com)

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

A How-To Guide for Debugging, Part 1, Reproducibility read more...

add a comment |category: |Views: 5

tags: another

Stupid NUnit Tricks #3 Foiled!(atalasoft.com)

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

Revelation of a CLR bug. read more...

add a comment |category: |Views: 341

tags: another

Scan to Scribd (or anything) Tutorial(atalasoft.com)

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

Lou has written an article about how to send scanned images to some place on the web. "All of the non-uploading code will work in any Scan to X project, where X can be Amazon S3, Azure SQL Data Services, Google Docs, SharePoint, or any CMIS compliant ECM (you just need to write the uploading part). " read more...

add a comment |category: |Views: 16

tags: another

Late Binding in C# using Dynamic Compilation(atalasoft.com)

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

Steve goes through his approach to using reflection, making the code easier to read, making it easier to maintain, discusses the "middle-class multiple inheritance", and provides a zipped project of the AdapterCompiler. read more...

add a comment |category: |Views: 404

tags: another

F# at Code Camp 10 In Waltham, MA(atalasoft.com)

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

Richard Minerich presented functional programming and concurrency in F# at Code Camp in Massachusetts read more...

add a comment |category: |Views: 61

tags: another

Embeddable C# Compiler(atalasoft.com)

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

Manuel de Icaza created an embeddable C# compiler for Mono. read more...

3 comments |category: |Views: 305

tags: another

VSX Conference(atalasoft.com)

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

Lou Franco's recollection of events at the VSX Conference last week. (Visual Studio eXtensibility) read more...

add a comment |category: |Views: 68

tags: another

Tidy Things Up(atalasoft.com)

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

Ever wanted to have one assembly, but be able to manage your code in separate assemblies? read more...

1 comment |category: |Views: 329

tags: another

Some Managed/Unmanaged Exception Tricks(atalasoft.com)

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

I just spent 5 days tracking down a Heisenbug. Historically, I've tracked down a lot of these but not because I create a lot of them, because I'm good at finding them. In this particular case, I had a set of unit tests that were failing on our build server but did not fail consistently on my machine. This is not a good sign to start with. read more...

add a comment |category: |Views: 370

tags: another