edind

Stories kicked by edind

WCF and AOP with Castle.DynamicProxy(www.reducingcomplexity.com)

submitted by edindedind(95) 2 years, 3 months ago

Using AOP and DynamicProxy with WCF read more...

add a comment |category: |Views: 102

tags: another

How to use Custom RoleProvider in WCF?(www.reducingcomplexity.com)

submitted by edindedind(95) 2 years, 3 months ago

Nice and concise example of using custom Role Providers in WCF. read more...

add a comment |category: |Views: 113

tags: another

Exploring the MVP Pattern(www.reducingcomplexity.com)

submitted by edindedind(95) 2 years, 3 months ago

Model View Presenter pattern applied by using example application. read more...

add a comment |category: |Views: 196

tags: another

Thoughts on OO design(www.reducingcomplexity.com)

submitted by edindedind(95) 2 years, 3 months ago

OO design is an creative activity. To be successful at it, you’ll need a mixture of both talent and learned skills. There is no such thing as correct design. There is only good, bad and somewhere-in-between design.. read more...

add a comment |category: |Views: 7

tags: another

Is anybody interested in open-source tool like Silverlight Spy?(www.reducingcomplexity.com)

submitted by edindedind(95) 2 years, 3 months ago

A few months ago I started to work on my first Silverlight project. It was a business-line application, pretty much standard of that type. It was my first project in Silverlight. Anyway, soon I found this great tool called Silverlight Spy. It’s a tool for runtime inspection of Silverlight applications, something like Firebug but only for Silverlight. I was impressed with the software since it was very powerful. The tool costs around 99 EUR, which is not much for the value you get. However, as a passionate developer... read more...

add a comment |category: |Views: 20

tags: another

ASP.NET : Using ClientID in external JavaScript files(reducingcomplexity.com)

submitted by edindedind(95) 2 years, 9 months ago

In the past year I have been writing a lots of JavaScript code. Mostly because I have been working on same ASP.NET WebForms application for more then 10 months by now. We use JavaScript for things like validation, async HTTP requests etc. To keep our code clean,we try to keep all of our JavaScript in external files. The problem with external JavaScript files is that you cannot use server tags in them, so you cannot obtain ClientID of ASP.NET controls by using <%= control.ClientID %> syntax... read more...

1 comment |category: |Views: 96

tags: another

Pseudocode Programming Process(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 9 months ago

Today I had to implement a feature on project I'm working on. The feature was not a trivial one. It was rather complex. I had a general idea how it could be implemented. The implementation I was having in mind involved several complex data structures and some recursion function calls as well... read more...

add a comment |category: |Views: 9

tags: another

Bugs and bytes(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 9 months ago

Yesterday, at work we had a bug in application we’re developing. Nothing critical but rather inconvenient. Our application has a very common functionality of file download. Some users can upload files to the system and some other users can download those files. Pretty straightforward functionality, right... read more...

add a comment |category: |Views: 3

tags: another

Strings and performance(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 9 months ago

I really cannot stress enough importance of using StringBuilder class for string concatenation. The reason is obvious: PERFORMANCE! I know that most programmers are aware of the possible string concatenations performance problems but somehow this issue is still being overlooked and many make the mistake... read more...

add a comment |category: |Views: 11

tags: another

Tip on employing the domain model pattern(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 9 months ago

Today, I read Udi's latest article about domain model pattern published in MDSN magazine. I want to comment on following part of the article... read more...

add a comment |category: |Views: 16

tags: another

DDD and Data-centric applications(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 9 months ago

Post on DDD and Data-centric applications... read more...

add a comment |category: |Views: 16

tags: another

Guilty as charged (Lessons learned)(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 10 months ago

This week I had to do some rather major changes to code that has not been touched in a while. Though the application had a number of design smell, the implementation of changes I had to make was not that hard... read more...

add a comment |category: |Views: 6

tags: another

Simple Fluent ADO.NET wrapper(reducingcomplexity.blogspot.com)

submitted by edindedind(95) 2 years, 10 months ago

Simple wrapper around ADO.NET that it's usage easier. read more...

add a comment |category: |Views: 152

tags: another