powerrush

Stories kicked by powerrush

ASP.NET MVC 2 RC 2 Released(haacked.com)

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

After receiving feedback from our last release candidate back in December, we decided it would be prudent to have one more release candidate that incorporated the feedback. You can read the release notes for everything that changed, there’s not a whole lot. read more...

add a comment |category: |Views: 227

tags: another

Alvas.Audio 7.1 has been published.(alvas.net)

submitted by alvasnetalvasnet(550) 2 years, 3 months ago

Whats new (version 7.1): Writes ID3 tag version 1 from MPEG Layer3 streams. Writes INFO metadata(similar mp3 tags) from Wave streams. Checks audio signal silence... read more...

add a comment |category: |Views: 107

tags: another

Shouldly(snappyco.de)

submitted by whatupdavewhatupdave(24) 2 years, 3 months ago

Shouldly is the "should" style test library you've always wanted read more...

1 comment |category: |Views: 90

tags: another

Episode 43: Talking OData and SQL Modeling Services with Douglas Purdy(deepfriedbytes.com)

submitted by cwoodruffcwoodruff(780) 2 years, 3 months ago

In this episode, Keith and Woody sit down at PDC 2009 with Microsoft’s Douglas Purdy to discuss all things data. Do you remember Oslo from the previous PDC event? Well Oslo has been rebranded to SQL Server Modeling Services to help developers store and manage models for the enterprise. Modeling Services enables you to more productive when building and managing data-driven applications. The guys also get the low down from Douglas on a new web protocol for querying and updating data called OData. read more...

add a comment |category: |Views: 58

tags: another

Enterprise Library 5.0 and Unity 2.0 Roadmap(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 3 months ago

Now that the release of Visual Studio 2010 is just around the corner, the next thing to consider is when will the updated release of Entlib ship? Check out this blog post by Grigori Melnik where he reveals that April 14, 2010 is the magic target date…http://blogs.msdn.com/agile/archive/2010/01/20/announcing-enterprise-library-5-0-and-unity-2-0-roadmap.aspx For those of you who may not be familiar with what Enlib is - The Microsoft Enterprise Library is a collection of reusable software components (application blocks) designed to assist software developers with common enterprise development challenges. read more...

add a comment |category: |Views: 391

tags: another

Gherkin style specification testing in .NET(ryanlanciaux.com)

submitted by dengar007dengar007(3084) 2 years, 3 months ago

Behavior Driven Development is something that has interested me for quite awhile. I have constantly tried to write my tests as clear and concise as possible but once I saw Cucumber for Ruby that became the new standard for what I was trying to achieve in .NET. This is where SpecFlow comes in. read more...

add a comment |category: |Views: 361

tags: another

Code reviewing in SyntaxEditor for WPF, intra-text adornments demo!(blog.actiprosoftware.com)

submitted by ActiproActipro(734) 2 years, 3 months ago

We show off a new demo for our WPF SyntaxEditor control, which is a syntax-highlighting editor control, that lets you embed any sort of content (images, controls, etc.) between text characters of the editor. This particular demo shows how the feature can be used for code reviews. Neat stuff. read more...

add a comment |category: |Views: 12

tags: another

Developer "Houses" - Awesome Cubicle Alternative(developertown.com)

submitted by powerrushpowerrush(3873) 2 years, 3 months ago

It's one of the first things a visitor to our office notices. It's one of the reasons we call our company a Town. Standing there in the middle of the office, surrounded by desks, chairs, printers, filing cabinets, all the trappings of the typical modern workspace, is a house. read more...

add a comment |category: |Views: 101

tags: another

Using Open XML SDK 2.0 to Create Office Solutions on Windows 7(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 3 months ago

With Open XML SDK 2.0, it becomes much easier to create Microsoft Office (2007 and 2010) based solutions with managed code than to work with VSTO (Office runtime for Visual Studio through interop) directly. The December 2009 Community Technical Preview (CTP) of the SDK, available for download here, is supported on Windows 7, Vista, XP and Windows Server 2003 and 2008. You can watch this 8-minute video to learn more about how to work with the SDK, including three handy tools for developers here. read more...

add a comment |category: |Views: 163

tags: another

30 “Quick Hit” Videos about ASP.NET 4 and VS 2010 - Scott Gu(weblogs.asp.net)

submitted by powerrushpowerrush(3873) 2 years, 3 months ago

These “quick hit” videos that have been published that also provide quick first looks at some of the new features coming with ASP.NET 4 and VS 2010. These videos aren’t an exhaustive list of everything new – but do provide a great way to quickly learn about many of the cool new things coming with the release. read more...

add a comment |category: |Views: 18

tags: another

Editing a variable length list, ASP.NET MVC 2-style(blog.codeville.net)

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

A while back I posted about a way of editing a list of items where the user can add or remove as many items as they want. Tim Scott later provided some helpers to make the code neater. Now, I find myself making use of this technique so often that I thought it would be worthwhile providing an update to show how you can do it even more easily with ASP.NET MVC 2 because of its strongly-typed and templated input helpers. read more...

add a comment |category: |Views: 19

tags: another

[c#] What is ACM driver?(alvasnet.blogspot.com)

submitted by alvasnetalvasnet(550) 2 years, 3 months ago

Audio Compression Manager (ACM) is the Windows multimedia framework that manages audio codecs. Codec is a computer program that compresses/decompresses digital audio data according to a given audio file format or streaming audio format. The C# code below can be used to list ACM codec... read more...

add a comment |category: |Views: 32

tags: another

Dynamic Select Lists with MVC and jQuery(www.codecapers.com)

submitted by mceranskimceranski(345) 2 years, 3 months ago

A tutorial on how to build cascading select list with MVC and jQuery. This particular example uses jQuery to make asynchronous calls to the controller and return data as a JsonResult. The JSON data is then consumed by jQuery and used to dynamically populate a select list. read more...

add a comment |category: |Views: 81

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

Passing JSON serialized objects to a WCF service with jQuery(www.primordialcode.com)

submitted by GuardianGuardian(1104) 2 years, 4 months ago

Passing JSON serialized objects to a WCF service with jQuery, a simple how to read more...

add a comment |category: |Views: 68

tags: another

Enable cross-site XMLHttpRequest with W3C spec CORS(hacks.mozilla.org)

submitted by powerrushpowerrush(3873) 2 years, 4 months ago

Firefox 3.5 and Safari 4 implement the CORS specification, using XMLHttpRequest as an “API container” that sends and receives the appropriate headers on behalf of the web developer, thus allowing cross-site requests. IE8 implements part of the CORS specification, using XDomainRequest as a similar “API container” for CORS, enabling simple cross-site GET and POST requests. read more...

add a comment |category: |Views: 51

tags: another