HoolieMan

Stories submitted by friends of HoolieMan

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

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

submitted by jongallowayjongalloway(4380) 4 months, 6 days 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: 240

tags: another

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

submitted by jongallowayjongalloway(4380) 4 months, 9 days 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: 1282

tags: another

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

submitted by jongallowayjongalloway(4380) 4 months, 22 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: 82

tags: another

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

submitted by jongallowayjongalloway(4380) 7 months 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: 105

tags: another

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

submitted by jongallowayjongalloway(4380) 7 months, 2 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

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

submitted by jongallowayjongalloway(4380) 11 months, 12 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: 32

tags: another

Recursive Ruby Script to replace File/Directory Names & File Contents(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 3 months ago

Over this past weekend I began templating a project structure that we use at my day/evening/night job to allow developers to simply execute a script and provide a few parameters to initialize a new development project (including build script, fxcop analysis, unit testing, visual studio projects, etc.). I didn’t think this would take that long despite being relatively new to the Ruby world. Oddly enough, I had trouble finding similar examples on the interwebs – even StackOverflow didn’t have the answer! The horror, the horror! No matter, I’m a developer after all and should be, better be capable of handling this simple script. I decided to start simple and just use the directory global searching method to recursively get everything within my project template’s directory: read more...

add a comment |category: |Views: 5

tags: another

Simplify Using Xml Data with AutoMapper and Linq-To-Xml(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 6 months ago

I recently ran into a scenario at work that required manually consuming several SOAP web services, which I’m sure you can imagine was rather monotonous. A co-worker (Seth Carney) and I tried a few different approaches, but we finally settled on a solution that simplified consumption of the xml and ultimately made the code more testable. That solution centered around leveraging AutoMapper, an open source object-object mapping tool, to create a link between the XElements returned in the SOAP messages and custom contracts we created – in a reusable manner. I put together a quick demo that shows how you could use the same approach to consume and display the Twitter Public Timeline (using the API’s Xml response type). read more...

add a comment |category: |Views: 76

tags: another

A Better Hg Command Line Interface: Console2 + PowerShell + Posh-Hg(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 6 months ago

Moving from Subversion to Mercurial was more than a change from a centralized version control system to a distributed solution. I also found myself moving away from the explorer integration provided by the Tortoise products to the command line for the execution of my hg commands. This approach is dramatically faster once you get used to the syntax, which really only takes a hot minute. Certain features in TortoiseHg still provide visual advantages that I find useful, such as the visual repository log. During an Agile.Net Bootcamp with Jimmy Bogard he showed us an collection of tools he utilizes to provide an improved Mercurial command line experience. The final product is a more descriptive prompt that displays branch information, as well as the number and types of changes made since your last commit… read more...

add a comment |category: |Views: 64

tags: another

What’s Nu in the .NET World Part 2: Creating a Gem(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 9 months ago

If you are not familiar with the Nu project start by reading my first post in this series that gives an introduction to getting started with this promising tool. As a quick reference I’ll post a paragraph from the last post introducing Nu: “Nu is an open source tool built by Dru Sellers (and several others) that aims at bringing Gems, one of Ruby’s most revered features, to the .NET world. If you are not familiar with Gems I suggest you take a minute to read up on them. I would venture a bet that you are already familiar with at least one gem – Ruby on Rails. The following line of code is all that is required to install the Ruby on Rails gem (after installing the Ruby library of course)…” This post is focused on sharing my experience in creating my first gem for the Spark View Engine. I would be doing you a great disservice if I did not start by saying how easy it is to create a gem. Actually easy is the wrong phrase – crazy easy is more telling. Since I would never ask you to take my word for it, it must mean it is time to show some code. read more...

add a comment |category: |Views: 10

tags: another

What's Nu in the .NET World?(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 9 months ago

If you thought the word "Nu" in the title of this blog post was misspelled, you are in for a treat. And trust me, you are not the only one who made that grammatical assumption. Nu is an open source tool built by Dru Sellers that aims at bringing Gems, one of Ruby’s most revered features, to the .NET world. If you are not familiar with Gems I suggest you take a minute to read up on them. I would venture a bet that you are already familiar with at least one gem – Ruby on Rails. The following line of code is all that is required to install Ruby on Rails gem (after installing the Ruby library of course)... read more...

add a comment |category: |Views: 9

tags: another

Mercurial: Create Remote Repositories Using PowerShell(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 9 months ago

One limitation when using http as a publishing mechanism is that you cannot create a repository remotely; no if, ands, or buts about it. Another twist was that our CM (Configuration Management) procedures dictate that our developers are not permitted to RDP into the Mercurial server. This left us trying to decide how to allow developers to create repositories remotely since our http communication channel does not allow remote repository creation. This post details an approach leveraging PowerShell as a solution to this problem. read more...

add a comment |category: |Views: 20

tags: another

Use Google's Closure Compiler in C#(madskristensen.net)

submitted by madskristensenmadskristensen(8565) 2 years, 6 months ago

A very simple and small C# class for utilizing the Google Closure Compiler API for minifying JavaScript. read more...

add a comment |category: |Views: 432

tags: another

Migrating to IIS7(johnnycoder.com)

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

Some good information on upgrading an ASP.NET site from IIS6 to IIS7 - example from Subtext on GoDaddy. read more...

add a comment |category: |Views: 17

tags: another

Web Deployment with VS 2010 and IIS(blogs.msdn.com)

submitted by jongallowayjongalloway(4380) 3 years, 3 months ago

The MSDeploy tool which will be included in Visual Studio 2010 includes some fixes for key painpoints like database deployment and managing different web.config settings in development, test, and production. read more...

add a comment |category: |Views: 255

tags: another