|
|
abdullin
abdullin
 |
|
Stories submitted by abdullin
|
|
submitted by
abdullin
1 month, 15 days ago
rabdullin.com — Let me introduce you to Open Source .NET Validation and Business Rules (Micro) Application Block. It is easy to get started with and allows to define reusable business and validation rules with a little of the coding overhead. Additionally it supports rule composition, validation of complex domain models, ability to modify behavior and much more. read more...
add a comment
|
category: C# | Views: 4
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
1 month, 15 days ago
rabdullin.com — People were asking about using Autofac .NET IoC Container and Lokad Shared Libraries under the Silverlight. Well, the answer is "yes, you can do that!" See below for the latest downloads and instructions how to compile and test under Silverlight 2.0 read more...
add a comment
|
category: C# | Views: 1
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
1 month, 22 days ago
rabdullin.com — One of the little gems found in the Windows Azure SDK Sources is the RetryPolicy development pattern. It allows to define complex policies that allow you to retry on certain exceptions, retry with different limits and wait intervals. Basically, that's the things you need to build a reliable cloud computing solution. Just see the code snippet below: read more...
add a comment
|
category: C# | Views: 3
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
1 month, 24 days ago
rabdullin.com — That's the email validation RegEx script I'm using. It has really high ratio for detecting bad emails and a rather good performance.
string regex = @"^[a-z0-9](([_\.\-\']?[a-z0-9]+)*)@(([a-z0-9]{1,64})(([\.\-][a-z0-9]{1,64})*)\.([a-z]{2,})|(\d{1,3}(\.\d{1,3}){3}))$";
More details in the article. read more...
add a comment
|
category: C# | Views: 7
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
2 months, 17 days ago
rabdullin.com — You can improve you C# .NET code by integrating hints for the ReSharper. This will give you some context actions and highlights specific for the functionality that you are writing. Precious for the API and library developers that want to be friendly for their users. read more...
add a comment
|
category: C# | Views: 14
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
2 months, 18 days ago
rabdullin.com — We all do unit test coverage to monitor code areas that should be covered with the tests. However, sometimes we need more fine control, than just "Everything should be covered with tests". This could be achieved with NoCodeCoverageAttribute and unit test ensuring that it does not get applied to complex methods.
Link to the open source project that has sample implementation is provided read more...
add a comment
|
category: Patterns | Views: 5
|
|
tags:
Patterns | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
2 months, 19 days ago
rabdullin.com — This is the story of a .NET developer migrating his communications, project and information management from MS Office + Outlook type of approach back to the basics and closer to the cross-platform and open source world. read more...
add a comment
|
category: Community | Views: 1
|
|
tags:
Community | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
2 months, 28 days ago
rabdullin.com — What’s the common denominator for the Autofac, Castle, Unity and other popular .NET containers?
Some think, that it is the CommonServiceLocator - an interface that will allow library developers to abstract from the specific Container or Service Locator implementation. read more...
add a comment
|
category: C# | Views: 11
|
|
tags:
Autofac, DI, C#, IoC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months ago
rabdullin.com — Microsoft SQL Server sorts uniqueidentifier columns in a way that is different from the Guid ordering in .NET.
Here’s a small C# code snippet from Lokad.Shared that implements Sql Server sorting of Guids in .NET. read more...
add a comment
|
category: C# | Views: 14
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 9 days ago
rabdullin.com — Using tuples (just like tuples in F#) can improve your C# code and reduce number of classes and code-lines you write for some common mundane tasks.
Code snippets are attached read more...
add a comment
|
category: C# | Views: 44
|
|
tags:
Patterns, practices, .Net, C#, F# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 15 days ago
rabdullin.com — Linq to collections generally performs worse, than the hard-coded approach. In the high-stress scenarios (i.e.: in heavy math calculations) improper Linq usage could become a problem. Let’s write a couple of micro-benchmarks and compare the performance of hand-written loops with the Linq. read more...
add a comment
|
category: Linq | Views: 15
|
|
tags:
Performance, .Net, LINQ, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 16 days ago
rabdullin.com — Autofac container creates an impression of being more flexible and lean than the Castle, StructureMap, and the ObjectBuilder. Additionally, it inherently provides great performance, scope and automatic disposal handling. read more...
add a comment
|
category: C# | Views: 30
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 16 days ago
rabdullin.com — You want to make nice money with little development effort, do not you? Here are the options. You can concentrate on some specific solution like accounting software. Alternatively you can start leveraging some "Build your enterprise app in 30 minutes" toolkit to mass-product and sell such software to your customers. This has proven to bring money. But it also has some cost... read more...
add a comment
|
category: Community | Views: 16
|
|
tags:
Community | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 16 days ago
rabdullin.com — You can drop a lot of repetitive code in C# event declaration and raising (including some EventArgs declarations, defining custom delegates, checking for nulls) if you follow these tips. read more...
add a comment
|
category: C# | Views: 28
|
|
tags:
.Net, Patterns, practices, C#, Event | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 17 days ago
rabdullin.com — This might be interesting for people that use popular IoC container for .NET - Autofac. Now it is possible to configure this container with the custom DSL syntax that is more flexible and efficient than plain XML configuration. read more...
add a comment
|
category: C# | Views: 16
|
|
tags:
Container, DSL, DI, BOO, IoC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
abdullin
3 months, 21 days ago
rabdullin.com — This article is about easily and efficiently adding reliability to some method calls that may occasionally fail (i.e.: db requests that hit deadlocks often or ws requests to overloaded web server). Sample sources are available, all feedback is welcome. read more...
add a comment
|
category: C# | Views: 3
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads by The Lounge
|