Sign in
Michael Entin's notebook
Michael Entin's notebook
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
.NET
64bit
Azure
BI
Functional
humor
Katmai
non-admin
non-secure
Perf
powerpivot
Rant
SSIS
SSIS Lookup
SSIS Programming
SSIS Scripting
SSIS Tasks
tools
Trust Services
Win32
wwf
Browse by Tags
MSDN Blogs
>
Michael Entin's notebook
>
All Tags
>
.net
Tagged Content List
Blog Post:
Making Asynchronous Programming Easy
Michael Entin
Great post by Somasegar about upcoming language support for async programming: http://blogs.msdn.com/b/somasegar/archive/2010/10/28/making-asynchronous-programming-easy.aspx I guess soon the idea hack of using C# iterators as poor-man's language support (that caused me to start this blog :)) will...
on
30 Oct 2010
Blog Post:
Random() is only random if you are using it right
Michael Entin
I like the quote "With great power comes great responsibility" when used in regards to .NET - .NET gives one great powers, but use it wisely and know how this stuff works. Recently I saw code (it was written by a guy interviewing to our team) that demonstrated interesting problem with incorrect usage...
on
5 Feb 2008
Blog Post:
Functional sort in C#
Michael Entin
On an internal mailing list, we were discussing functional languages, and this Haskell sort code: qsort [] = [] qsort (x:xs) = qsort ( filter ( < x) xs) ++ [x] ++ qsort ( filter ( >= x) xs) While trying to explain how this code works (which is very different from what it looks like to C+...
on
11 Dec 2007
Blog Post:
Don't run SSIS package using SQL/CLR
Michael Entin
A recent commenter suggested running SSIS using SQL/CLR: Just an idea on how to do this that may be a bit easier than any of the methods covered. IF you were to write a CLR procedure which accepts a string as its parameter. The string passed in would be the xml definition of a package (either loaded...
on
24 Aug 2007
Blog Post:
Using C# 2.0 iterators to simplify writing asynchronous code (part 2)
Michael Entin
Previous article describes the idea of using C# 2.0 iterators to write asynchronous code, now it's time to implement the utility class that "runs" the iterator. The utility turns out to be very light, I'm glad some readers reported they've already implemented their own version. Lets list requirements...
on
1 Apr 2006
Blog Post:
Using C# 2.0 iterators to simplify writing asynchronous code
Michael Entin
A neat idea how C# 2.0 iterators can simplify the task of writing code that uses .NET async pattern. I’ve recently attended Jeffrey Richter’s class dedicated to effective threading techniques, and that made me think about using the .NET async pattern. The typical usage of this pattern is the following...
on
30 Mar 2006
Page 1 of 1 (6 items)