Category: mini tools list

  • programming tools 2012

    Those are the tools that I haved worked with in my previous year. If you want to know how to utilize them,just ask me ;-). All tools utilities database source code framework testing Visual studio firefox chrome azure kinect javascript You can download as pdf my 2012 tools If you want more explanations about those…

  • Format Date Time

    If you pass the datetime in json format ( and apply to the view with Knockout) then you will need some formatting – because the standard format is not good . So I have used  http://blog.stevenlevithan.com/archives/date-time-format – easy to understand and with examples. Reccomended!

  • VS 2010 Extensions

    Visual studion extensions that I use: NuGet Package Manager Microsoft – Visual Studio Platform Team (Microsoft Corporation) Productivity Power Tools Team Foundation Server Power Tools December 2011 Web Standards Update for Microsoft Visual Studio 2010 SP1 PowerCommands for Visual Studio 2010 Web Essentials SQL Server Compact Toolbox EF 4.x POCO Entity Generator for C# EF…

  • Azure tools

    Azure storage Explorer : http://azurestorageexplorer.codeplex.com/  – like in VS,but simpler and cleaner Windows Azure ASP.NET Providers Sample : http://code.msdn.microsoft.com/windowsazure/Windows-Azure-ASPNET-03d5dc14 – utils for fast membership and roles. Small problem on local. More samples here: http://code.msdn.microsoft.com/windowsazure/ And that will be all,after reading the documentation and understanding the concepts ( for example,if you understand the session problem in…

  • Kinect

    I have the opportunity to borrow a Kinect hardware  – to make an application( I will make a simple anti-theft application). The steps for developing in Kinect are: Download the SDK from http://www.microsoft.com/en-us/kinectforwindows/develop/overview.aspx – it contains the drivers also Connect Kinect to USB,plug in the socket Run the Kinect Explorer or Kinect Shape Game from…

  • Transform Mozilla Bookmarks into a list

    You have seen that I begin to post “friday links” It is simple,once you have SqlLite Manager add-on for FF. ( add-on,source) Just run the following query ( for the last 7 days bookmarks) by selecting “places.sqllite”: (OK,I must know why I multiply by 1000000  – but,hey – it works ….)

  • 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  –…

  • MVC Zip Result

    Sometimes you need to send to the user more than 1 file – or,maybe,the file is too large The simplest way is : made a zip file that contains the others. What do you need 1. SharpzipLib from http://www.icsharpcode.net/opensource/sharpziplib/ ( or download via NuGet in VS) 2. obtain the file(s) that you want as a…

  • 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…

  • EF Profiler and investigating object context

    Summary : EF Profiler worth his money ! Long Description : I have finished a application with Entity Framework and POCO – and custom generated (.tt) files. Now it was time to investigate performance  – and it was a terrific problem. How EF Prof helped me : 1.  Displaying number of ObjectContext created and disposed…