Category: mini tools list
-
Selenium and testing WebInterfaces
On some cases you need to test the whole web interface. Why ? Suppose you have some Ajax call. You can test the call on server,but how do you ensure that user experience is OK ? There are several testing projects for Web – for example selenium and Watin I will show how to test…
-
Entity Framework profiler
Many times I’ve had problem with the following error when inserting objects with dates with Entity Framework : System.Data.UpdateException An error occurred while updating the entries. See the inner exception for details.SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM. Ok,it’s my faute – but to remember each one date is too…
-
Logging and instrumentation
Why There are at least two reasons for an application to register what tfhe user do. The first one and the most important is to see what is happening when a user has an error: what have been done,on which path did he go and what additional data(method parameters,usually) do you need for reproducing the…
-
Html Agility Pack
This is the ultimate reference of reading web pages. IF you want to do it yourself,you can try with WebRequest,http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx . But not all HTML is an XML – so you must find a method to parse. But am I the only one ?No – so I found the HTML Agility Pack,http://www.codeplex.com/htmlagilitypack,that knows how to…
-
My programmer tools in 2009
you can download the PDF from http://msprogrammer.serviciipeweb.ro/wp-content/uploads/2010/03/tools.pdf Tool Description Link SharpZipLib Zip files programatically http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx nunit test http://www.nunit.org/index.php svn source control http://subversion.apache.org/ hudson continous integration http://hudson-ci.org/ EntityFramework sql server database to .NET code filehelpers parse csv and other files http://www.filehelpers.com/ log4net logging http://logging.apache.org/log4net/ lumisoft parsing email messages http://www.codeproject.com/KB/vista/SMTP_POP3_IMAP_server.aspx moq mocking in unit test http://code.google.com/p/moq/ automapper…