pitadev_aj

Stories kicked by pitadev_aj

.NET 4.0 and System.Collections.Concurrent.ConcurrentQueue(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 3 months ago

The ConcurrentQueue is a simple (in use, not in construction!) and yet very powerful addition to your parallel programming toolset. If you need thread-safe FIFO operations, then you can throw your locks away and start using the ConcurrentQueue today. read more...

add a comment |category: |Views: 279

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentStack(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 3 months ago

The ConcurrentStack is an excellent new tool in our parallel programming toolset which allows us to get the LIFO behavior we want, all without having to worry about locking. read more...

add a comment |category: |Views: 270

tags: another

Beyond web.config(codebetter.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

I recently needed a configuration mechanism which would detect changes without requiring an application domain restart. I also wanted to move away from XML. This is what I came up with (and hopefully I'll get some helpful feedback). read more...

add a comment |category: |Views: 15

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentBag(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 4 months ago

Another in-depth look at a new namespace in .NET 4.0 and how it can help with multithreading. read more...

1 comment |category: |Views: 386

tags: another

Context and Best Practices(www.lostechies.com)

submitted by usshermussherm(5285) 2 years, 4 months ago

The Right Way versus the Better Way; Default Architectures; Starting Small read more...

add a comment |category: |Views: 505

tags: another

The Static Spider Web Pattern(codethinked.com)

submitted by stefanoricstefanoric(340) 2 years, 5 months ago

The Static Spider Web (anti)Pattern read more...

add a comment |category: |Views: 31

tags: another

The CodeBetter/Devlicio.us Endowed Scholarship(codebetter.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 5 months ago

An outstanding attempt to help women get into Computer Science. read more...

add a comment |category: |Views: 4

tags: another

Persistence model and domain anemia(lostechies.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 5 months ago

Jimmy Bogard offers a new name for the anemic domain model, and attempts to give it some more validity as well. read more...

add a comment |category: |Views: 13

tags: another

37 More Shocking jQuery Plugins(team.sfi.vn)

submitted by ngocmanhhv722004ngocmanhhv722004(165) 2 years, 6 months ago

jQuery Plugins read more...

2 comments |category: |Views: 1110

tags: another

Microsoft creates the CodePlex foundation(hanselman.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 8 months ago

Today Microsoft announce the creation of the CodePlex foundation. That's CodePlex.org. read more...

1 comment |category: |Views: 309

tags: another

Quality Sounds Good...I Think.(codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 9 months ago

Justin Etheridge muses on software as a tangible product that we should be selling. read more...

add a comment |category: |Views: 149

tags: another

NHibernate vs Entity Framework: a performance test(gregdoesit.com)

submitted by gergely.oroszgergely.orosz(645) 2 years, 9 months ago

Measured the performance of some .NET ORM frameworks including NHibernate and Entity Framework. Results showed that Entity Framework is better at storing data while NHibernate is better at deleting it. read more...

add a comment |category: |Views: 866

tags: another

Free PowerShell EBook(kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 years, 10 months ago

Looking for something to do this weekend? Looking to master PowerShell? PowerShell MVP Dr. Tobias Weltner has released a free book just for you, Mastering Powershell! read more...

1 comment |category: |Views: 320

tags: another

Why DRY and Unit Tests don’t mix well.(blogs.msdn.com)

submitted by jemtsjemts(591) 2 years, 10 months ago

Why applying the DRY (The Don't Repeat Yourself) principle to your unit test is not always a good idea. read more...

add a comment |category: |Views: 322

tags: another

Performance testing of Dictionary, List and HashSet(softscenario.blogspot.com)

submitted by snaitssnaits(197) 2 years, 11 months ago

A quick little test of how the .net 3.5 Dictionary, List and HashSet compare adding and finding items. read more...

add a comment |category: |Views: 1949

tags: another

Rarely used C# Keywords(dotnetcube.com)

submitted by dncdudedncdude(1350) 3 years ago

When doing code reviews or when working with code that was developed by someone else, once in a while I come across keywords that are rarely used. Some of them are forgotten keywords that are not considered a good practice and hence are not promoted by the community. Some of them could be handy and efficient but they never made it to the limelight. read more...

4 comments |category: |Views: 1245

tags: another