Cool CG Animated Short Film
A CG 3D animated short film, apparently created by just one person. Amazing level of detail, and raised a few smiles as well. Looks very polished and professional.
A reference blog containing posts added during my time at Esendex.
A CG 3D animated short film, apparently created by just one person. Amazing level of detail, and raised a few smiles as well. Looks very polished and professional.
Posted by Ian Dykes at 20:28 0 comments
If you're looking for information on REpresentational State Transfer, then check out A Brief Introduction to REST at InfoQ. I particularly like:
The next principle we’re going to look at has a formal description that is a little intimidating: “Hypermedia as the engine of application state”, sometimes abbreviated as HATEOAS. (Seriously — I’m not making this up.)
Posted by Ian Dykes at 14:03 0 comments
Labels: REST
Posted by Ian Dykes at 09:07 8 comments
public class StringWriterWithEncoding : StringWriter
{
Encoding encoding;
public StringWriterWithEncoding (StringBuilder builder, Encoding encoding)
:base(builder)
{
this.encoding = encoding;
}
public override Encoding Encoding
{
get { return encoding; }
}
}
Posted by Ian Dykes at 16:13 9 comments
The Top 50 Proprietary Programs that Drive You Crazy — and Their Open Source Alternatives
Decent list of open source software for pretty much anything you want to do on your computer.
Posted by Ian Dykes at 16:00 0 comments
Last year in a post from the last day at Tech Ed I mentioned a talk about building Scalable ASP.NET Web Applications, in which a warning was given about using the normal .Net ThreadPool in web apps. A suggestion was made to instead use a custom thread pool so that ASP.NET's worker threads weren't all used up.
In that talk it was said there was code for such a class on the Wintellect website, but I remember looking at the time and couldn't find anything.
I've since found Mike Woodring's .NET Sample Page, on which there is a custom thread pool inplementation available for download.
I've not needed to use it yet, so can't comment on its usage, but I'll give it a go when I need control over the ThreadPool.
Posted by Ian Dykes at 15:08 0 comments
This is a personal weblog and represents my own opinions and ideas. This weblog does not represent the thoughts, intentions, plans or strategies of Esendex Limited, any affiliated companies, or other bodies to which I may belong or represent. Inappropriate comments will be deleted at the author’s discretion.
All code samples are provided "AS IS" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.