LINQ - Design Guidelines

Earlier, my business partner forwarded me a link to a great article by Mircea Trofin that covers, with examples, some great design guidelines for using LINQ and developing/extending with new types, libraries and the like.

The article is a great read for those of you who like an architectural view.

Check it out:

Click Here

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

SCP Recursively - How to SCP a directory of files

Recently I had to move an entire folder of MP3s from one server to another, and it just seemed silly to have to tar and transfer.  Here's how to do it with SCP:

find . -name "*.extension" -print0 | xargs -0 tar cvf - | ssh username at server tar xf -

Hope this helps...


 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: