User technomalogical - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T08:10:23Zhttp://stackoverflow.com/feeds/user/6173http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784478/create-a-new-tuple-with-one-element-modified0Create a new Tuple with one element modifiedtechnomalogical2009-11-23T16:56:01Z2009-11-23T17:55:22Z
<p>(I am working interactively with a WordprocessingDocument object in IronPython using the OpenXML SDK, but this is really a general Python question that should be applicable across all implementations)</p>
<p>I am trying to scrape out some tables from a number of Word documents. For each table,
I have an iterator that is giving me table row objects. I then use the following generator statement to get a tuple of cells from each row:</p>
<pre><code>for row in rows:
t = tuple([c.InnerText for c in row.Descendants[TableCell]()])
</code></pre>
<p>Each tuple contains 4 elements. Now, in column <code>t[1]</code> for each tuple, I need to apply a regex to the data. I know that tuples are immutable, so I'm happy to either create a new tuple, or build the tuple in a different way. Given that <code>row.Descendants[TableCell]()</code> returns an iterator, what's the most Pythonic (or at least simplest) way to construct a tuple from an iterator where I want to modify the <code>n</code>th element returned?</p>
<p>My brute-force method right now is to create a tuple from the left slice (<code>t[:n-1]</code>), the modified data in <code>t[n]</code> and the right slice (<code>t[n+1:]</code>) but I feel like the <code>itertools</code> module should have something to help me out here.</p>
http://stackoverflow.com/questions/1532488/supporting-multiple-python-versions-in-your-code2Supporting Multiple Python Versions In Your Code?technomalogical2009-10-07T15:48:28Z2009-10-07T16:01:05Z
<p>Today I tried using <a href="http://pybrary.net/pyPdf/" rel="nofollow">pyPdf</a> 1.12 in a script I was writing that targets Python 2.6. When running my script, and even importing pyPdf, I get complaints about deprecated functionality (md5->hashsum, sets). I'd like to contribute a patch to make this work cleanly in 2.6, but I imagine the author does not want to break compatibility for older versions (2.5 and earlier). </p>
<p>Searching Google and Stack Overflow have so far turned up nothing. I feel like I have seen try/except blocks around import statements before that accomplish something similar, but can't find any examples. Is there a generally accepted best practice for supporting multiple Python versions?</p>
http://stackoverflow.com/questions/1490061/classifying-text-based-on-groups-of-keywords2Classifying Text Based on Groups of Keywords?technomalogical2009-09-29T00:54:14Z2009-09-29T04:21:20Z
<p>I have a list of requirements for a software project, assembled from the remains of its predecessor. Each requirement should map to one or more categories. Each of the categories consists of a group of keywords. What I'm trying to do is find an algorithm that would give me a score ranking which of the categories each requirement is likely to fall into. The results would be use as a starting point to further categorize the requirements.</p>
<p>As an example, suppose I have the requirement:</p>
<blockquote>
<p>The system shall apply deposits to a customer's specified account.</p>
</blockquote>
<p>And categories/keywords:</p>
<ol>
<li>Customer Transactions: deposits, deposit, customer, account, accounts</li>
<li>Balance Accounts: account, accounts, debits, credits</li>
<li>Other Category: foo, bar</li>
</ol>
<p>I would want the algorithm to score the requirement highest in category 1, lower in category 2, and not at all in category 3. The scoring mechanism is mostly irrelevant to me, but needs to convey how much more likely category 1 applies than category 2.</p>
<p>I'm new to NLP, so I'm kind of at a loss. I've been reading <em>Natural Language Processing in Python</em> and was hoping to apply some of the concepts, but haven't seen anything that quite fits. I don't think a simple frequency distribution would work, since the text I'm processing is so small (a single sentence.)</p>
http://stackoverflow.com/questions/171835/which-python-book-would-you-recommend-for-a-linux-sysadmin/172330#1723303Answer by technomalogical for Which Python book would you recommend for a Linux Sysadmin?technomalogical2008-10-05T17:32:29Z2009-08-23T12:40:31Z<p>+1 for <a href="http://diveintopython.org" rel="nofollow">Dive into Python</a> and Python in a Nutshell. I also highly recommend effbot's <a href="http://effbot.org/zone/librarybook-index.htm" rel="nofollow">Guide to the Standard Library</a>. You'll probably also want to check out the <a href="http://rads.stackoverflow.com/amzn/click/0596007973" rel="nofollow">Python Cookbook</a> for some good examples of idiomatic Python code. Check out <a href="http://rads.stackoverflow.com/amzn/click/1590593715" rel="nofollow">Foundations of Python Networking</a> to pick up where the SysAdmin book leaves off in terms of network protocols (fyi: all APress books are available as PDFs, which I love)</p>
http://stackoverflow.com/questions/1002337/asp-net-ajax-and-usercontrols-handling-client-side-scripting/1003683#10036831Answer by technomalogical for ASP.NET AJAX and UserControls: handling client side scriptingtechnomalogical2009-06-16T20:07:49Z2009-06-16T20:07:49Z<p>So I ended up taking a hybrid approach to what @DDaviesBrackett suggested. I am registering a function with <code>Page.ClientScript</code>, not as a startup script, but as a ClientScriptBlock. The function uses classes instead of IDs (and thus, <code>ClientID</code>s) to attach to each control. The basic structure is:</p>
<pre><code>if(!Page.ClientScript.IsClientScriptBlockRegistered(Page.GetType(),"scriptkey"))
{
Page.ClientScript.RegisterClientScriptBlock(
Page.GetType(),"scriptkey",script,true);
}
</code></pre>
<p>with the following script:</p>
<pre><code>function bindMultiSelects() {
$('.multiselectclass').multiSelect({
oneOrMoreSelected: '*',
noneSelected: 'Select Item(s)'
});
}
</code></pre>
<p>(using the awesome <a href="http://abeautifulsite.net/notebook/62" rel="nofollow">jQuery MultiSelect plugin</a>)</p>
<p>Again, this works because my Master page creates a <code>page_load</code> method that then calls a method on the content, which then calls <code>bindMultiSelects</code>. Just for my own reference, the <code>page_load</code> and <code>contentPageLoad</code> functions both follow this "plugin" pattern I found <a href="http://encosia.com/2007/11/20/using-pageload-in-both-master-and-content-pages/" rel="nofollow">here</a>:</p>
<pre><code>if(typeof functionname=='function') {
functionname()
}
</code></pre>
http://stackoverflow.com/questions/1002337/asp-net-ajax-and-usercontrols-handling-client-side-scripting1ASP.NET AJAX and UserControls: handling client side scriptingtechnomalogical2009-06-16T15:44:21Z2009-06-16T20:07:49Z
<p>I have a UserControl that I want to include in a page multiple times programatically based on some business rules. Currently the control has a JavaScript function that must be called on the ASP.NET AJAX <code>pageLoad</code> event. </p>
<p>I'm using a pattern where the Master page has a <code>pageLoad</code> function that calls a <code>contentPageLoad</code> function on any ContentTemplate, if the function exists. The ContentTemplate that holds the UserControl in question would then be responsible for calling the appropriate function on the UserControl during this event.</p>
<p>Right now, the JavaScript is inline in the <code>.ascx</code> for the UserControl, but I have a feeling that I'll need to use the <code>Page.ClientScript</code> property to inject it via code behind. My question is: how do I make sure that my function names don't get clobbered, and make sure that the appropriate method gets called for <strong>each</strong> UserControl?</p>
<p>FYI: the code that needs to get executed for each UserControl is a block of jQuery that creates a Multi-Select control from a standard HTML <code><select></code>.</p>
<p><strong>EDIT:</strong> <code>RegisterStartupScript</code> was suggested, but this runs before the DOM is finished loading. Wrapping the function in a jQuery Document.ready() doesn't seem to help. The user control is running inside of an <code>UpdatePanel</code>, so I don't really have a choice about how to call this script.</p>
http://stackoverflow.com/questions/450815/ssrs-cant-conditionally-filter-nil-values-from-xml-data-source2SSRS can't conditionally filter "nil" values from XML Data Source?technomalogical2009-01-16T15:44:48Z2009-06-05T16:44:41Z
<p>I've got a report in SSRS 2008 that is using a web service as one of its data sources. The basic look of the XML returned is</p>
<pre><code><table>
<row>
<column1>data</column1>
<column2 xsi:nil="true" />
<column3>data</column3>
</row>
</table>
</code></pre>
<p>Any tags with the "nil" attribute are showing up as blank on the report. I'd like to replace any blanks with a dash. Since it is a numeric field and zero has meaning in the report, I can't simply change the web service to return zero or an empty string. I've tried to do several kinds of conditional compares to swap them, but they all show up as "#Error" on the report:</p>
<pre><code>=iff(Field!column2.Value Is Nothing, "-", Field!column2.Value)
=iff(IsNothing(Field!column2.Value), "-", Field!column2.Value)
=iff(Field!column2.Value = "", "-", Field!column2.Value)
=iff(CStr(Field!column2.Value) = "", "-", Field!column2.Value)
</code></pre>
<p>Any ideas?</p>
<p><strong>Edit:</strong> It wasn't the check for empty that was failing, it was a nested conditional inside the first IIF. Once removed, I was able to make it work.</p>
http://stackoverflow.com/questions/878413/debugging-a-c-object-initializer4Debugging a C# Object Initializertechnomalogical2009-05-18T15:50:41Z2009-05-18T16:21:25Z
<p>Does anyone have any tips for debugging exceptions in a C# object initializer block? The object initializer syntax is basically all or nothing, which can make it especially difficult to troubleshoot inside of a LINQ query. Short of breaking the object creation out to a separate method, is there anything I can do to see which property setter is throwing an exception?</p>
http://stackoverflow.com/questions/740265/vim-compilation-in-windows/740995#7409951Answer by technomalogical for VIM Compilation in windowstechnomalogical2009-04-11T23:45:58Z2009-04-11T23:45:58Z<p>I don't how to fix your problem myself, but I followed this video tutorial to do exactly what you are trying and it worked like a charm: </p>
<p><a href="http://showmedo.com/videotutorials/video?name=1850010&fromSeriesID=185" rel="nofollow">http://showmedo.com/videotutorials/video?name=1850010&fromSeriesID=185</a>.</p>
http://stackoverflow.com/questions/601236/recommendations-for-python-development-on-a-mac3Recommendations for Python development on a Mac?technomalogical2009-03-02T04:04:06Z2009-03-06T08:39:57Z
<p>I bought a low-end MacBook about a month ago and am finally getting around to configuring it for Python. I've done most of my Python work in Windows up until now, and am finding the choices for OS X a little daunting. It looks like there are at least five options to use for Python development:</p>
<ul>
<li>"Stock" Apple Python</li>
<li>MacPython</li>
<li>Fink</li>
<li>MacPorts</li>
<li>roll-your-own-from-source</li>
</ul>
<p>I'm still primarily developing for 2.5, so the stock Python is fine from a functionality standpoint. What I want to know is: why should I choose one over the other?</p>
<p><strong>Update:</strong>
To clarify, I am looking for a discussion of the various options, not links to the documentation. I've marked this as a Community Wiki question, as I don't feel there is a "correct" answer. Thanks to everyone who has already commented for their insight.</p>
http://stackoverflow.com/questions/576634/pygame-not-receiving-events-when-3-keys-are-pressed-at-the-same-time/579243#5792435Answer by technomalogical for PyGame not receiving events when 3+ keys are pressed at the same time...technomalogical2009-02-23T20:42:15Z2009-02-23T20:42:15Z<p>As others have eluded to already, certain (especially cheaper, lower-end) keyboards have a low quality <a href="http://en.wikipedia.org/wiki/Keyboard_technology#Keyboard_switch_matrix" rel="nofollow">keyboard matrix</a>. With these keyboards, certain key combinations will lead to the behavior you're experiencing. Another common side effect can be "ghost keys," where the an extra key press will appear in the input stream that was not actually pressed.</p>
<p>The only solution (if the problem is related to the keyboard matrix) is to change your key mapping to use keys on different rows/columns of the matrix, or buy a keyboard with a better matrix.</p>
http://stackoverflow.com/questions/561626/import-python-functions-into-a-net-language/562490#5624903Answer by technomalogical for Import python functions into a .NET language?technomalogical2009-02-18T19:32:18Z2009-02-18T19:32:18Z<p>Ironpython 2.0 is CPython 2.5 compatible, so pure Python that uses <=2.5 APIs should work fine under Ironpython. I believe Ironpython code can then be compiled into a DLL.</p>
<p>For C-extensions like Pygame, you might want to take a look at <a href="http://code.google.com/p/ironclad/" rel="nofollow">Ironclad</a>. It's a project to allow for C-extensions to be used within Ironpython. This may also give you the native code bridge you're looking for.</p>
http://stackoverflow.com/questions/553019/python-excel-making-reports/554480#5544801Answer by technomalogical for python excel making reportstechnomalogical2009-02-16T20:41:25Z2009-02-16T20:41:25Z<p>@S.Lott covered most of the bases. You might also consider generating an HTML <code><table></code>. Here's a sample I found with a quick search: <a href="http://www.developer.com/lang/other/print.php/10942_3727616_2" rel="nofollow">Creating Excel Files with Python and Django</a></p>
http://stackoverflow.com/questions/400050/reading-and-running-a-mathematical-expression-in-python/403252#4032521Answer by technomalogical for Reading and running a mathematical expression in Pythontechnomalogical2008-12-31T15:45:28Z2008-12-31T15:45:28Z<p>Don't writing your own parser unless you want to learn how to write a parser. As already mentioned in the comments by @J.F. Sebastian, I would suggest a full-on <a href="http://en.wikipedia.org/wiki/Computer_algebra_system" rel="nofollow">computer algebra system (CAS)</a> like <a href="http://www.sagemath.org/" rel="nofollow">SAGE</a>. It will handle mathematical statements <strong>much</strong> more complicated than 1+1 :)</p>
http://stackoverflow.com/questions/376161/is-there-a-python-library-for-editing-msword-doc-files/379212#3792121Answer by technomalogical for Is there a python library for editing msword doc files?technomalogical2008-12-18T20:48:39Z2008-12-18T20:48:39Z<p>Per <a href="http://stackoverflow.com/questions/376221/programmatic-mail-merge-style-data-injection-into-existing-excel-spreadsheets">this SO post</a>, I found out about <a href="http://jxls.sourceforge.net/" rel="nofollow">jXLS</a>, which uses <a href="http://poi.apache.org/" rel="nofollow">Apache POI</a>. POI has many subcomponents, including HWPF:</p>
<blockquote>
<p>HWPF is our port of the Microsoft Word
97 file format to pure Java. It
supports read, and limited write
capabilities. Please see the HWPF
project page for more information.
This component is in the early stages
of development. It can already read
and write simple files.</p>
</blockquote>
<p>Since this is a Java library, it could be scripted using Jython. I don't know how good the writing capabilities are yet, but please post a comment back if it helps.</p>
http://stackoverflow.com/questions/283447/is-it-possible-to-use-wxpython-inside-ironpython/284800#2848002Answer by technomalogical for Is it possible to use wxPython inside IronPython?technomalogical2008-11-12T18:12:13Z2008-11-12T18:12:13Z<p>While wxPython is unavailable for the reasons listed by @Ali, you may want to take a look at <a href="http://wxnet.sourceforge.net/" rel="nofollow">wx.NET</a>. You could use IronPython to call these assemblies instead, and it should be cross-platform (I'm assuming that's what you're after, or you would just use WinForms). If all you're looking for is API compatibility, I think you're out of luck :(</p>
http://stackoverflow.com/questions/260738/play-audio-with-python/262084#2620842Answer by technomalogical for Play audio with pythontechnomalogical2008-11-04T14:37:24Z2008-11-04T14:37:24Z<p><a href="http://pyglet.org/" rel="nofollow">Pyglet</a> has the ability to play back audio through an external library called <a href="http://code.google.com/p/avbin" rel="nofollow">AVbin</a>. Pyglet is a ctypes wrapper around native system calls on each platform it supports. Unfortunately, I don't think anything in the standard library will play audio back.</p>
http://stackoverflow.com/questions/242059/opengl-with-python/246894#2468943Answer by technomalogical for OpenGl with Pythontechnomalogical2008-10-29T13:58:22Z2008-10-29T13:58:22Z<p>You may also want to consider using <a href="http://www.pyglet.org/" rel="nofollow">Pyglet</a> instead of PyOpenGL. It's a ctypes-wrapper around the native OpenGL libs on the local platform, along with windowing support (should handle most of the stuff you want to use GLUT for.) The <a href="http://groups.google.com/group/pyglet-users" rel="nofollow">pyglet-users</a> list is pretty active and very helpful.</p>
http://stackoverflow.com/questions/245225/need-to-write-an-xls-from-linux-python-jexcelapi-or-apache-poi-hssf/245591#2455911Answer by technomalogical for Need to write an XLS from Linux / Python: jexcelapi or Apache POI HSSF?technomalogical2008-10-29T02:14:27Z2008-10-29T02:14:27Z<p>+1 for xlwt. See Matt Harrison's blog for posts on <a href="http://panela.blog-city.com/pyexcelerator_xlwt_cheatsheet_create_native_excel_from_pu.htm" rel="nofollow">how to use xlwt</a> and <a href="http://panela.blog-city.com/creating_large_excel_spreadsheets_xlwt_in_python.htm" rel="nofollow">how to deal with large spreadsheets</a>. Also, check out the <a href="http://groups.google.com.au/group/python-excel?lnk=li&hl=en" rel="nofollow">python-excel</a> group on Google "If you use Python to read, write or otherwise manipulate Excel files".</p>
http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-per/235068#2350681Answer by technomalogical for What are the biggest differences between Python and Ruby from a philosophical perspectivetechnomalogical2008-10-24T20:00:50Z2008-10-24T20:00:50Z<p>Short answer: Neither. Choose the one that fits your development style better.</p>
<p>Here's why I like Python. I've been using Python casually for 6+ years. It is my go-to tool when I need to prototype an app quickly or script something that I do repeatedly. Python has a great community, both online and off (the c.l.python is pretty friendly, and PyCon is one of the best community conferences I've attended.) The libraries are, for the most part, very mature for just about every domain.</p>
<p>That said, I know very little about Ruby. I've had the last edition of the "pick-axe" Ruby book for some time now and have never gotten around to reading, mostly because Python already does what I need it to do.</p>
http://stackoverflow.com/questions/24193/python-code-generator-for-visual-studio/223387#2233871Answer by technomalogical for Python code generator for Visual Studio?technomalogical2008-10-21T20:30:33Z2008-10-21T20:30:33Z<p>I dug through my old bookmarks (I love Del.icio.us!) and found this article: <a href="http://blogs.acceleration.net/ryan/articles/577.aspx" rel="nofollow">Code Generation with Python, Cog, and Nant</a>. Keep in mind that anything you can do in NAnt can probably be done in MSBuild as well. This should be enough to get you started.</p>
http://stackoverflow.com/questions/220525/ensuring-a-single-instance-of-an-application-in-linux/221993#2219931Answer by technomalogical for Ensuring a single instance of an application in Linuxtechnomalogical2008-10-21T14:03:56Z2008-10-21T14:03:56Z<p>I found this link, which uses <code>fcntl</code> as suggested by others: <a href="http://www.soundc.de/blog/2008/10/21/interprocess-synchronization-in-pythonlinux/" rel="nofollow">Interprocess Synchronization in Python/Linux</a>.</p>
http://stackoverflow.com/questions/214536/python-templates-for-web-designers/215300#2153002Answer by technomalogical for Python templates for web designerstechnomalogical2008-10-18T17:24:16Z2008-10-18T17:24:16Z<p>To add to @Jaime Soriano's comment, <a href="http://genshi.edgewall.org/" rel="nofollow">Genshi</a> is the template engine used in Trac post- 0.11. It's can be used as a generic templating solution, but has a focus on HTML/XHTML. It has automatic escaping for reducing XSS vulnerabilities.</p>
http://stackoverflow.com/questions/213798/would-python-make-a-good-substitute-for-the-windows-command-line-batch-scripts/214287#2142873Answer by technomalogical for Would python make a good substitute for the windows command line/batch scripts?technomalogical2008-10-18T00:45:15Z2008-10-18T00:45:15Z<p>@BKB definitely has a valid concern. Here's a couple links you'll want to check if you run into any issues that can't be solved with the standard library:</p>
<ul>
<li><a href="http://sourceforge.net/projects/pywin32/" rel="nofollow">Pywin32</a> is a package for working with low-level win32 APIs (advanced file system modifications, COM interfaces, etc.)</li>
<li><a href="http://timgolden.me.uk/python/" rel="nofollow">Tim Golden's Python page</a>: he maintains a WMI wrapper package that builds off of Pywin32, but be sure to also check out his <a href="http://timgolden.me.uk/python/win32_how_do_i.html" rel="nofollow">"Win32 How Do I"</a> page for details on how to accomplish typical Windows tasks in Python.</li>
</ul>
http://stackoverflow.com/questions/199180/is-there-any-way-to-get-python-omnicomplete-to-work-with-non-system-modules-in-vi/199636#1996362Answer by technomalogical for Is there any way to get python omnicomplete to work with non-system modules in vim?technomalogical2008-10-14T00:55:19Z2008-10-14T00:55:19Z<p>Just ran across this on Python reddit tonight: <a href="http://orestis.gr/blog/2008/10/13/pysmell-v06-released/" rel="nofollow">PySmell</a>. Looks like what you're looking for.</p>
<blockquote>
<p>PySmell is a python IDE completion helper.</p>
<p>It tries to statically analyze Python source code, without executing it, and generates information about a project’s structure that IDE tools can use. </p>
</blockquote>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/178800#1788001Answer by technomalogical for What is a good PDF report generator tool for python?technomalogical2008-10-07T14:45:49Z2008-10-07T14:45:49Z<p>I would second mmaibaum's suggestion of generating HTML. It, along with CSS, will allow for much better positioning and layout. You can then use an HTML->PDF engine, such as <a href="http://princexml.com/" rel="nofollow">PrinceXML</a> (not free, but the output is amazing... actually there is a free version but it will put a PrinceXML logo on at least one of the pages) or an XML/XHTML->XSL-FO->PDF engine, such as <a href="http://www.re.be/css2xslfo/" rel="nofollow">CSSToXSLFO</a>. This second option offers a bit more flexability, but you'll still need to choose an XSL-FO processor to turn this intermediate output into a PDF. <a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">Fop</a> from the Apache project is a free one, but I can't vouch for how good the output is.</p>
http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/118713#1187138Answer by technomalogical for Iron python, beautiful soup, win32 apptechnomalogical2008-09-23T01:53:58Z2008-09-23T01:53:58Z<p>I've tested and used BeautifulSoup with both IPy 1.1 and 2.0 (forget which beta, but this was a few months back). Leave a comment if you are still having trouble and I'll dig out my test code and post it.</p>
http://stackoverflow.com/questions/118643/is-there-a-way-to-convert-indentation-in-python-code-to-braces/118706#1187066Answer by technomalogical for Is there a way to convert indentation in Python code to braces?technomalogical2008-09-23T01:51:53Z2008-09-23T01:51:53Z<p>Although I am not blind, I have heard good things about <a href="http://emacspeak.sourceforge.net/" rel="nofollow">Emacspeak</a>. They've had a Python mode since their <a href="http://emacspeak.sourceforge.net/releases/release-8.0.html" rel="nofollow">8.0 release</a> in 1998 (they seem to be up to release 28.0!). Definitely worth checking out.</p>
http://stackoverflow.com/questions/1784478/create-a-new-tuple-with-one-element-modified/1784592#1784592Comment by technomalogical on Create a new Tuple with one element modifiedtechnomalogical2009-11-23T18:06:56Z2009-11-23T18:06:56ZThis is why I should always keep a copy of "Python in a Nutshell" on my desk. I had no idea about the enumerate built-in, having never needed it before. While waiting for responses, I concocted a similar construct using itertools.izip and itertools.count. Thanks Alex!http://stackoverflow.com/questions/1784478/create-a-new-tuple-with-one-element-modified/1784549#1784549Comment by technomalogical on Create a new Tuple with one element modifiedtechnomalogical2009-11-23T18:04:09Z2009-11-23T18:04:09ZUnfortunately, the number of columns I'll be working with varies from table to table, so I can't assign each to a concrete variable.http://stackoverflow.com/questions/1532488/supporting-multiple-python-versions-in-your-code/1532524#1532524Comment by technomalogical on Supporting Multiple Python Versions In Your Code?technomalogical2009-10-07T17:28:50Z2009-10-07T17:28:50Z+1, but here's a direct link to the relevant section: <a href="http://diveintopython.org/file_handling/index.html#d0e14344" rel="nofollow">diveintopython.org/file_handling/…</a>http://stackoverflow.com/questions/1490061/classifying-text-based-on-groups-of-keywords/1490499#1490499Comment by technomalogical on Classifying Text Based on Groups of Keywords?technomalogical2009-09-29T14:14:08Z2009-09-29T14:14:08ZYou're both right, and what I'd ideally like to do is normalize tense and plurality in both keywords and sentences. That way, I only list "customer" and not "customers", "deposit" and not "deposits" or "deposited". I think Hamming still runs the risk of under-representation, but I think it's a good first stab at what I'm trying to do.http://stackoverflow.com/questions/1327978/sorting-words-not-lines-in-vim/1328350#1328350Comment by technomalogical on Sorting words (not lines) in VIMtechnomalogical2009-08-25T14:47:26Z2009-08-25T14:47:26ZStill new to some of the language integration into Vim, but does this use compiled-in Python support or use an external executable?http://stackoverflow.com/questions/1327978/sorting-words-not-lines-in-vim/1328421#1328421Comment by technomalogical on Sorting words (not lines) in VIMtechnomalogical2009-08-25T14:44:10Z2009-08-25T14:44:10ZAs @spatz mentioned in the comment for answer from @Al, this sorts the whole line, not a selection on the line.http://stackoverflow.com/questions/171835/which-python-book-would-you-recommend-for-a-linux-sysadmin/172330#172330Comment by technomalogical on Which Python book would you recommend for a Linux Sysadmin?technomalogical2009-08-23T12:41:01Z2009-08-23T12:41:01ZThanks, the link is fixed.http://stackoverflow.com/questions/1268032/marking-duplicate-lines/1268076#1268076Comment by technomalogical on Marking duplicate linestechnomalogical2009-08-13T15:25:49Z2009-08-13T15:25:49ZAny chance we could get some code?http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issuesComment by technomalogical on ASP.Net Master Page and File path issuestechnomalogical2009-08-11T20:13:41Z2009-08-11T20:13:41ZSee my comment below in the accepted answer for caveats when dealing with nested master pages.http://stackoverflow.com/questions/697660/asp-net-master-page-and-file-path-issues/697674#697674Comment by technomalogical on ASP.Net Master Page and File path issuestechnomalogical2009-08-11T20:13:00Z2009-08-11T20:13:00ZFYI, my co-worker and I just tried this out. This doesn't seem to work in a nested master page scenario <i>in the parent master page</i>. Moving it to the child master page, however, did the trick.http://stackoverflow.com/questions/1252691/in-vim-how-can-i-delete-all-lines-in-a-file-except-the-last-100-lines/1252695#1252695Comment by technomalogical on In vim, how can I delete all lines in a file except the last 100 lines?technomalogical2009-08-10T17:51:30Z2009-08-10T17:51:30Zsimple and elegant. I like it!http://stackoverflow.com/questions/1159206/difference-between-vi-vim/1161458#1161458Comment by technomalogical on difference between vi/vim technomalogical2009-07-22T14:39:52Z2009-07-22T14:39:52ZThis answer gets my vote for "best answer that helps one do their own research". I had no idea about the {} notes. Thanks!http://stackoverflow.com/questions/1159206/difference-between-vi-vim/1159259#1159259Comment by technomalogical on difference between vi/vim technomalogical2009-07-22T14:37:28Z2009-07-22T14:37:28Zfileformat.info is your friend:
<a href="http://www.fileformat.info/info/unicode/char/search.htm?q=%E0%B2%A0&preview=entity" rel="nofollow">fileformat.info/info/unicode/…</a>
The character is 'KANNADA LETTER TTHA' (U+0CA0)http://stackoverflow.com/questions/229856/ways-to-save-enums-in-database/229902#229902Comment by technomalogical on Ways to save enums in databasetechnomalogical2009-07-13T14:04:01Z2009-07-13T14:04:01ZI'm using a hybrid approach of your solution and @Ian Boyd's solution with great success. Thanks for the tip!http://stackoverflow.com/questions/1087220/how-to-get-rid-of-empty-blocks-in-vim/1087538#1087538Comment by technomalogical on How to get rid of empty blocks in vimtechnomalogical2009-07-06T20:58:08Z2009-07-06T20:58:08Z+1, great explanation