Posse Comitatus Act, bah! → #
Posted Thursday 25th September 2008 17:00 GMT
In US Army unit deployed to home front
Since Bush regularly flouts the constitution, what does he fear about an act?
3 posts • joined Tuesday 4th December 2007 05:37 GMT
Posted Saturday 13th December 2008 06:54 GMT
Azure has some warts, but it is at alpha. The concept of storing your data both locally, so you can work on it when the network is down, and in the cloud is compelling. If you are worried about sensitive data, either don't put it in the cloud (most companies have tons of public info) or encrypt it (it's simple to add that step to a .NET app).
Save your data center for your core biz.
Posted Thursday 25th September 2008 17:00 GMT
In US Army unit deployed to home front
Since Bush regularly flouts the constitution, what does he fear about an act?
Posted Tuesday 4th December 2007 05:42 GMT
In Bloody code!
My only problem with multiple exits is that it is easy to bury them. I would suggest all inputs should be validated immediately at the beginning of any function and then one exit after that. Something like:
// Function to get the account balance
AccountDetails GetAccountDetails(account)
{
if (account == null) return null;
...
doug