Today, I implemented a feature in my home-brew site publishing system that has been on my list for some while.
I had been relying on Transmit to synchronise my local copy of dx13 with the server, but this was becoming untenable. The Transmit approach would compare the entire site with that on the ftp server. There are several hundred files and folders in the site to examine, meaning that the synchronisation process took a long time. Secondly, it would often fail with the server refusing more requests1.
Our trip to Spain was split into four mini-breaks: Granada, Cordoba, Seville and, finally, Cadiz. We spent four nights in Granada, Seville and Cadiz and two in Cordoba. Each place had its own charm, and I’d recommend each as well worth visiting.
Granada, Cordoba and Seville were very hot. Cadiz, being next to the Atlantic, was less so, though still toasty throughout the afternoon and into the evening.
Spaniards, it seems, are not all that great at catering for vegetarians, as virtually all dishes on offer, besides ubiquitous mixed salad and spanish omlette, contain large helpings of meat. Fish is also a prominent offering.
I’ll be away in Andalusia for two weeks. Hopefully I’ll be able to take some lovely photos to further aid those who wish to stalk me via pictures of my past.
I have begun to use .net version 2.0. So I’m only two years or so behind the cutting edge, but that’s how rock and roll I am.
Anyway. One of the features of C# 2 is generics. These allow one to specify a placeholder for the type of an object (say one to be placed in a list or a method parameter) which is then filled in at compile time based on the types actually used.
Analysis of how the brain processes negations gives those pedantic, pragmatic programmers amongst us some hard science to use as backup for some of our minor code changes.
An important tactic when programming is to simplify things to make it easier for the readers of your code. A computer will not complain about the shoddy-ness of your code. The next person who has to update your code, however, will thank you if your code is clean, readable and easy to follow. More often than not, that person is yourself, allowing you to reap what you sow.