Mark Cidade

16,150
Reputation
695 views

Registered User

Name Mark Cidade
Member for 1 year
Seen Nov 26 at 15:17
Website
Location Toronto, Canada
Age 32
http://www.marxidad.com/Aboutme

I first learned BASIC at age 11 on a Commodore 64.

Former SDET, ADO.NET Team @ Microsoft.
   
 class Maybe<T> 
  { T t;
    Maybe(){}
    
    public static Maybe<T> Just(T t){ return new Maybe<T>{t=t};}
    
    static Maybe<T> nothing = new Maybe<T>();
    public static Maybe<T> Nothing 
     { get {return nothing;}
     }
    
    public Maybe<U> Select<U>(Func<T,U> f) 
     { return Maybe<U>.Just(f(t));
     }
    
    public Maybe<V> SelectMany<U,V>(Func<T, Maybe<U>> f, Func<U,V> g)
     { var x = f(t);
       if (x == Maybe<U>.Nothing) return Maybe<V>.Nothing;
       return Maybe<V>.Just(g(x.t));
     }
  }

Nov
23
accepted Why do C# and VB have Generics? What benefit do they provide? Generics, FTW
Nov
12
awarded  Enlightened
Nov
12
awarded  Nice Answer
Nov
6
awarded  Good Answer
Oct
28
asked Where do I download the PHP SOAP Extension for Windows?
Oct
27
awarded  Nice Answer
Oct
25
answered Need of interfaces in c#
Oct
24
awarded  Nice Answer
Oct
22
awarded  Nice Answer
Oct
15
awarded  Good Answer
Oct
15
awarded  Popular Question
Oct
2
comment Which programming language is the best for my needs?
Start with PHP and you're ruined for life.
Oct
2
comment Global statements v. variables available throughout a classes
You can still use objects to pass closures between private methods. Those have immutable state. Parallel goodness and all that.
Oct
2
comment Global statements v. variables available throughout a classes
Ideally, you don't use objects at all. OOP is a pragmatic paradigm not an idealistic one, like FP.
Oct
2
awarded  Popular Question
Sep
28
answered Which programming language is the best for my needs?
Sep
28
answered Global statements v. variables available throughout a classes
Sep
28
comment Hidden Features of JavaScript?
@Nathan "f(x,y,z)" looks better than "f([x,y,z])".
Sep
23
awarded  Nice Answer
Sep
22
awarded  Enlightened
Sep
22
accepted What’s your favorite C++0x feature?
Sep
20
comment Modifying Existing .NET Assemblies
This is only for creating new ones. You might be able to load an assembly from disk in a separate AppDomain, though, and then unload the AppDomain and save the new assembly over the old one.
Sep
12
awarded  Popular Question
Sep
1
awarded  Enlightened
Sep
1
awarded  Nice Answer
Aug
31
accepted Examples of usage of Generics in .Net (C#/VB.Net)
Aug
27
accepted Is there an easy way to implement LINQ to object with a DataContext?
Aug
24
awarded  Enlightened
Aug
24
accepted Old style and new style classes in Python
Aug
19
awarded  Enlightened
Aug
19
awarded  Nice Answer
Aug
18
awarded  Yearling
Aug
10
awarded  Enlightened
Aug
6
awarded  Popular Question
Jul
31
awarded  .net
Jul
29
awarded  Great Answer
Jul
25
accepted How do I get the characters for context-shaped input in a complex script?
Jul
24
revised Any Substitute API for Win32API?
edited tags
Jul
23
accepted Programming languages complexity
Jul
23
revised How do I get the characters for context-shaped input in a complex script?
added 120 characters in body; added 9 characters in body
Jul
23
comment How do I get the characters for context-shaped input in a complex script?
I added more information about Uniscribe and why it's not trivial to get the characters (code points) that are shown in the text box. It seems that your only options are use Uniscribe by looking up indexes in font cmaps, or roll your own shaping information engine.
Jul
23
revised How do I get the characters for context-shaped input in a complex script?
added 596 characters in body
Jul
23
comment When should I use out parameters?
The out parameter just saves the caller from having to initialize the variable. The method itself can still just initialize it to null or whatever default value, and return it that way.
Jul
23
revised When should I use out parameters?
added 399 characters in body; deleted 5 characters in body
Jul
23
comment When should I use out parameters?
I changed the names to something that closer resembles real-world code. I can dig up an actual example if this still looks bad.
Jul
23
revised When should I use out parameters?
deleted 29 characters in body
Jul
23
revised How do I get the characters for context-shaped input in a complex script?
edited tags; edited title
Jul
23
answered How do I get the characters for context-shaped input in a complex script?
Jul
23
comment Connection Leak in C# DataBase.ExecuteScalar
What does the ExecuteScalar() method do with the underlying DbConnection object—does it call Dispose() or Close(), e.g., by using a "using" statement?
Jul
23
answered How to use REST to separate model, view and control into two parts