Pages

Sunday, December 18, 2011

Drop in two-factor authentication control, used by the likes of CloudKick.com

Thursday, December 01, 2011

Securing a .Net Remoting

We were experimenting with hosting our server on Azure and connecting remotely from our legacy desktop client.  Of course, this meant the client/server connection, which relies on .Net Remoting needed to be secured.  As it turned out, this only required a change in the app.config to set "secure=true". In the end, securing a .Net Remoting connection was fairly simple.  http://www.codeguru.com/columns/dotnet/article.php/c10253

Sunday, October 16, 2011

Good article on UINavigationController
Explains the basics well, and suggests how to use it programatically.
http://www.shrinkrays.net/articles/monotouch-controllers-by-example/uinavigationcontroller-by-example.aspx

Tuesday, October 11, 2011

Important ASP.Net tip on "deleting" from a link


http://stephenwalther.com/blog/archive/2009/01/21/asp.net-mvc-tip-46-ndash-donrsquot-use-delete-links-because.aspx

Tuesday, September 13, 2011

DateTime versus DateTimeOffset


After reading this article, here's how I see it...

DateTimeOffset incorporates the UTC offset, and as such is better when you need to store the value as an absolute value (where two people could both look at the screen, see the value, pick up the phone, dial, and reasonably expect each other to be there).

DateTime would be good for historical dates, like your birth date, it does not incorporate any time zone offset, and if left un-adjusted, reflects that day in a relative sense.  For example, it happened in Chicago on Christmas Day five years ago, I know that means 12/25/2006 is when, and while I could figure out the time zone, it is not important.   So like the article says, use DateTime to "Work with abstract times and dates, such as historical dates."

Monday, September 12, 2011

Good overview of Agile (videos)

Difference between Agile Themes, Epics, and User Stories
http://agile101.net/2009/08/10/the-difference-between-agile-themes-epics-and-user-stories/

Overview of TFS support for agile/scrum
http://blogs.msdn.com/b/bharry/archive/2009/05/19/tfs-2010-project-management.aspx

Agile Planning Tools in Visual Studio Team System 2010
http://msdn.microsoft.com/en-us/magazine/dd347827.aspx#id0100021

Wednesday, August 31, 2011

TenderApp vs GetSatisfaction vs UserVoice » TidyApps:

'via Blog this'

User Voice seems to win out.  Has both ticketing and feature prioritization.

Friday, July 22, 2011

eLance
http://www.superscriptor.com/blog/odesk-and-elance-scams-%E2%80%93-contractor-survival-guide/

Tuesday, June 07, 2011

Monday, June 06, 2011

People to follow:

James Hamilton from Amazon
http://www.mvdirona.com/jrh/work/

Friday, May 06, 2011

Interesting, well written, discussion of one MVC framework done in PHP.  I am not attracted to it due to the use of XSL, but the writeup itself is worth reading.

MVC Design Pattern for PHP by Tony Marston

A series of articles on doing MVC in PHP with a different framework.

Understanding MVC in PHP

PHP or Ruby on Rails?   In the authors mind, PHP is the winner, with the main caveat--use what you already use/know.

 

Sunday, April 24, 2011

Tuesday, March 15, 2011

Overview of Apple's Core Data services.  Is interesting that they've made (most?) of this available for use in iPhone applications.
Code Data Concepts

PDF version of the same
Good list of free Source Code SaaS providers:
http://svnhostingcomparison.com/

Friday, March 11, 2011

In case you are ever forced to call a Web Service from Windows Scripting Host (WSH), here are some good examples:

http://snipplr.com/view/20914/technorati-ping--jscript-wsh-javascript-with-xmlhttp/
http://www.aspfree.com/c/a/Windows-Scripting/Handling-Live-Web-Content-in-WSH/
http://www.aspfree.com/c/a/Windows-Scripting/Handling-Live-Web-Content-in-WSH-Part-2/

Actual SOAP request -- search at this link for WSH
http://www.c-sharpcorner.com/UploadFile/prvn_131971/CreatingWebServices02132008050732AM/CreatingWebServices.aspx

Saturday, February 19, 2011