DamienG

Stories submitted by DamienG

Creating RSS feeds in ASP.NET MVC(damieng.com)

submitted by DamienGDamienG(1405) 2 years, 1 month ago

Simple and easy way to leverage .NET's built-in classes to provide RSS feeds from ASP.NET MVC. read more...

add a comment |category: |Views: 263

tags: another

Custom LINQ to SQL code generation templates(damieng.com)

submitted by DamienGDamienG(1405) 3 years, 8 months ago

Free templates to allow full customization of the DBML to C#/VB.NET code generation phase of LINQ to SQL without additional tool dependencies! read more...

add a comment |category: |Views: 401

tags: another

Ten commandments for developers(damieng.com)

submitted by DamienGDamienG(1405) 3 years, 8 months ago

My personal top 10 list of annoyances that developers needlessly inflict on users. read more...

add a comment |category: |Views: 15

tags: another

Envy Code R coding font update released(damieng.com)

submitted by DamienGDamienG(1405) 4 years ago

Latest version of my monospaced scalable progamming font now with 550 glyphs over man codepages, bold, italics and extensive hinting for that crisp-clear experience and distinguishable characters. Also includes a special hack to let you get italic syntax highlighting within Visual Studio! read more...

1 comment |category: |Views: 14

tags: another

Localizing MVC for ASP.NET views and master pages(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 1 month ago

A class and technique to automatically use language-specific versions of views, user controls and master pages within MVC for ASP.NET. read more...

add a comment |category: |Views: 20

tags: another

Introduction to Volta: Tier-Splitting is NOT Tier-Agnosticism(dotnetaddict.dotnetdevelopersjournal.com)

submitted by DamienGDamienG(1405) 4 years, 4 months ago

Kevin Hoffman explains what Microsoft's Volta is about and why it is of interest to people developing distributed .NET solutions. read more...

add a comment |category: |Views: 11

tags: another

5 signs your ASP.NET application may be vulnerable to HTML injection(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 5 months ago

HTML injection is an incredibly dangerous flaw to have in your application and ASP.NET does nothing for you automatically. Here's 5 tell-tale signs your application may be affected. read more...

add a comment |category: |Views: 19

tags: another

Using script.aculo.us with ASP.NET MVC(chadmyers.com)

submitted by DamienGDamienG(1405) 4 years, 5 months ago

Chad Myers shows how to get Microsoft's new ASP.NET MVC framework working nicely with the open-source script.aculo.us JavaScript library. read more...

add a comment |category: |Views: 82

tags: another

How dangeous is HMTL injection?(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 5 months ago

f you are not familiar with HttpUtility.HtmlEncode but write web applications that output data into HTML you might well be writing applications that are open to HTML injection vulnerabilities that could be easily exploited. Includes link to a presentation that demonstrates vulnerable code and a safe alternative for both HTML and SQL injection vulnerabilities. read more...

add a comment |category: |Views: 2

tags: another

More Silk-style icons(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 5 months ago

Everybody's heard of the fantastic silky-smooth "Silk Icons" set from FamFamFam. This new set complements that original 1,000 png icon set with over 450 more of the same for use in Windows or Web applications. read more...

1 comment |category: |Views: 270

tags: another

Free software projects need a pitch(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 5 months ago

Open source and free software projects still have much to learn from commercial software, the number one in my book being "the pitch"... read more...

add a comment |category: |Views: 1

tags: another

Droid Sans Mono great coding font(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 6 months ago

Google's Android project contains a very nice monospaced font that looks just great in Visual Studio, give it a try! read more...

add a comment |category: |Views: 46

tags: another

Observations on Microsoft MVC for ASP.NET(damieng.com)

submitted by DamienGDamienG(1405) 4 years, 7 months ago

My rough observations and notes from Gurthrie and Hanselman's presentations of the prototype Microsoft MVC at the Alt.Net conference. read more...

add a comment |category: |Views: 3

tags: another

Globalising .NET web application quick summary(damieng.com)

submitted by DamienGDamienG(1405) 5 years, 6 months ago

Just a quick overview of the steps involved in making your .NET web applications handle multiple languages and regions. read more...

add a comment |category: |Views: 1

tags: another

Use your C# skills to code for the Xbox 360(microsoft.com)

submitted by DamienGDamienG(1405) 5 years, 9 months ago

Use your C# and .NET programming skils to code games for the Xbox 360 and PC. The beta is due the 30th August - until then check out my guide on which tools, API's and documentation to get started with at http://www.damieng.com/blog/archive/2006/05/17/PiecingTogetherMicrosoftsXNAGamingPlatform.aspx read more...

1 comment |category: |Views: 9

tags: another

URL parsing and manipulation in .NET(damieng.com)

submitted by DamienGDamienG(1405) 5 years, 10 months ago

While .NET has a couple of URI classes they're pretty useless. They don't decode the various parts and you can't manipulate them either. Many projects I've seen (Subtext included) just try and manipulate them via strings which varying degrees of success. Here's a pure C# .NET URL decoder that uses a regex I developed for performance based on a VBScript class I developed a while back. read more...

2 comments |category: |Views: 639

tags: another