buildexe

Stories kicked by friends of buildexe

MVC Strongly-Typed Action Helpers - They're Back!(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 4 days, 4 hours ago

Way back in 2009, the MVC Futures assembly introduced “strongly-typed action helpers”. They allowed you to render links using lambda expressions pointing directly to the actions on your controller, rather than using strings. Here's an alternative implementation that aims to resolve some of the performance issues they had. read more...

1 comment |category: |Views: 185

tags: another

Bundler.NET(bundler.codeplex.com)

submitted by numinanumina(25) 28 days, 17 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

Expression Trees + Generic Static Constructors(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 29 days, 13 hours ago

A great thing about .NET Expression Trees is you can compile them at runtime, and they’ll execute as fast as any .NET code. However, while building and compiling a tree is pretty quick, it’s best if you only need to do it once. Here's a way to do that with a generic class and static constructor. read more...

add a comment |category: |Views: 11

tags: another

Herding Code 142 - Scott Guthrie on the open source announcement(herdingcode.com)

submitted by jongallowayjongalloway(4380) 1 month, 3 days ago

The Herding Code guys talk to Scott Guthrie about the recent open source announcement for ASP.NET MVC, Web API, and Razor. read more...

1 comment |category: |Views: 113

tags: another

What's new in Razor v2?(vibrantcode.com)

submitted by dpetersondpeterson(4397) 1 month, 15 days ago

Check out some of the new features and changes in the upcoming Razor view engine v2.0. Don't forget the source code is also now available on Codeplex! read more...

1 comment |category: |Views: 621

tags: another

LOLCode Parser(chriscavanagh.wordpress.com)

submitted by BobStroggBobStrogg(1033) 2 months, 6 days ago

LOLCode parser and compiler. Now your cat can code for you. read more...

add a comment |category: |Views: 24

tags: another

Token Based Asynchronous Socket Server On .NET 4(mbrnd.net)

submitted by mabovykinmabovykin(50) 2 months, 6 days ago

An asynchronous token based socket server, which means that server and client will use token exchange as a handshake to confirm that all of the messages were correctly delivered. read more...

add a comment |category: |Views: 121

tags: another

HTML5 Offline Web applications as an afterthought in ASP.NET MVC(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 2 months, 12 days ago

Recently I prototyped a mobile web application using ASP.NET MVC, jQuery Mobile and some HTML5 features. One of the key goals was to find out how far you can push a web 'application' until the browser starts getting in the way. Working disconnected is one of these things that appear to be a major showstopper at first. However - to my surprise honestly - the HTML5 Offline Web applications API seems to be widely implemented across modern browsers already. Not of all of them though. Looking into the spe... read more...

add a comment |category: |Views: 157

tags: another

Windows 8 Consumer Preview Roundup(blogs.dotnetkicks.com)

submitted by dpetersondpeterson(4397) 2 months, 17 days ago

In case you’ve been living under a rock, you should probably know that Microsoft released a Consumer Preview version of Windows 8 this week. We've dug through some of the more interesting links and digested them for you here. Check out the build and let us know what you think of it! read more...

add a comment |category: |Views: 179

tags: another

WCF or ASP.NET Web APIs? My two cents on the subject (blogs.microsoft.co.il)

submitted by idofidof(307) 2 months, 19 days ago

A couple of weeks ago (around Feb. 16) the WCF WebAPIs - a framework for building RESTful/Hypermedia/HTTP services, which was in development over the past 1.5 years as a side-project on CodePlex, has been formally integrated into ASP.NET and its name changed to the ASP.NET Web API. These past two weeks, there has been a lot of questions among WCF developers: What does it mean that the Web APIs are no longer a part of WCF – is WCF dead? Has SOAP gone bankrupted? is HTTP the new way to go for interoperability? This post will try to answer those questions. read more...

add a comment |category: |Views: 336

tags: another

Stumped by .Net Memory Management?(www.red-gate.com)

submitted by bsenoffbsenoff(1583) 2 months, 19 days ago

seems intimidating, but the fundamentals can be easily understood. Here is the beast explained...with a little humor. read more...

add a comment |category: |Views: 229

tags: another

MS WebAPI in ASP.NET MVC 4 - HTTP Communication got a whole lot easier(www.dotnetcurry.com)

submitted by pardogopardogo(80) 2 months, 27 days ago

In this article, we will see what it takes to use the newly launched WebAPI in an existing MVC 3 application by upgrading it to ASP.NET MVC 4 and extending it to provide http services using the WebAPI read more...

add a comment |category: |Views: 267

tags: another

Using jQuery to tidy up missing Images Part 2(www.siphilp.co.uk)

submitted by siphilpsiphilp(919) 3 months, 3 days ago

Next post in this 3 part series. Allowing users to report missing images with jQuery. read more...

3 comments |category: |Views: 48

tags: another

Google reCAPTCHA in ASP.NET MVC 3 using the Razor engine(tkglaser.blogspot.com)

submitted by tkglasertkglaser(132) 3 months, 8 days ago

Adding Google's reCaptcha to an MVC 3 form. read more...

1 comment |category: |Views: 140

tags: another

Why is RAID So Important for Databases?(www.sqlservercurry.com)

submitted by flyingkickflyingkick(331) 3 months, 20 days ago

A good server design has no, or very few, single points of failure. One of the most common server component that fails, are disks. So data redundancy becomes essential to recoverability. Redundant Array of Independent/Inexpensive Disks (RAID) is a disk system that provides better fault-tolerance by making use of redundancy of disk(s). read more...

1 comment |category: |Views: 175

tags: another

Running your TeamCity builds from PowerShell for any Git branch(www.laurentkempe.com)

submitted by laurentkempelaurentkempe(317) 3 months, 20 days ago

I love TeamCity and use it since a while to automate my build/release processes. As human we should never do the work a machine can do, we have certainly better and more interesting things to do. The habit I saw in the different projects I worked for is to create new TeamCity builds for the branches you work on. It take quite some work to do, even with templates… So I came with another way of doing it. It is leverage Git, PowerShell and the possibility to run TeamCity builds by “Accessing Server by HTTP” read more...

add a comment |category: |Views: 102

tags: another