Efficiency is one of the overriding considerations when designing almost any kind of application. This requirement affects everything from the algorithms used to the distribution of work within the system.
Category: Programming
Using Typed Datasets in Visual Studio
If you’ve worked with Visual Studio or .NET for long, you’re probably familiar with the System.Data.DataSet class which enables you to create a collection of data in memory, often retrieved from an SQL database. Within a dataset object, you can have a series of related DataTables that categorize the data. Moving further down, each table can…
Weekend Links
I’d planned to spend the weekend writing up a new programming article for the site but it got a little hi-jacked by another project I was working on. On Friday, I needed to figure out how to generate ZIP files from a website and just couldn’t put it down for the weekend. The situation is…
Learning PHP
One of the projects I started late last year was learning some non-Microsoft technologies, one being PHP; a scripting language that is used behind websites in order to provide more dynamic features than ordinary HTML is capable of. PHP has been in use since 1995 and is one of the most widely available web technologies. …
Bringing things up to date …
Every so often, I remember that I have a blog attached to the site and I make new promises to myself to keep it up to date but it doesn’t seem to happen that often. 2011 was a busy year for me which was one reason I didn’t update the blog much. It’s easier to…
Design Abstractions
While new technologies … might make things easier for the average professional, they will never replace a solid understanding of the technologies they are built on top of.