User Justin Walgran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T04:20:42Zhttp://stackoverflow.com/feeds/user/173http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/698/is-there-an-ide-that-provides-code-completion-for-python47Is there an IDE that provides code completion for PythonJustin Walgran2008-08-03T14:22:28Z2009-11-15T20:48:30Z
<p>I am quite fond of the Intellisense code completion baked into Microsoft Visual Studio. I find that I only type 2 to 4 characters of any given keyword which drasticaly speeds up my coding. Now that I have been spending time writing some Python code I find myself reaching for ctrl+space. </p>
<p>Are there any IDEs that support code completion in Python? I do my python development on a Mac so an OS x tool would be preferable. It seems like the doc string property of Python methods is a perfect match for inline API discovery.</p>
http://stackoverflow.com/questions/209429/why-do-i-receive-an-importerror-when-running-one-of-the-cherrypy-tutorials/216440#2164401Answer by Justin Walgran for Why do I receive an ImportError when running one of the CherryPy tutorialsJustin Walgran2008-10-19T13:43:18Z2008-10-19T13:43:18Z<p>I had an old CherryPy-2.3.0-py2.5.egg file in my site-packages. After removing the old .egg I could run the tutorial.</p>
http://stackoverflow.com/questions/209429/why-do-i-receive-an-importerror-when-running-one-of-the-cherrypy-tutorials1Why do I receive an ImportError when running one of the CherryPy tutorialsJustin Walgran2008-10-16T16:58:43Z2008-10-19T13:43:18Z
<p>I have installed CherryPy 3.1.0,. Here is what happens when I try to run tutorial 9:</p>
<pre><code>$ cd /Library/Python/2.5/site-packages/cherrypy/tutorial/
$ python tut09_files.py
Traceback (most recent call last):
File "tut09_files.py", line 48, in <module>
from cherrypy.lib import static
ImportError: cannot import name static
</code></pre>
<p>The previous line in the file:</p>
<pre><code>import cherrypy
</code></pre>
<p>passes without error, so it appears that it can find cherrypy on the path. What am I missing?</p>
http://stackoverflow.com/questions/5263/how-do-you-persist-a-tree-structure-to-a-database-table-with-auto-incrementing-id2How do you persist a tree structure to a database table with auto incrementing IDs using an ADO.NET DataSet and a DataAdapterJustin Walgran2008-08-07T20:23:51Z2008-10-01T11:29:58Z
<p>I have a self-referential Role table that represents a tree structure </p>
<pre><code>ID [INT] AUTO INCREMENT
Name [VARCHAR]
ParentID [INT]
</code></pre>
<p>I am using an ADO.NET DataTable and DataAdapter to load and save values to this table. This works if I only create children of existing rows. If I make a child row, then make a child of that child, then Update, the temporary ID value generated by the DataTable is going into the ParentID column. I have the following data relation set:</p>
<pre><code>dataset.Relations.Add(New DataRelation("RoleToRole",RoleTable.Columns("ID"), RoleTable.Columns("ParentID")))
</code></pre>
<p>And when I make new child rows in the DataTable I call the SetParentRow method</p>
<pre><code>newRow.SetParentRow(parentRow)
</code></pre>
<p>Is there something special I have to do to get the ID generation to propagate recursively when I call Update on the DataAdapter?</p>
http://stackoverflow.com/questions/4849/drag-and-drop-to-a-hosted-browser-control/5284#52841Answer by Justin Walgran for Drag and Drop to a hosted Browser controlJustin Walgran2008-08-07T20:39:07Z2008-08-07T20:39:07Z<p>Take a look at the BrowserPlus project at Yahoo</p>
<p><a href="http://browserplus.yahoo.com/" rel="nofollow">http://browserplus.yahoo.com/</a></p>
<p>It looks like they have built a toolkit so that you don't have to do the gritty work of writing the browser plugin yourself.</p>http://stackoverflow.com/questions/1600/best-way-to-copy-a-database-in-sql-server-2005-8/1617#16175Answer by Justin Walgran for Best way to copy a database in SQL Server 2005/8?Justin Walgran2008-08-04T21:46:01Z2008-08-04T21:46:01Z<p>It is possible to skip the step of creating the empty database. You can create the new database as part of the restore process.</p>
<p>This is actually the easiest and best way I know of to clone a database. You can eliminate errors by scripting the backup and restore process rather than running it through the SQL Server Management Studio</p>
<p>There are two other options you could explore:</p>
<ol>
<li>Detach the database, copy the .mdf file and re-attach.</li>
<li>Use SQL Server Integration Services (SSIS) to copy all the objects over</li>
</ol>
<p>I suggest sticking with backup and restore and automating if necessary.</p>http://stackoverflow.com/questions/705/embedded-database-for-net-that-can-run-off-a-network/737#7375Answer by Justin Walgran for Embedded Database for .net that can run off a networkJustin Walgran2008-08-03T15:48:43Z2008-08-04T13:56:01Z<p>It sounds like ADO/Access is perfect for your needs. It's baked into the MS stack, well seasoned, and multi-user.</p>
<p>You can programatically create a DB like so:</p>
<pre><code>Dim catalog as New ADOX.Catalog<br>Catalog.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\server\path\to\db.mdb")<br></code></pre>
<p>You can then use standard ADO.NET methods to interact with the database.</p>http://stackoverflow.com/questions/1160/use-svn-revision-to-label-build-in-ccnet/1235#12351Answer by Justin Walgran for Use SVN Revision to label build in CCNETJustin Walgran2008-08-04T13:43:54Z2008-08-04T13:43:54Z<p>I have written a NAnt build file that handles parsing SVN information and creating properties. I then use those property values for a variety of build tasks, including setting the label on the build. I use this target combined with the SVN Revision Labeller mentioned by lubos hasko with great results.</p>
<pre><code><target name="svninfo" description="get the svn checkout information"><br> <property name="svn.infotempfile" value="${build.directory}\svninfo.txt" /><br> <exec program="${svn.executable}" output="${svn.infotempfile}"><br> <arg value="info" /><br> </exec><br> <loadfile file="${svn.infotempfile}" property="svn.info" /><br> <delete file="${svn.infotempfile}" /><br><br> <property name="match" value="" /><br><br> <regex pattern="URL: (?'match'.*)" input="${svn.info}" /><br> <property name="svn.info.url" value="${match}"/><br><br> <regex pattern="Repository Root: (?'match'.*)" input="${svn.info}" /><br> <property name="svn.info.repositoryroot" value="${match}"/><br><br> <regex pattern="Revision: (?'match'\d+)" input="${svn.info}" /><br> <property name="svn.info.revision" value="${match}"/><br><br> <regex pattern="Last Changed Author: (?'match'\w+)" input="${svn.info}" /><br> <property name="svn.info.lastchangedauthor" value="${match}"/><br><br> <echo message="URL: ${svn.info.url}" /><br> <echo message="Repository Root: ${svn.info.repositoryroot}" /><br> <echo message="Revision: ${svn.info.revision}" /><br> <echo message="Last Changed Author: ${svn.info.lastchangedauthor}" /><br></target><br></code></pre>http://stackoverflow.com/questions/698/is-there-an-ide-that-provides-code-completion-for-python/743#7433Answer by Justin Walgran for Is there an IDE that provides code completion for PythonJustin Walgran2008-08-03T15:55:54Z2008-08-03T15:55:54Z<p>To be really worthwhile the autocomple should read from your source, not just an API listing. It sounds like both Komodo and the Eclipse plugin do not support that. Is there any option that does?</p>http://stackoverflow.com/questions/237/distributed-source-control-options/617#6174Answer by Justin Walgran for Distributed source control optionsJustin Walgran2008-08-03T04:03:23Z2008-08-03T04:03:23Z<p>The other DVCS I am aware of is <a href="http://bazaar-vcs.org" rel="nofollow">Bazaar</a> The site boasts ease of use and support for all three major OS's</p>http://stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer/616#6162Answer by Justin Walgran for What books would you recommend for a beginning Software Developer?Justin Walgran2008-08-03T03:53:49Z2008-08-03T03:53:49Z<p>Michael Nygard, Deploy It!</p>
<p>This is the only book I have encountered that talks about protecting real world software systems through the use of good software design choices. Software will tear itself open and spill acidic blood all over everything nearby. The sooner you accept this and strive to protect yourself the better. </p>http://stackoverflow.com/questions/313/net-migrations-engine/613#6130Answer by Justin Walgran for .NET Migrations EngineJustin Walgran2008-08-03T03:22:27Z2008-08-03T03:39:16Z<p>It's not from MS, but The <a href="http://Castleproject.org" rel="nofollow" title="Castle Project">Castle Project</a> aims to bring a lot of Rails functionality to the CLR languages. A sub-project of this is a migration engine. I have not used it so I can not recommend it, but it exists. </p>http://stackoverflow.com/questions/588/best-way-to-access-exchange-using-php/611#6113Answer by Justin Walgran for Best way to access Exchange using PHP ?Justin Walgran2008-08-03T03:07:30Z2008-08-03T03:07:30Z<p>I'm not a PHP dev but Google says that PHP 5+ can instantiate COM components. If you can install Outlook on a box you could write a PHP web service around the COM component to handle the requests you need. </p>
<pre><code>$outlook = COM("Outlook.Application")<br></code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/aa193231.aspx" rel="nofollow">Outlook API referance</a></p>