Posted in Uncategorized on February 27th, 2008 No Comments »
The recent ‘Take 2′ Apple TV update has saved the small square box under my telly from EBay. 1080p output, rental HD movies, and now streaming internet radio have given it a real lease of life.
Now I realise that it’s meant to be just a media extender, but as it’s just a Mac under the [...]
Posted in Uncategorized on January 17th, 2008 No Comments »
From CoolHunting
“By installing Eye-Fi software on your computer and using the 2GB card in your camera in place of a regular SD card, you can use your home WiFi network to automatically upload photos via easy-to-use software. It’s really that simple.”
Slight downside that you have to install software - I hope this software can be [...]
Posted in Uncategorized on October 9th, 2007 No Comments »
Posted in Uncategorized on October 1st, 2007 1 Comment »
I just got home and the TV told me it had found a software update so I took a picture with my phone. I’m slightly perplexed as to where it downloaded the update from though…!
Posted in Uncategorized on June 18th, 2007 No Comments »
I’m jumping on the bandwagon of Ben and Mark regarding feed statistics. If you’re subscribed to the feed, why not make my day and update your feed to the URL below.
http://feeds.feedburner.com/alpriest
Posted in Uncategorized on May 1st, 2007 No Comments »
Mac only: Don’t want or need the exact time in your menu bar, why not change it for Fuzzy Clock which gives you just that - an approximation of the current time.
There are also a bunch of various languages including the usual Elmer Fudd, Pig Latin and the great Pimp.
Posted in Uncategorized on April 25th, 2007 No Comments »
Because I always forget how to do this, and because it saves so much time when you enable it, here’s the link for Enabling NHibernate debug
Spent a while trying to get sub-projects opening within Visual Studio today where the root project has SSL security setup. Every time VS tried to open the sub-projects it would error with the message “Secure channel failed”.
Figured it out eventually - you need to add a location element to the web.config for the get_aspx_ver.aspx to [...]
Posted in Uncategorized on November 26th, 2006 1 Comment »
I’ve moved my from Blogger to Wordpress tonight. It was incredibly simple as the latest release of Wordpress includes import functionality. The categories functionality, plugin capability and customisation features of Wordpress seriously outweigh those of Blogger.
I used this blog post to guide me in changing my Blogger settings, and also this blog comment to get [...]
[csharp]
using System;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;
namespace SocialAnimal.Web.UserControls
{
/// <summary>
/// If ControlToValidate has a value then DependantControl
/// must also have a value
/// </summary>
public class DependantFieldValidator : CustomValidator
{
private string _dependantControl = null;
private bool _showAlertBox = false;
[Description(@"If true, will show an alert box if the control validates false, otherwise will display an inline message"),
Category("Behavior")]
public bool ShowAlertBox
{
get { return _showAlertBox; [...]