crpietschmann

Stories submitted by friends of crpietschmann

Phil Haack, Keith Dahlby and Paul Betts on Git for Windows(herdingcode.com)

submitted by jongallowayjongalloway(4350) 23 days, 13 hours ago

Herding Code podcast talking to Phil Haack and Paul Betts (both new GitHubbers) and Keith Dahlby (author of posh-git, a set of PowerShell scripts which provide Git/PowerShell integration) about using Git on Windows. read more...

4 comments |category: |Views: 233

tags: another

10 Things ASP.NET Developers Should Know About Web.config Inheritance(weblogs.asp.net)

submitted by jongallowayjongalloway(4350) 26 days, 10 hours ago

Ten things you should know about Web.config inheritance and overrides that will simplify some configuration challenges and help with debugging. Bet there are some you didn't know about! read more...

5 comments |category: |Views: 1244

tags: another

Herding Code 130: Dave Weaver on Loggr – a realtime analytics service (herdingcode.com)

submitted by jongallowayjongalloway(4350) 1 month, 8 days ago

Herding Code podcast with Dave Weaver about Loggr, a complete logging, analytics and notification service built with ASP.NET MVC, SignalR, and MongoDB. read more...

3 comments |category: |Views: 79

tags: another

Using Node.js in an ASP.NET MVC application with iisnode(weblogs.asp.net)

submitted by jongallowayjongalloway(4350) 3 months, 17 days ago

iisnode makes it easy to run Node.js on Windows, and since it's an HTTP Handler you can integrate it directly into an ASP.NET application. Neat, huh? read more...

4 comments |category: |Views: 67

tags: another

Herding Code 124: Anthony van der Hoorn and Nik Molnar on Glimpse(herdingcode.com)

submitted by jongallowayjongalloway(4350) 3 months, 19 days ago

In this podcast, the Herding Code gang talks to Anthony and Nik, the creators of Glimpse. Glimpse is a system which allows you to view server-side information in the browser (think Firebug for server code) read more...

add a comment |category: |Views: 11

tags: another

How to Implement 2-Step Verification in ASP.NET MVC(www.nayyeri.net)

submitted by keyvankeyvan(4086) 6 months, 1 day ago

In this post Keyvan walks through an example to show how to implement 2-step verification (with phone) in ASP.NET MVC applications. read more...

3 comments |category: |Views: 137

tags: another

Using CodeMirror to add C# highlighting to an HTML TextArea(weblogs.asp.net)

submitted by jongallowayjongalloway(4350) 7 months, 29 days ago

CodeMirror is a Javascript library that adds live syntax highlighting to a text area. This post shows how to use it in your applications. read more...

add a comment |category: |Views: 19

tags: another

The importance of performance testing in a Windows Phone 7 application(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 10 months, 12 days ago

Simone Chiaretta highlights the importance of performance testing your applications on the Windows Phone 7 platform (where devices are not as powerful as desktops and server), illustrating with an example of an issue which caused him performance problems. read more...

add a comment |category: |Views: 8

tags: another

Lucene.Net needs your help (or it will die)(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 1 year, 3 months ago

The Apache Foundation wants to kill Lucene.net. If you use it please chime in and help. This post explains a bit more in detail why this is happening read more...

add a comment |category: |Views: 926

tags: another

Hand picked sessions from PDC2010(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 1 year, 3 months ago

If you are not living under a rock, probably you know that yesterday (October 28th) the PDC2010 started. If you missed the keynote of PCD 2010 here is a brief description of what I found interesting, the links to sessions I consider to be interesting (at least for me) and some considerations about SL vs HTML5. read more...

add a comment |category: |Views: 291

tags: another

Windows Azure Diagnostics in PHP(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 4 months ago

When working with PHP on Windows Azure, chances are you may want to have a look at what’s going on: log files, crash dumps, performance counters, … All this is valuable information when investigating application issues or doing performance tuning. Windows Azure is slightly different in diagnostics from a regular web application. Usually, you log into a machine via remote desktop or SSH and inspect the log files: management tools (remote desktop or SSH) and data (log files) are all on the same machine. This approach also works with 2 machines, maybe even with 3. However on Windows Azure, you may scale beyond that and have a hard time looking into what is happening in your application if you would have to use the above approach. A solution for this? Meet the Diagnostics Monitor. read more...

add a comment |category: |Views: 5

tags: another

Hybrid Azure applications using OData(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 5 months ago

In the whole Windows Azure story, Microsoft has always been telling you could build hybrid applications: an on-premise application with a service on Azure or a database on SQL Azure. But how to do it in the opposite direction? Easy answer there: use the (careful, long product name coming!) Windows Azure platform AppFabric Service Bus to expose an on-premise WCF service securely to an application hosted on Windows Azure. Now how would you go about exposing your database to Windows Azure? Open a hole in the firewall? Use something like PortBridge to redirect TCP traffic over the service bus? Why not just create an OData service for our database and expose that over AppFabric Service Bus. In this post, I’ll show you how. read more...

add a comment |category: |Views: 23

tags: another

Simplified access control using Windows Azure AppFabric Labs(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 6 months ago

Earlier this week, Zane Adam announced the availability of the New AppFabric Access Control service in LABS. This just *has* to be good! Let’s see how easy it is to work with claims based authentication and the AppFabric Labs Access Control Service, which I’ll abbreviate to “ACS” throughout this post. read more...

add a comment |category: |Views: 15

tags: another

MvcSiteMapProvider 2.1.0 released!(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 6 months ago

The release for MvcSiteMapProvider 2.1.0 has just been posted on CodePlex. MvcSiteMapProvider is, as the name implies, an ASP.NET MVC SiteMapProvider implementation for the ASP.NET MVC framework. Targeted at ASP.NET MVC 2, it provides sitemap XML functionality and interoperability with the classic ASP.NET sitemap controls, like the SiteMapPath control for rendering breadcrumbs and the Menu control. read more...

add a comment |category: |Views: 25

tags: another

ASP.NET MVC 3 and MEF sitting in a tree...(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 6 months ago

As I stated in a previous blog post: ASP.NET MVC 3 preview 1 has been released! I talked about some of the new features and promised to do a blog post in the dependency injection part. In this post, I'll show you how to use that together with MEF. read more...

add a comment |category: |Views: 110

tags: another

ASP.NET MVC 3 preview 1 is out! Quick review...(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 1 year, 6 months ago

I just noticed a very interesting download: ASP.NET MVC 3 preview 1. Yes, you are reading this correctly, the first bits for v3.0 are there! Let’s have a quick look around and see what’s new... read more...

add a comment |category: |Views: 21

tags: another