Tag: mini tools list
-
Programmer tools 2011
List of programmer tools I have re-installed the PC and I have been taken notice of what tools I have on the system now: Magic Disc – can mount .iso files ( for 2 ) Visual Studio – must have for a easy developing path Sql Server 2008 – primary database for me 7-zip –…
-
Optimizing EF4 and EDMGen2
Just reading (from Adrian Florea links ) how the EF4 could be optimized : http://www.codeproject.com/KB/database/PerfEntityFramework.aspx First modification is to “Pre-generated Your View”. For this you must have .ssdl,.csdl,and .msl files – so you change the “Metadata Artifact Processing property to: Copy to Output Directory.”. Then you process the .ssdl,.csdl,and .msl with edmgen in order to…
-
LogParser,PowerShell and Quick and dirty parsing of IIS files
For a local enterprise IIS system you do not have to resort to Google analytics or other beasts that interprets IIs logs. After all,users are identified through ActiveDirectory,does not matter from what city do they come,and so on. But it will help to have some details of wjhat happened on the system this day( or…
-
Logparser quick and dirty
Sometimes you must find information in text files. Many,many text files,like IIS logs or other custom non-regular formats. I have a bot from http://www.imified.com/ – and I log the messages with log4net in text files,with another messages. An entry looks like that : System.ArgumentException: ;channel=private;botkey=<guid>;userkey=<guid>;user=name@yhaoo.com;network=Yahoo;msg=hello;step=1;value0=hello;to=asdasd And there are multiple log files that I want to…
-
file helpers
More than one time you need to let users / application import bulk data in your system . I have had many cases – data is old data from old software,that is exported in some text files,usually csv. In order to import fast the data,I used FileHelpers from http://www.filehelpers.com/ Let’s say you have the following…
-
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…