chrispoulter
Name: chrispoulter
Score: 150.02
Last Seen: 373 days, 14 hours, 36 minutes ago
Member Since: 3 June, 2010
DotNetShoutout
atom rss
3
Shouts

Creating a Centralized NuGet Packages Folder

published 397 days, 18 hours, 7 minutes ago posted by chrispoulterchrispoulter 402 days, 9 hours, 28 minutes ago
Thursday, May 17, 2012 6:05:19 PM GMT Sunday, May 13, 2012 2:44:53 AM GMT
I would imagine most people by now will have discovered and use the NuGet Visual Studio extension (http://www.nuget.org/). It is a great way of adding and maintaining 3rd party code libraries in your projects. One problem I find though is that every time I create a new project or solution I end up installing the same old NuGet packages. By default NuGet downloads the source code for these packages into a new "packages" folder in your project/solution root directory. This means I have the same source code... (more)
category: Web Dev | clicked: 20 | comment | | source: www.chrispoulter.com
tags:
3
Shouts

Style Selected Text with CSS3 :: Chris Poulter

published 517 days, 19 hours, 14 minutes ago posted by chrispoulterchrispoulter 519 days, 21 hours, 48 minutes ago
Wednesday, January 18, 2012 4:59:12 PM GMT Monday, January 16, 2012 2:24:24 PM GMT
Loving some of the new things you can now do with CSS3. Recently discovered that you can add styling to text selected by the user. Begs the question where you could make use of this or in fact whether a user is ever likely to notice you have tweaked the styling for their benefit but hey... CSS3 Styled Text Selections Simply drag the cursor over the styled text and the background and color properties change. p::selection { background: red; color: white; } p::-moz-selection { background: red; color: white;... (more)
category: UX | clicked: 12 | comment | | source: www.chrispoulter.com
tags: CSS 3, CSS, HTML
3
Shouts

Using Log4Net in a Shared Hosting Environment :: Chris Poulter

posted by chrispoulterchrispoulter 632 days, 4 hours, 10 minutes ago
Monday, September 26, 2011 8:02:16 AM GMT
Another day and another shared web hosting issue. This time it's with Log4Net and its AdoNetAppender. The AdoNetAppender is used by Log4Net to append logging events to a table within a database. This is my preferred method for logging any live site errors within my web applications. However the latest release of Log4Net (1.2.10) will not allow the use of the AdoNetAppender within a medium trust environment. Fortunately after a lot of trawling through forums and blogs I finally stumbled onto a... (more)
category: Web Dev | clicked: 3 | comment | | source: www.chrispoulter.com
tags: .NET, MVC 3, Log4net
5
Shouts

Choosing an Online Source Control Solution

posted by chrispoulterchrispoulter 755 days, 4 hours ago
Thursday, May 26, 2011 8:12:56 AM GMT
I have been developing applications at home for a while now. I have my own libraries and coding structures. All my applications are stored on a local disk drive and manually backed up to an external drive whenever I can remember to do it. However in this environment creating branches of code or experimenting with code changes becomes extremely difficult. I also like to have access to my code at work and often end up carrying copies around on portable flash drives. So I felt it had become time to... (more)
category: Architecture | clicked: 5 | comment | | source: www.chrispoulter.com
tags: Git, winmerge, Subversion, Source Control, freepository, ankhsvn, tortoise svn
3
Shouts

Why you should always use a CAPTCHA :: Chris Poulter

published 899 days, 7 hours, 22 minutes ago posted by chrispoulterchrispoulter 901 days, 22 hours, 36 minutes ago
Sunday, January 02, 2011 4:51:00 AM GMT Thursday, December 30, 2010 1:36:30 PM GMT
Having Googled the question "should I use Captcha on my site" I was presented with quite a few blog entries arguing that any benefits... (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: Captcha, MVC, ASP.NET
4
Shouts

Pin to Taskbar using Internet Explorer 9 :: Chris Poulter

published 993 days, 7 hours, 18 minutes ago posted by chrispoulterchrispoulter 994 days, 2 hours, 25 minutes ago
Thursday, September 30, 2010 4:54:55 AM GMT Wednesday, September 29, 2010 9:48:10 AM GMT
Internet Explorer 9 offers the new functionality of pinning web sites to the Windows 7 taskbar or start menu. This gives users more direct access to web sites and their various sections. The pinning of sites relies on certain meta data being present within the (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: Internet Explorer 9, favicon, Windows 7 API
2
Shouts

Development Blog :: Chris Poulter

published 1068 days, 23 hours, 37 minutes ago posted by chrispoulterchrispoulter 1069 days, 23 hours, 37 minutes ago
Friday, July 16, 2010 12:35:23 PM GMT Thursday, July 15, 2010 12:36:15 PM GMT
Working as a web and database developer I often come across useful snippets of information about the technologies, tools and standards I use professionally. In order that I don't forget them and that someone out there may find them useful I keep a blog detailing the problems and solutions I discover. (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: C#, T-SQL, ASP .NET, CSS, HTML, MVC
11
Shouts

Localized Currencies and Decimals using MicrosoftAjax.js

published 1074 days, 1 hour, 28 minutes ago posted by chrispoulterchrispoulter 1075 days, 19 hours, 46 minutes ago
Sunday, July 11, 2010 10:44:53 AM GMT Friday, July 09, 2010 4:26:25 PM GMT
Highlights issues with parsing and formatting localized currencies and decimals in JavaScript. (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: JavaScript, Localization, MVC, ASP.NET
3
Shouts

Rounding Decimals using .NET and T-SQL :: Chris Poulter

published 1110 days, 21 hours, 58 minutes ago posted by chrispoulterchrispoulter 1112 days, 6 minutes ago
Friday, June 04, 2010 2:15:10 PM GMT Thursday, June 03, 2010 12:06:30 PM GMT
Highlights issues with rounding decimals in both the .NET and T-SQL environments. (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: .NET, Databases, T-SQL, mathematics
7
Shouts

Cache By Browser using ASP.NET MVC :: Chris Poulter

published 1110 days, 21 hours, 58 minutes ago posted by chrispoulterchrispoulter 1112 days, 8 minutes ago
Friday, June 04, 2010 2:15:10 PM GMT Thursday, June 03, 2010 12:05:00 PM GMT
Tutorial on how to cache MVC Views based on the current browser request. (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: Caching Depedency, MVC, ASP.NET
5
Shouts

Compiling Views in ASP.NET MVC :: Chris Poulter

published 1110 days, 21 hours, 58 minutes ago posted by chrispoulterchrispoulter 1112 days, 9 minutes ago
Friday, June 04, 2010 2:15:10 PM GMT Thursday, June 03, 2010 12:03:18 PM GMT
Tutorial on how to compile MVC Views when building a Visual Studio project. (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: MVC, Compiling, ASP.NET