rushonerok

Stories kicked by rushonerok

Bundler.NET(bundler.codeplex.com)

submitted by numinanumina(25) 29 days, 5 hours ago

An API for combining, minifying, compressing, and caching CSS and JavaScript for .NET websites. read more...

1 comment |category: |Views: 369

tags: another

Devops at Adzerk(team.adzerk.com)

submitted by bsenoffbsenoff(1583) 7 months, 7 days ago

From our sister company, Adzerk, James Jeffers speaks about how the company has designed it's software process to get around the dev/production bottleneck inherent in most companies. read more...

3 comments |category: |Views: 128

tags: another

Stock Market Technical Analysis(www.simple-talk.com)

submitted by bsenoffbsenoff(1583) 7 months, 14 days ago

A terrific example of how to use the .Net framework in an intensive financial application. read more...

1 comment |category: |Views: 139

tags: another

The three pillars of unit tests: A helpful guide for beginners(blog.goyello.com)

submitted by dpetersondpeterson(4397) 7 months, 16 days ago

If you're new to TDD, then this short but sweet article by Pawel Olesiejuk is just what the doctor ordered. It covers the three pillars of test-driven development, which should push anyone just learning TDD in the right direction. read more...

7 comments |category: |Views: 574

tags: another

C#/.NET Toolbox: Creating a "Safer" Task Dispose()(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 7 months, 20 days ago

So recently, I’ve been moving some older utility classes logic over to use the excellent .NET Task Parallel Library (TPL). This library contains, at it’s core, a class called Task which allows parallel programming without the need of working directly with threads. During this process, I wrote a few extension methods I found to be useful in dealing with tasks in an easier manner, and thought I’d share them in a few posts. Today's will discuss an extension method to make disposing a task a little bit "safer". read more...

6 comments |category: |Views: 204

tags: another

Avoiding Race Conditions with a BackgroundWorker(blog.bucketsoft.com)

submitted by BucketSoftBucketSoft(324) 7 months, 20 days ago

What is a race condition you say? Well, simply put, it's when two or more threads race to an event or line of code. Sometimes one thread will win the race, and sometimes the other thread will. What this comes down to is that this inconsistent behavior can cause some strange and unexpected results. read more...

1 comment |category: |Views: 197

tags: another

Obfuscating and Protecting an Application(www.red-gate.com)

submitted by bsenoffbsenoff(1583) 7 months, 23 days ago

An introduction to why obfuscating .NET applications is important, and how they can be protected using SmartAssembly. read more...

add a comment |category: |Views: 112

tags: another

C# 5 PropertyChanged - No more magic strings!(www.robfe.com)

submitted by dpetersondpeterson(4397) 8 months, 5 days ago

Changes in C# 5 mean no more NotifyPropertyChanged("SomeVariable"), which is a common source of bugs. It also means we no longer have to suffer the performance degradation associated with using workarounds such as lambda's just for the sake of compile-time checking. From here on out, the compiler does the work for us. read more...

2 comments |category: |Views: 588

tags: another

A Review of Beginning C# Object-oriented Programming (books.dzone.com)

submitted by rcashrcash(4149) 8 months, 20 days ago

This article is a reveiew of the book "Beginning C# Object-oriented Programming". What makes a good programming book for beginners? One that teaches them the to copy and paste code or one that makes them think for themselves? read more...

add a comment |category: |Views: 29

tags: another

New book: Parallel Programming with Microsoft Visual Studio 2010 Step (blogs.msdn.com)

submitted by rcashrcash(4149) 8 months, 20 days ago

Now available: Parallel Programming with Microsoft Visual Studio 2010 Step by Step. Developers can no longer rely on clock rate advances to improve the speed of software. Instead, developers need to focus on how to identify the independent portions of their code, and program them to run simultaneously, in parallel, so they can take advantage of the new multi-core architecture. Not only does parallel programming require a change in code, it also requires a change in the way developers think about code. read more...

add a comment |category: |Views: 21

tags: another

Analyze your Web Server Data with LogParser and Log Parser Lizard GUI(www.hanselman.com)

submitted by dpetersondpeterson(4397) 8 months, 20 days ago

Scott Hanselman shows us how to get the most out of our log data using LogParser and the Log Parser Lizard GUI project. read more...

add a comment |category: |Views: 13

tags: another

The negative view on assembly references in the .Net community(codebetter.com)

submitted by dpetersondpeterson(4397) 8 months, 20 days ago

Dru Sellers starts an interesting discussion into why many people in the .Net community are opposed to having many assembly references in their projects. It seems counter-intuitive that this would be the case with the sky-rocketing popularity of using open source projects in .Net (and the ease of doing so with NuGet). What are your two cents? read more...

add a comment |category: |Views: 9

tags: another

The disadvantages of pair programming(www.markhneedham.com)

submitted by dpetersondpeterson(4397) 8 months, 20 days ago

Mark Needham discusses the disadvantages involved with 100% pair programming, showing us the other side of the pair programming coin. read more...

add a comment |category: |Views: 16

tags: another

Speech recognition in HTML5(www.codeproject.com)

submitted by dpetersondpeterson(4397) 8 months, 20 days ago

Robin Rizvi shows us how to enable speech recognition on the web using HTML5 and the Google Speech API. read more...

add a comment |category: |Views: 17

tags: another

hOOt - A new full text search engine for .Net(www.codeproject.com)

submitted by dpetersondpeterson(4397) 8 months, 20 days ago

hOOt is a extremely small size and fast embedded full text search engine for .net built from scratch. It was created in response to concern from the community over the lack of maintenance on the .Net Lucene port. This article will introduce you to using hOOt and explain what's going on under the hood. read more...

add a comment |category: |Views: 21

tags: another

Exceptions and Parallel Loops(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 8 months, 20 days ago

The sixth part of the Parallel Programming in .NET tutorial is the last instalment that examines the parallel loops. This article discusses how exceptions are thrown by code within a parallel loop and how they can be handled. read more...

4 comments |category: |Views: 14

tags: another