<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ryan Brady &#187; Microsoft</title>
	<atom:link href="http://www.ryanbrady.org/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryanbrady.org</link>
	<description>Assorted Musings, Mostly About Web and Software Development</description>
	<lastBuildDate>Sun, 18 Apr 2010 00:02:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using IronPython with MOSS 2007</title>
		<link>http://www.ryanbrady.org/2010/04/13/using-ironpython-with-moss-2007/</link>
		<comments>http://www.ryanbrady.org/2010/04/13/using-ironpython-with-moss-2007/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 02:11:22 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.ryanbrady.org/?p=272</guid>
		<description><![CDATA[I&#8217;ve been working on a project that interacts with Microsoft Office SharePoint Server 2007 (MOSS 2007) for the last few months and one of the tools I&#8217;ve been using daily to support my work is IronPython. IronPython has made it easy for me to come up to speed quickly on the MOSS 2007 API but [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a project that interacts with Microsoft Office SharePoint Server 2007 (MOSS 2007) for the last few months and one of the tools I&#8217;ve been using daily to support my work is <a href="http://ironpython.net/">IronPython</a>.  IronPython has made it easy for me to come up to speed quickly on the MOSS 2007 API but what has made my life even easier is the IronPython Console.</p>
<p>*Note: If you have a browser that supports Silverlight, you can <a href="http://ironpython.net/try/">try Python in your browser</a> now.</p>
<p>IronPython ships with a console virtually identical to the stand Python console.  The IronPython console provides me with a constant live connection directly to the API.  It&#8217;s very different and somewhat empowering to transition from the standard workflow in Visual Studio of write code/build/run to something more like a conversation with the code.  I think the term conversation is a very good analogy because it&#8217;s not just looking at classes and methods, it&#8217;s also data and interaction.  It&#8217;s experiencing everything all at once!</p>
<p>Let&#8217;s take a look at what I&#8217;m talking about.  To run these samples, I had <a href="http://ironpython.codeplex.com/releases/view/12482#DownloadId=96606">IronPython 2.6.1</a> installed on a server running Windows Server 2003 and MOSS 2007.</p>
<p>When you first start up the console, you need to reference the Microsoft.SharePoint .dll.  You SharePoint types probably know to find this in either the 12 Hive or the GAC.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> import clr
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> clr.AddReference<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #ff0000;">&quot;Microsoft.SharePoint&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>We need to import the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsite.aspx">SPSite</a> class before we use it too.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> from Microsoft.SharePoint import SPSite</pre></div></div>

<p>Now we can create a connection to a site and open its default <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.aspx">SPWeb</a> object.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> site = SPSite<span style="color: #7a0874; font-weight: bold;">&#40;</span>baseurl<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> web = site.OpenWeb<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> web</pre></div></div>

<p>We can also navigate around the subwebs of a given web by using the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.webs(v=office.12).aspx">Webs</a> property.  You can run into permissions issues though.  Here we try to access the first subweb in the Webs collection.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> web.Webs<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>
Traceback <span style="color: #7a0874; font-weight: bold;">&#40;</span>most recent call <span style="color: #c20cb9; font-weight: bold;">last</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
File <span style="color: #ff0000;">&quot;&quot;</span>, line <span style="color: #000000;">1</span>, <span style="color: #000000; font-weight: bold;">in</span>
SystemError: Access is denied. <span style="color: #7a0874; font-weight: bold;">&#40;</span>Exception from HRESULT: 0x80070005 <span style="color: #7a0874; font-weight: bold;">&#40;</span>E_ACCESSDENI
ED<span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>To get around this error, we can just use the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsite.systemaccount(v=office.12).aspx">SystemAccount</a> token attached to each site.  I really don&#8217;t know the reason behind the design of this API, but you can use one site reference to give you a connection with elevated privileges on another site.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> temp = SPSite<span style="color: #7a0874; font-weight: bold;">&#40;</span>baseurl<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> site = SPSite<span style="color: #7a0874; font-weight: bold;">&#40;</span>baseurl, temp.SystemAccount.UserToken<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> web = base_site.OpenWeb<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Now you can start exploring around and seeing what exits.  When you want to see<br />
what members a given object has, you just use the <a href="http://docs.python.org/library/functions.html#dir">dir()</a> method.  Let&#8217;s take a look at<br />
the first object in the <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.lists(v=office.12).aspx">Lists</a> collection.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> <span style="color: #c20cb9; font-weight: bold;">dir</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>base_web.Lists<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #ff0000;">'AddWorkflowAssociation'</span>, <span style="color: #ff0000;">'AlertTemplate'</span>, <span style="color: #ff0000;">'AllRolesForCurrentUser'</span>, <span style="color: #ff0000;">'AllowCont
entTypes'</span>, <span style="color: #ff0000;">'AllowDeletion'</span>, <span style="color: #ff0000;">'AllowEveryoneViewItems'</span>, <span style="color: #ff0000;">'AllowMultiResponses'</span>, <span style="color: #ff0000;">'Al
lowRssFeeds'</span>, <span style="color: #ff0000;">'AnonymousPermMask'</span>, <span style="color: #ff0000;">'AnonymousPermMask64'</span>, <span style="color: #ff0000;">'Audit'</span>, <span style="color: #ff0000;">'Author'</span>, <span style="color: #ff0000;">'Ba
seTemplate'</span>, <span style="color: #ff0000;">'BaseType'</span>, <span style="color: #ff0000;">'BreakRoleInheritance'</span>, <span style="color: #ff0000;">'CanReceiveEmail'</span>, <span style="color: #ff0000;">'CheckPermis
sions'</span>, <span style="color: #ff0000;">'CheckedOutFiles'</span>, <span style="color: #ff0000;">'ContentTypes'</span>, <span style="color: #ff0000;">'ContentTypesEnabled'</span>, <span style="color: #ff0000;">'Created'</span>, <span style="color: #ff0000;">'Cu
rrentChangeToken'</span>, <span style="color: #ff0000;">'DefaultApprovalWorkflowId'</span>, <span style="color: #ff0000;">'DefaultContentApprovalWorkflowI
d'</span>, <span style="color: #ff0000;">'DefaultItemOpen'</span>, <span style="color: #ff0000;">'DefaultView'</span>, <span style="color: #ff0000;">'DefaultViewUrl'</span>, <span style="color: #ff0000;">'Delete'</span>, <span style="color: #ff0000;">'Description'</span>,
<span style="color: #ff0000;">'Direction'</span>, <span style="color: #ff0000;">'DocumentTemplateUrl'</span>, <span style="color: #ff0000;">'DoesUserHavePermissions'</span>, <span style="color: #ff0000;">'DraftVersionVis
ibility'</span>, <span style="color: #ff0000;">'EffectiveBasePermissions'</span>, <span style="color: #ff0000;">'EffectiveFolderPermissions'</span>, <span style="color: #ff0000;">'EmailAlias'</span>
, <span style="color: #ff0000;">'EmailInsertsFolder'</span>, <span style="color: #ff0000;">'EnableAssignToEmail'</span>, <span style="color: #ff0000;">'EnableAttachments'</span>, <span style="color: #ff0000;">'EnableDeplo
yWithDependentList'</span>, <span style="color: #ff0000;">'EnableDeployingList'</span>, <span style="color: #ff0000;">'EnableFolderCreation'</span>, <span style="color: #ff0000;">'EnableMinor
Versions'</span>, <span style="color: #ff0000;">'EnableModeration'</span>, <span style="color: #ff0000;">'EnableSchemaCaching'</span>, <span style="color: #ff0000;">'EnableSyndication'</span>, <span style="color: #ff0000;">'Enab
leVersioning'</span>, <span style="color: #ff0000;">'EnsurePropsFresh'</span>, <span style="color: #ff0000;">'EnsureRssSettings'</span>, <span style="color: #ff0000;">'Equals'</span>, <span style="color: #ff0000;">'EventReceiver
s'</span>, <span style="color: #ff0000;">'EventSinkAssembly'</span>, <span style="color: #ff0000;">'EventSinkClass'</span>, <span style="color: #ff0000;">'EventSinkData'</span>, <span style="color: #ff0000;">'ExcludeFromTemplate
'</span>, <span style="color: #ff0000;">'Fields'</span>, <span style="color: #ff0000;">'FirstUniqueAncestor'</span>, <span style="color: #ff0000;">'Folders'</span>, <span style="color: #ff0000;">'ForceCheckout'</span>, <span style="color: #ff0000;">'Forms'</span>, <span style="color: #ff0000;">'GetCha
nges'</span>, <span style="color: #ff0000;">'GetContentTypeIdByUrl'</span>, <span style="color: #ff0000;">'GetDefaultViewForContentType'</span>, <span style="color: #ff0000;">'GetDirectChildC
ontentType'</span>, <span style="color: #ff0000;">'GetDistinctFieldValues'</span>, <span style="color: #ff0000;">'GetHashCode'</span>, <span style="color: #ff0000;">'GetItemById'</span>, <span style="color: #ff0000;">'GetItemByU
niqueId'</span>, <span style="color: #ff0000;">'GetItems'</span>, <span style="color: #ff0000;">'GetItemsInFolder'</span>, <span style="color: #ff0000;">'GetPropertiesXmlForUncustomizedViews'</span>
, <span style="color: #ff0000;">'GetType'</span>, <span style="color: #ff0000;">'GetUncustomizedViewByBaseViewId'</span>, <span style="color: #ff0000;">'GetView'</span>, <span style="color: #ff0000;">'HasUniqueRoleAssignm
ents'</span>, <span style="color: #ff0000;">'Hidden'</span>, <span style="color: #ff0000;">'ID'</span>, <span style="color: #ff0000;">'ImageUrl'</span>, <span style="color: #ff0000;">'IrmEnabled'</span>, <span style="color: #ff0000;">'IrmExpire'</span>, <span style="color: #ff0000;">'IrmReject'</span>, <span style="color: #ff0000;">'IsCa
talog'</span>, <span style="color: #ff0000;">'IsContentTypeAllowed'</span>, <span style="color: #ff0000;">'ItemCount'</span>, <span style="color: #ff0000;">'Items'</span>, <span style="color: #ff0000;">'LastItemDeletedDate'</span>, <span style="color: #ff0000;">'La
stItemModifiedDate'</span>, <span style="color: #ff0000;">'Lists'</span>, <span style="color: #ff0000;">'MajorVersionLimit'</span>, <span style="color: #ff0000;">'MajorWithMinorVersionsLimit'</span>
, <span style="color: #ff0000;">'MemberwiseClone'</span>, <span style="color: #ff0000;">'MobileDefaultViewUrl'</span>, <span style="color: #ff0000;">'MultipleDataList'</span>, <span style="color: #ff0000;">'NoCrawl'</span>, <span style="color: #ff0000;">'OnQ
uickLaunch'</span>, <span style="color: #ff0000;">'Ordered'</span>, <span style="color: #ff0000;">'ParentWeb'</span>, <span style="color: #ff0000;">'ParentWebUrl'</span>, <span style="color: #ff0000;">'Permissions'</span>, <span style="color: #ff0000;">'PropertiesX
ml'</span>, <span style="color: #ff0000;">'ReadSecurity'</span>, <span style="color: #ff0000;">'Recycle'</span>, <span style="color: #ff0000;">'ReferenceEquals'</span>, <span style="color: #ff0000;">'RemoveWorkflowAssociation'</span>,
<span style="color: #ff0000;">'RenderAsHtml'</span>, <span style="color: #ff0000;">'RequestAccessEnabled'</span>, <span style="color: #ff0000;">'ResetRoleInheritance'</span>, <span style="color: #ff0000;">'RestrictedTempl
ateList'</span>, <span style="color: #ff0000;">'ReusableAcl'</span>, <span style="color: #ff0000;">'RoleAssignments'</span>, <span style="color: #ff0000;">'RootFolder'</span>, <span style="color: #ff0000;">'SaveAsTemplate'</span>, <span style="color: #ff0000;">'Sch
emaXml'</span>, <span style="color: #ff0000;">'SendToLocationName'</span>, <span style="color: #ff0000;">'SendToLocationUrl'</span>, <span style="color: #ff0000;">'ServerRelativeDocumentTempl
ateUrl'</span>, <span style="color: #ff0000;">'ServerTemplateCanCreateFolders'</span>, <span style="color: #ff0000;">'ServerTemplateCanReceiveEmail'</span>, <span style="color: #ff0000;">'Set
AttributesForPropertiesXML'</span>, <span style="color: #ff0000;">'ShowUser'</span>, <span style="color: #ff0000;">'TemplateFeatureId'</span>, <span style="color: #ff0000;">'Title'</span>, <span style="color: #ff0000;">'ToString
'</span>, <span style="color: #ff0000;">'Update'</span>, <span style="color: #ff0000;">'UpdateWorkflowAssociation'</span>, <span style="color: #ff0000;">'Version'</span>, <span style="color: #ff0000;">'Views'</span>, <span style="color: #ff0000;">'WorkflowAssociati
ons'</span>, <span style="color: #ff0000;">'WriteRssFeed'</span>, <span style="color: #ff0000;">'WriteSecurity'</span>, <span style="color: #ff0000;">'__class__'</span>, <span style="color: #ff0000;">'__delattr__'</span>, <span style="color: #ff0000;">'__doc__'</span>, <span style="color: #ff0000;">'_
_format__'</span>, <span style="color: #ff0000;">'__getattribute__'</span>, <span style="color: #ff0000;">'__hash__'</span>, <span style="color: #ff0000;">'__init__'</span>, <span style="color: #ff0000;">'__new__'</span>, <span style="color: #ff0000;">'__reduce__'</span>,
<span style="color: #ff0000;">'__reduce_ex__'</span>, <span style="color: #ff0000;">'__repr__'</span>, <span style="color: #ff0000;">'__setattr__'</span>, <span style="color: #ff0000;">'__sizeof__'</span>, <span style="color: #ff0000;">'__str__'</span>, <span style="color: #ff0000;">'__subclas
shook__'</span>, <span style="color: #ff0000;">'m_ListAttributesDict'</span>, <span style="color: #ff0000;">'m_Lists'</span>, <span style="color: #ff0000;">'m_Permissions'</span>, <span style="color: #ff0000;">'m_arrListProps'</span>,
<span style="color: #ff0000;">'m_iRow'</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></div></div>

<p>Now this may or may not be readable to you.  Alot of times when there&#8217;s a ton of text to deal with in the console, I&#8217;ll iterate through the methods and print them each on their own line.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">for</span> method <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #c20cb9; font-weight: bold;">dir</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>base_web.Lists<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
...     print method
...
AddWorkflowAssociation
AlertTemplate
AllRolesForCurrentUser
AllowContentTypes
AllowDeletion
AllowEveryoneViewItems
.... <span style="color: #7a0874; font-weight: bold;">&#91;</span>Omitted to save space<span style="color: #7a0874; font-weight: bold;">&#93;</span>
__class__
__delattr__
__doc__
__format__
__getattribute__
__hash__
__init__
__new__
__reduce__
__reduce_ex__
__repr__
__setattr__
__sizeof__
__str__
__subclasshook__
m_ListAttributesDict
m_Lists
m_Permissions
m_arrListProps
m_iRow</pre></div></div>

<p>You can inspect classes too.  You don&#8217;t need an instance.  If you inspect the class you&#8217;ll just need to import the type first.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">for</span> method <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #c20cb9; font-weight: bold;">dir</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>SPListCollection<span style="color: #7a0874; font-weight: bold;">&#41;</span>:
...     print method
...
Traceback <span style="color: #7a0874; font-weight: bold;">&#40;</span>most recent call <span style="color: #c20cb9; font-weight: bold;">last</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>:
NameError: name <span style="color: #ff0000;">'SPListCollection'</span> is not defined
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> from Microsoft.SharePoint import SPListCollection
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> <span style="color: #000000; font-weight: bold;">for</span> method <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #c20cb9; font-weight: bold;">dir</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>SPListCollection<span style="color: #7a0874; font-weight: bold;">&#41;</span>:
...        print method
...
Add
CopyTo
... <span style="color: #7a0874; font-weight: bold;">&#91;</span>Omitted to save space<span style="color: #7a0874; font-weight: bold;">&#93;</span>
__add__
__class__
__delattr__
__doc__
__format__
__getattribute__
__getitem__
__hash__
__init__
__iter__
__len__
__new__
__reduce__
__reduce_ex__
__repr__
__setattr__
__sizeof__
__str__
__subclasshook__</pre></div></div>

<p>If you&#8217;re coming from a C# or VB background, you&#8217;re probably familiar with the &#8220;Using&#8221; block.  Python has something similar to that with the <a href="http://docs.python.org/whatsnew/2.6.html#pep-343-the-with-statement">&#8220;with&#8221; statement</a>.  The with statement is used with <a href="http://docs.python.org/whatsnew/2.6.html#writing-context-managers">ContextManagers</a>.  Many of the .Net framework classes support the ContextManager methods so you can use the with statement.  You can see the <a href="http://docs.python.org/reference/datamodel.html#object.__enter__">__enter__</a> and <a href="http://docs.python.org/reference/datamodel.html#object.__exit__">__exit__</a> methods below that help make this possible.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> <span style="color: #c20cb9; font-weight: bold;">dir</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>SPSite<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #ff0000;">'AddWorkItem'</span>, <span style="color: #ff0000;">'AllWebs'</span>, ...<span style="color: #7a0874; font-weight: bold;">&#91;</span>Omitted <span style="color: #000000; font-weight: bold;">for</span> space<span style="color: #7a0874; font-weight: bold;">&#93;</span>, <span style="color: #ff0000;">'__class__'</span>, <span style="color: #ff0000;">'__delattr__'</span>, <span style="color: #ff0000;">'__doc__'</span>, <span style="color: #ff0000;">'__enter__
'</span>, <span style="color: #ff0000;">'__exit__'</span>, <span style="color: #ff0000;">'__format__'</span>, <span style="color: #ff0000;">'__getattribute__'</span>, <span style="color: #ff0000;">'__hash__'</span>, <span style="color: #ff0000;">'__init__'</span>, <span style="color: #ff0000;">'__new_
_'</span>, <span style="color: #ff0000;">'__reduce__'</span>, <span style="color: #ff0000;">'__reduce_ex__'</span>, <span style="color: #ff0000;">'__repr__'</span>, <span style="color: #ff0000;">'__setattr__'</span>, <span style="color: #ff0000;">'__sizeof__'</span>, <span style="color: #ff0000;">'__s
tr__'</span>, <span style="color: #ff0000;">'__subclasshook__'</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></div></div>

<p>Now we can refactor our earlier sample to use the with statement.  This is something I use more in scripts that reference MOSS 2007, but I thought you may find some uses.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> web = None
<span style="color: #000000; font-weight: bold;">&gt;&gt;&gt;</span> with SPSite<span style="color: #7a0874; font-weight: bold;">&#40;</span>baseurl<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">as</span> temp:
... 	with SPSite<span style="color: #7a0874; font-weight: bold;">&#40;</span>baseurl, temp.SystemAccount.UserToken<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #c20cb9; font-weight: bold;">as</span> site:
...			web = site.OpenWeb<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
...</pre></div></div>

<p>It&#8217;s all pretty basic and the console lends itself well to those who like to explore. I really like this method versus digging around the object browser or Reflector all of the time.  I like the instant feedback when exploring and the ability to see data and not just structure.  I&#8217;ve also successfully used IronPython to create custom event handlers and for some administrative tasks for a 2003 to 2007 upgrade.  I highly recommend you try it if you find yourself having to do any development using the SharePoint API.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2010%2F04%2F13%2Fusing-ironpython-with-moss-2007%2F&amp;title=Using+IronPython+with+MOSS+2007" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2010/04/13/using-ironpython-with-moss-2007/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Microsoft Virtual PC 2007: FAIL!</title>
		<link>http://www.ryanbrady.org/2009/02/18/microsoft-virtual-pc-2007-fail/</link>
		<comments>http://www.ryanbrady.org/2009/02/18/microsoft-virtual-pc-2007-fail/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 18:32:25 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.ryanbrady.org/?p=192</guid>
		<description><![CDATA[Yesterday I had a need to create a virtual image of Windows XP Pro to do some testing against a USB device.  I downloaded and installed Virtual PC 2007 and created a guest running XP Pro.  I plugged in the USB device and nothing happened.  After a quick web search I was able to confirm [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I had a need to create a virtual image of Windows XP Pro to do some testing against a USB device.  I downloaded and installed Virtual PC 2007 and created a guest running XP Pro.  I plugged in the USB device and nothing happened.  After a quick web search I was able to confirm that Virtual PC has no USB support.</p>
<p>I then downloaded the trial of VMWare Workstation.  Installing XP Pro was a much easier, simple and faster experience than installing it in Virtual PC.  USB support is built in and very intuitive.</p>
<p>Does anyone know if Microsoft is still working to innovate with Virtual PC or have they conceeded to VMWare?  I know which one I&#8217;m using from now on&#8230;.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2009%2F02%2F18%2Fmicrosoft-virtual-pc-2007-fail%2F&amp;title=Microsoft+Virtual+PC+2007%3A+FAIL%21" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2009/02/18/microsoft-virtual-pc-2007-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging IronPython In Visual Studio</title>
		<link>http://www.ryanbrady.org/2008/12/30/debugging-ironpython-in-visual-studio/</link>
		<comments>http://www.ryanbrady.org/2008/12/30/debugging-ironpython-in-visual-studio/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 00:28:48 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[iron python]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://www.ryanbrady.org/?p=146</guid>
		<description><![CDATA[I&#8217;ve been getting to know IronPython a little lately and one of the first things I wanted to know was how to debug IronPython in an IDE.  Since I use Visual Studio 2008 at work, I thought it would be a good start.  I searched Google and found a text representation of the steps involved [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been getting to know IronPython a little lately and one of the first things I wanted to know was how to debug IronPython in an IDE.  Since I use Visual Studio 2008 at work, I thought it would be a good start.  I searched Google and found a text representation of the steps involved over at <a href="http://devhawk.net/2008/05/08/Debugging+IronPython+Code+In+Visual+Studio.aspx" target="_blank">Harry Pierson&#8217;s</a> blog.</p>
<p>I found it pretty simple to do and somewhat useful for longer scripts.  It will be nice in the future to have first class support for IronPython in Visual Studio 2010.</p>
<p>You should have IronPython 2.0 Final and Visual Studio 2008 Professional or Better* installed to complete this demo.</p>
<p>Create a python file to debug:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#debug.py</span>
<span style="color: #ff7700;font-weight:bold;">class</span> Foo:
<span style="color: #ff7700;font-weight:bold;">def</span> <span style="color: #0000cd;">__init__</span><span style="color: black;">&#40;</span><span style="color: #008000;">self</span>, name=<span style="color: #008000;">None</span><span style="color: black;">&#41;</span>:
    <span style="color: #008000;">self</span>.<span style="color: black;">name</span> = name
&nbsp;
<span style="color: #ff7700;font-weight:bold;">if</span> __name__ == <span style="color: #483d8b;">&quot;__main__&quot;</span>:
    f = Foo<span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;LVS&quot;</span><span style="color: black;">&#41;</span>
    <span style="color: #ff7700;font-weight:bold;">print</span> f.<span style="color: black;">name</span></pre></td></tr></table></div>

<p>From Visual Studio, open the IronPython executable (ipy.exe).  If it doesn&#8217;t do so for you, add the ipy.exe as an existing project.</p>
<p>From the Solution Explorer, right-click on Properties and set the Command Arguments property.  Use “-D” to tell ipy.exe to create debugging output, “-i” to start an interactive session at the end of debugging and add the full path to the script you made before.</p>
<div id="attachment_155" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/properties.jpg"><img class="size-medium wp-image-155" title="Properties" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/properties-300x204.jpg" alt="Properties Dialog" width="300" height="204" /></a><p class="wp-caption-text">Properties Dialog</p></div>
<p>Click Ok.</p>
<p>Open the script you created earlier in Visual Studio and place breakpoints as desired.</p>
<div id="attachment_156" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/breakpoint.jpg"><img class="size-medium wp-image-156" title="Breakpoint" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/breakpoint-300x179.jpg" alt="Adding a Breakpoint" width="300" height="179" /></a><p class="wp-caption-text">Adding a Breakpoint</p></div>
<p>Run the script in debug mode (F5).</p>
<p><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/run.jpg"><img class="alignnone size-medium wp-image-157" title="Running (F5)" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/run-300x179.jpg" alt="" width="300" height="179" /></a></p>
<p>If you added the “-i” argument in step 3, after the last breakpoint is released it will launch an interactive session for you.  You will be able to inspect your script at this point, much like the immediate window in Visual Studio.</p>
<div id="attachment_158" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ryanbrady.org/wp-content/uploads/2008/12/console.jpg"><img class="size-medium wp-image-158" title="Console" src="http://www.ryanbrady.org/wp-content/uploads/2008/12/console-300x150.jpg" alt="Interactive Console" width="300" height="150" /></a><p class="wp-caption-text">Interactive Console</p></div>
<p>* I tried this in the Visual Studio 2008 Team Developer Edition and the Visual Studio Express Edition.  The Express Editions do not work as they don&#8217;t allow you to open the ipy.exe as a solution item.  Sorry &#8220;hobbyists&#8221;, we&#8217;ll see if the Express sku&#8217;s of Visual Studio 2010 will target IronPython / IronRuby.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F12%2F30%2Fdebugging-ironpython-in-visual-studio%2F&amp;title=Debugging+IronPython+In+Visual+Studio" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2008/12/30/debugging-ironpython-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Designing An Intranet With Sharepoint [External Reference]</title>
		<link>http://www.ryanbrady.org/2008/09/19/designing-an-intranet-with-sharepoint-external-reference/</link>
		<comments>http://www.ryanbrady.org/2008/09/19/designing-an-intranet-with-sharepoint-external-reference/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 23:41:00 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.ryanbrady.org/?p=118</guid>
		<description><![CDATA[A collegue (really a mentor) of mine knows Sharepoint like nobody&#8217;s business and she posted an interesting article this week about when moving to Sharepoint, there is a shift in the mindset how you look at and classify information.  It&#8217;s a quick point with a list of good references and I think it&#8217;s a good [...]]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://shareesblog.com">collegue</a> (really a mentor) of mine knows Sharepoint like nobody&#8217;s business and she posted an <a href="http://www.shareesblog.com/?p=208" target="_blank">interesting article</a> this week about when moving to Sharepoint, there is a shift in the mindset how you look at and classify information.  It&#8217;s a quick point with a list of good references and I think it&#8217;s a good primer before jumping into Sharepoint.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2008%2F09%2F19%2Fdesigning-an-intranet-with-sharepoint-external-reference%2F&amp;title=Designing+An+Intranet+With+Sharepoint+%5BExternal+Reference%5D" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2008/09/19/designing-an-intranet-with-sharepoint-external-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying out Sinatra on Windows</title>
		<link>http://www.ryanbrady.org/2007/11/09/trying-out-sinatra-on-windows-and-linux/</link>
		<comments>http://www.ryanbrady.org/2007/11/09/trying-out-sinatra-on-windows-and-linux/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 00:32:50 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=61</guid>
		<description><![CDATA[I saw a lot of buzz about the new Sinatra web framework and decided I&#8217;d give it a try. I have a client now that has a simple site they need up now and then I can migrate them to Rails over time. When I saw how easy Sinatra looked, I thought I could give [...]]]></description>
			<content:encoded><![CDATA[<p>I saw a lot of buzz about the new <a href="http://sinatra.rubyforge.org/" title="Sinatra" target="_blank">Sinatra </a>web framework and decided I&#8217;d give it a try.  I have a client now that has a simple site they need up now and then I can migrate them to <a href="http://www.rubyonrails.org" title="Ruby On Rails" target="_blank">Rails</a> over time.  When I saw how easy Sinatra looked, I thought I could give it a chance to see what it could do.</p>
<p>I installed Sinatra via <a href="http://rubyforge.org/projects/rubygems/" title="RubyGems" target="_blank">RubyGems</a>:<br />
<code>gem install sinatra -y</code></p>
<p>After that I created a simple file following the example:<br />
<code><br />
require 'rubygems'<br />
require 'sinatra'</code><br />
<code><br />
get '/' do<br />
"Now we're cooking with gas"<br />
end</code></p>
<p>But much to my dismay, nothing happened when running this on my windows box.  I instantly searched Google for &#8220;Sinatra on windows&#8221; and found the <a href="http://groups.google.com/group/sinatrarb?hl=en" title="Sinatra Group" target="_blank">Google Group for Sinatra</a> and a post explaining that Sinatra doesn&#8217;t run on Windows yet.  As I read into the thread, I found someone had some suggestions for making it work.</p>
<p>John Bledsoe had the following suggestions:</p>
<p><em>My humble suggestion would be to remove the FileUtils#touch from<br />
Sinatra::Server#tail and update Environment#prepare_loggers to<br />
something like:</em></p>
<p><code>def prepare_loggers(logger = nil)<br />
if logger.nil?<br />
FileUtils.touch(Options.log_file)<br />
logger = Logger.new(open(Options.log_file, 'w')<br />
end<br />
end</code></p>
<p>Making these changes allowed Sinatra to run, but it wouldn&#8217;t server the page.  Instead it returned an error:</p>
<p>Fri Nov 09 16:26:26 -0800 2007: ERROR: undefined method `info&#8217; for nil:NilClass</p>
<p>I made a post to the group and was promptly replied to!  The  general advice given is that it is a rapidly emerging framework undergoing a lot of changes and to check back soon.</p>
<p>More on testing Sinatra in Linux coming soon&#8230;.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F11%2F09%2Ftrying-out-sinatra-on-windows-and-linux%2F&amp;title=Trying+out+Sinatra+on+Windows" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/11/09/trying-out-sinatra-on-windows-and-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>EWeek attacks MSFT Open Source Initiatives</title>
		<link>http://www.ryanbrady.org/2007/08/27/eweek-attacks-msft-open-source-initiatives/</link>
		<comments>http://www.ryanbrady.org/2007/08/27/eweek-attacks-msft-open-source-initiatives/#comments</comments>
		<pubDate>Mon, 27 Aug 2007 19:11:12 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=52</guid>
		<description><![CDATA[I just read an article at EWeek, and I can&#8217;t emphatically disagree more with the writer&#8217;s statements. While it is true that there aren&#8217;t many products coming out of Redmond as true open source these days, the writer bases his assumptions on the top five projects at CodePlex. CodePlex is not the only place to [...]]]></description>
			<content:encoded><![CDATA[<p>I just read an article at <a href="http://www.eweek.com/article2/0,1895,2174730,00.asp" target="_blank">EWeek</a>, and I can&#8217;t emphatically disagree more with the writer&#8217;s statements.</p>
<p>While it is true that there aren&#8217;t many products coming out of Redmond as true open source these days, the writer bases his assumptions on the top five projects at CodePlex.  CodePlex is not the only place to find open source projects!</p>
<p>The writer goes on to bash a few projects as too ambitious or already done some time ago in another technology.</p>
<p>&#8220;<em>Number four is <a href="http://www.eweek.com/slideshow_viewer/0,1205,l=&amp;s=25947&amp;a=213883&amp;po=4,00.asp">BlogEngine.NET.</a> Guess what? It&#8217;s a simple blog back-end written in .Net. Wow. Let me see, if I do a search on <a href="http://sourceforge.net/" target="_blank">SourceForge,</a> a real open-source site, on blog and engine, I find 5,633 results. Oh yeah, I see a big demand out there for another blogging platform.</em>&#8221;</p>
<p>Then he makes this statement:</p>
<p>&#8220;<em>But, let&#8217;s assume that Microsoft really wanted to be open-source friendly. How about instead of flapping your lips, you release some code under your b.s. community licenses that&#8217;s actually not built from Microsoft proprietary parts, trashy example code, or is just a pointless &#8220;me too&#8221; project.</em>&#8221;</p>
<p>So I must not get his point.  The language and platform must also be open for the project to be considered open source?  And if I want something to run on a Windows Server so it will be easier to support next to the other apps I have running on Windows, with a support team that knows Windows (and not enough Linux to support production environments), and I use a version of a product that was built in C# and ASP.Net that includes the source code and a license that says I may modify and distribute such source code &#8211; that&#8217;s not open source enough?</p>
<p>I realize the writer has a background working in Linux and Unix environments for some big organizations, but I&#8217;m surprised he could have overlooked SubSonic, SubText, DasBlog, NAnt, NCover, NHibernate, Gentle.Net, CoolStorage.Net, ProMesh.Net, MonoRail, NChart, PostSharp, AspectSharp, .Text, NGallery, .NETZ, mojoPortal, Rainbow, log4Net, NLog, Logger.Net, SharpPDF, PDFSharp, Report.Net, SharpSSH, Lucene.Net, DotLucene, CommerStarterKit / dashCommerce, ETC, ETC ETC.  I could literally list out a huge amount of projects with active or recent development and a decent following.</p>
<p>I think plenty of people are doing open source development using Microsoft&#8217;s platform and tools.  Not all large proprietary software companies release [some/any] code under an open source license &#8211; Microsoft&#8217;s not the only one.</p>
<p>I&#8217;m very open to the promise of open source and developing in non-microsoft technologies and yet I don&#8217;t expect Microsoft to give me code.  I don&#8217;t expect Microsoft to give me anything.  If I want something for free, I go <a href="http://www.ubuntu.org">here</a>.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F08%2F27%2Feweek-attacks-msft-open-source-initiatives%2F&amp;title=EWeek+attacks+MSFT+Open+Source+Initiatives" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/08/27/eweek-attacks-msft-open-source-initiatives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Error Messages</title>
		<link>http://www.ryanbrady.org/2007/07/11/useful-error-messages/</link>
		<comments>http://www.ryanbrady.org/2007/07/11/useful-error-messages/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 16:43:05 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=48</guid>
		<description><![CDATA[Here is some output today from the command line on Windows XP. I&#8217;m not going to add a lot of commentary here, but I thought this was a little ironic / funny. U:\&#62;net -help The syntax of this command is: NET [ ACCOUNTS &#124; COMPUTER &#124; CONFIG &#124; CONTINUE &#124; FILE &#124; GROUP &#124; HELP [...]]]></description>
			<content:encoded><![CDATA[<p>Here is some output today from the command line on Windows XP.  I&#8217;m not going to add a lot of commentary here, but I thought this was a little ironic / funny.<br />
U:\&gt;net -help<br />
The syntax of this command is:</p>
<p>NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |<br />
HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |<br />
SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]</p>
<p>U:\&gt;net send -help<br />
Sending files is no longer supported.</p>
<p>More help is available by typing NET HELPMSG 3777.</p>
<p>U:\&gt;net helpmsg 3777</p>
<p>Sending files is no longer supported.</p>
<p><em><br />
Thank you.  I love redundant messages.</em></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F07%2F11%2Fuseful-error-messages%2F&amp;title=Useful+Error+Messages" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/07/11/useful-error-messages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stats Check</title>
		<link>http://www.ryanbrady.org/2007/06/30/stats-check/</link>
		<comments>http://www.ryanbrady.org/2007/06/30/stats-check/#comments</comments>
		<pubDate>Sat, 30 Jun 2007 22:57:00 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=44</guid>
		<description><![CDATA[I don&#8217;t have a lot of really technical content on this blog as of yet and have a whopping 2 subscribers according to feed burner. In the blogsphere, I am nobody. Now I do watch my stats and I have found it interesting that someone from Microsoft has been reading this blog. I&#8217;m a decent [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t have a lot of really technical content on this blog as of yet and have a whopping 2 subscribers according to feed burner.  In the blogsphere, I am nobody.  Now I do watch my stats and I have found it interesting that someone from <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=207.46.92.18" target="_blank">Microsoft</a> has been reading this blog.  I&#8217;m a decent software developer, but I&#8217;m not at the level of a Microsoft developer (yet).   I suspect it has to do with the fact that I have ranted slightly at Microsoft&#8217;s actions lately.  I&#8217;m not getting a hit here or there.  I&#8217;m talking about 11:30 P.M. on a Friday night and going through every page and every category.  It doesn&#8217;t look like a bot, those usually show up in my stats in a sequential manner.</p>
<p>So I&#8217;m curious as to why someone at Microsoft would be checking out my blog.  Since I&#8217;m obviously not some genius developer with tons of information to share, my only guess is that either someone on the night shift up there likes surfing through random and boring sludge like my blog. Another scenario could be someone working overtime for the legal department is trying to find anything picturing Microsoft in a bad light and they hit either my post about disliking Vista, or  my post disagreeing with Microsoft&#8217;s tactics in dealing with a developer that increases the value in their product(s).</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F06%2F30%2Fstats-check%2F&amp;title=Stats+Check" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/06/30/stats-check/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jim Losi Nominated for MVP</title>
		<link>http://www.ryanbrady.org/2007/04/12/jim-losi-nominated-for-mvp/</link>
		<comments>http://www.ryanbrady.org/2007/04/12/jim-losi-nominated-for-mvp/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 17:27:40 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Blogs I Read]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=36</guid>
		<description><![CDATA[Jim Losi, Visual Developer &#8211; Visual C# MVP Candidate 2007 For both new and experienced developers, Jim Losi has been a tremendous resource for guidance and assistance within the .Net community. Jim has assisted me personally via forum post, a code sample, a note of confidence, debugging a project, or contributing a library when needed. [...]]]></description>
			<content:encoded><![CDATA[<p>Jim Losi, Visual Developer &#8211; Visual C# MVP Candidate 2007</p>
<p>For both new and experienced developers, Jim Losi has been a tremendous resource for guidance and assistance within the .Net community. Jim has assisted me personally via forum post, a code sample, a note of confidence, debugging a project, or contributing a library when needed. I have witnessed Jim help countless others on the LearnVisualStudio.Net forums as well in the same manner. Jim lives on the other side of the country from me and as such I am surprised to be able to get a hold of him in the late hours of the night and the early hours of the morning.</p>
<p>Jim remains steadfast in his dedication to ensure that those who ask him questions understand the answers and he encourages those individuals to continue the cycle and help each other. Jim consistently assists others in a professional and friendly manner and demonstrates a level of commitment to others rarely seen within the .Net community.</p>
<p>Jim has worked very hard to help many of us out in the community and has never asked for anything in return. He is a colleague, a mentor, and an example for the community at large. Jim Losi is the ideal candidate for Visual Developer &#8211; Visual C# MVP.</p>
<p>Jim Losi has been a great influence to me in the last year and a half and &#8216;m really hoping Microsoft recognizes him this year for all of his hard work.  If you have a testimonial for Jim as well, please forward it to me and I&#8217;ll make sure it makes its way to Microsoft by way of Bob Tabor / LearnVisualStudio.Net.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F04%2F12%2Fjim-losi-nominated-for-mvp%2F&amp;title=Jim+Losi+Nominated+for+MVP" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/04/12/jim-losi-nominated-for-mvp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enter Vista</title>
		<link>http://www.ryanbrady.org/2007/02/10/enter-vista/</link>
		<comments>http://www.ryanbrady.org/2007/02/10/enter-vista/#comments</comments>
		<pubDate>Sun, 11 Feb 2007 03:00:27 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.oneinspired.com/?p=23</guid>
		<description><![CDATA[I was able to fix one of the machines!  It was a simple problem.  Apparently PCI-E video cards require XP SP2 or better.  I did not have a slipstreamed XP disk and instead of making one, I just decided to install that copy of Vista I received from PowerTogether.com. There are a few things I [...]]]></description>
			<content:encoded><![CDATA[<p>I was able to fix one of the machines!  It was a simple problem.  Apparently PCI-E video cards require XP SP2 or better.  I did not have a slipstreamed XP disk and instead of making one, I just decided to install that copy of Vista I received from PowerTogether.com.</p>
<p>There are a few things I like thus far and several I do not.  But it&#8217;s not fair to judge after 48 hours.  I&#8217;ll give it some time and get back to you.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.ryanbrady.org%2F2007%2F02%2F10%2Fenter-vista%2F&amp;title=Enter+Vista" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.ryanbrady.org/2007/02/10/enter-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
