« More Monad Image Manipulation | Main | Old-Skool Web »

August 11, 2005

Monad Tidbits

  • The 2 Monad webcasts are now available for on-demand viewing. Part 1 and Part 2.
  • Thomas Lee has a sample script collection. He also has a general Monad page and a Monad-y blog.
  • Peter Provost wrote a vim syntax file for Monad.
  • A question that seems to re-occur a lot is "how do I show the possible values of an enum". The answer is:
    [System.Enum]::GetNames([System.Xml.XPath.XPathNodeType])
    However, in current builds there is a bug in Monad where this doesn't work for nested types. In that case, you can do
    [System.Enum]::GetNames([type]::GetType("System.Environment+SpecialFolder"))

Posted by AdamBa at August 11, 2005 10:21 AM

Trackback Pings

TrackBack URL for this entry:
http://proudlyserving.com/cgi-bin/mt-tb.cgi/290

Comments

Linky:
http://www.viveksharma.com/writings/2005/08/11/new-monad-links-and-open-msh-here/

Posted by: Vivek at August 11, 2005 10:02 PM

Thanks for the mention - and the traffic!!

If you, or anyone, wants to submit any Monad script to me, I'll happily post it on
my monad sample scripts page at http://www.reskit/net/monad/samplescripts.htm.

Posted by: Thomas Lee at September 4, 2005 02:17 AM