Log in | Jump |

jhollingworth

a blog about my life (twitter.com/jhollingworth)

FluentIoC 0.1 Released!

Posted on January 2nd by admin. %
A major problem I've found at huddle was what a pain in the arse configuring IoC using xml is! So instead of moaning about it I decided to write ...

New blog

Posted on January 2nd by admin.
Now that i'm not a student anymore I've decided that I can actually afford the £3.41/month to host my own blog so I'm moving from my old blog to ...

ASP.NET Calender Validation

Posted on December 5th by admin.
Today I need to validate that a user had entered a date in an asp.net calender only to find that there were no solutions for it so for future reference, ...

Exams Results

Posted on June 11th by jhollingworth.
Just found out I got a 1st for my degree as well as the Sulivan Award for best project for the year!
(preview-image)

Muney: Organizing a students finances

Posted on May 26th by jhollingworth. 2
This is the first of a series of articles about my dissertation, a personal financial management application for students. The first task was to organize a users finances by importing ...
(preview-image)

Muney: Financial Management for Students

Posted on May 26th by jhollingworth.
Over the past year, I have spent quite a long time on my dissertation. I’m pretty proud of it and I have had quite a few positive comments from various ...
(preview-image)

Subsonic like NHibernate Query Generator button in Visual Studio

Posted on March 28th by jhollingworth. 3
One thing I love about SubSonic, in fact the reason i switched, was how awsome the querying is. I don't know why but something like new UserCollection().Where("UserID", id).Where("Password", password) just ...

Monorail: Get client's browser

Posted on March 2nd by jhollingworth.
For future reference, to get the clients browser:     $Context.UnderlyingContext.Request.Browser.Browser This is infact accessing the HttpRequest.Browser property so you can then get all the usual info like browser version:     $Context.UnderlyingContext.Request.Browser.MajorVersion Hope this ...
(preview-image)

Visual Studio syntax highlighting for Monorail views

Posted on February 24th by jhollingworth. 2
I was just having a look through the options in visual studio 2008 and noticed a new section for selecting the default editor for non-standard files, such as monorail views ...