Search  
Tuesday, February 09, 2010 ..:: Blogs ::.. Register  Login
 Moke Blog Minimize

    

 Moke Blog Minimize

    

 Moke Blog Minimize
Author: Rick Mokros Created: 12/20/2006 11:04:26 PM
My blog is where I write about technology and general life topics that may or may not be of interest to others.

Pluralsight On-Demand - LINQ Fundamentals
By Rick Mokros on 12/10/2008 1:52:14 AM

I just finished the Pluralsight On-Demand - LINQ Fundamentals series today by Scott Allen.  Some of my take aways are

  • it is important to understand difference between IEnumerable and IQueryable
  • LINQ provides a much better API for working with XML, yippy...
  • LINQ to SQL looks cool, but I probably will not use it since Entity Framework seems to be the Microsoft supported option going forward.
  • ADO Data Services makes it very easy to create a Restful webservices layer over your data.  Although I am not convinced this is a stil ...
Comments (0) More...

PluralSight On-Demand
By Rick Mokros on 12/8/2008 12:29:59 AM

With recession in full swing, what are you doing to maintain your edge?  Being a Pluralsight subscriber for sometime, I decided to try the Pluralsight On-Demand product to keep my skills sharp.  I especially like the play back speed where I can accelerate the delivery of content essentially doing a session in 1/2 the time.

Comments (0)

Visual Studio CollapseAll Macro
By Rick Mokros on 11/26/2008 1:14:11 PM

I found this macro on CodeProject, and I use this macro extensively for collapsing complex solution structures.  The version I use is a modified version found in the comments rather than the article itself.  This macro collapses all elements in a solution.  You might find it as handy as I did.

To use the macro, in VS goto View-> Macro Explorer.  Create a new module by copying the contents of the macro below, then add a toolbar button that executes the macro.

Imports System
Imports EnvDTE
Imports System.Diagnostics

Public Module CollapseAll

    Sub CollapseAll()

    &nbs ...

Comments (0) More...


Visual Studio CollapseAll Macro
By Rick Mokros on 11/26/2008 12:27:45 PM

I found this macro a while back on CodeProject.  I use this macro extensively for collapsing complex solution and project structures in Visual Studio.  This macro collapses all elements in a solution.  You might find it as handy as I did.

To use the macro, in VS goto View-> Macro Explorer.  Create a new module and paste the contents of CollapseAllMacro as the module.  Then, add a toolbar button that executes the macro.

Imports System
Imports EnvDTE
Imports System.Diagnostics

Public Module CollapseAll

    Sub CollapseAll()

        ' Get the the Solution Explorer tree
   &a ...

Comments (0) More...


Internet Explorer "Operation Aborted" when testing with WatiN
By Rick Mokros on 7/16/2008 2:52:38 PM
This article talks about how to fix the "Operation Aborted" error that occurs sporadically when testing ASP.NET applications with WatiN.
Comments (0) More...

Unit testing ASP.NET applications with WatiN links
By Rick Mokros on 7/15/2008 1:25:41 PM
This article references some important links found while attempting to leverage WatiN for unit testing an ASP.NET application.
Comments (0) More...

TortoiseSVN ignore list
By Rick Mokros on 5/21/2008 9:55:52 AM

Here is my Tortoise SVN configuration and ignore list.

*.cache bin obj *.suo *.obj *.pdb *.exe *.dll *.csproj.user

Here is a snapshot of my current configuration.  Notice, I also selected to use _svn instead of .svn.  This just works better with Microsoft tools.

TortoiseSvnConfiguration.png

Comments (0)

Faster builds when using TortoiseSVN
By Rick Mokros on 5/15/2008 8:21:13 PM

On my current project, we are using subversion and, naturally, TortoiseSVN.  One thing that bugged me was that it slows down the build process in Visual Studio to an unacceptable level.  I have excluded the root of my c drive like so c:\* but performance is still unacceptable.

So, I found myself killing the TSVCache.exe process before each build.  So, my quick fix was to add this command as a pre-build event in my project.

taskkill /T /f /fi "imagename eq TSVNCache.exe"

Comments (1) More...

Using SED to convert ASP.NET 1.1 pages to 3.5
By Rick Mokros on 5/12/2008 8:52:00 AM
Using SED to drive your ASP.NET 1.1 to 3.5 upgrade
Comments (0) More...

VS2005 - Customizing Code Snippets
By Rick Mokros on 5/23/2007 1:48:00 PM

In Visual Studio 2005 when you right-click on a method and select "Generate Method Stub" the following code is generated. 

public bool IsDogLoose()

{

   throw

Comments (0) More...



    

There are no categories in this blog.
Copyright 2006 by Moke's Information Technology, Inc.   Terms Of Use  Privacy Statement