Top-rated recipes by Chui Tey http://code.activestate.com/recipes/users/98139/top/2002-06-25T08:17:18-07:00ActiveState Code RecipesSort a string using numeric order (Python)
2002-06-25T08:17:18-07:00Chui Teyhttp://code.activestate.com/recipes/users/98139/http://code.activestate.com/recipes/135435-sort-a-string-using-numeric-order/
<p style="color: grey">
Python
recipe 135435
by <a href="/recipes/users/98139/">Chui Tey</a>
(<a href="/recipes/tags/search/">search</a>).
</p>
<p>This recipe sorts a list of strings using the numeric order where possible.</p>
Find a file given a search path (Python)
2001-03-09T23:48:58-08:00Chui Teyhttp://code.activestate.com/recipes/users/98139/http://code.activestate.com/recipes/52224-find-a-file-given-a-search-path/
<p style="color: grey">
Python
recipe 52224
by <a href="/recipes/users/98139/">Chui Tey</a>
(<a href="/recipes/tags/sysadmin/">sysadmin</a>).
</p>
<p>Given search paths separated by a separator, find the first file that matches a given specification.</p>
HOW TO DEBUG PYTHON EXTENSIONS ON WINDOWS WITH OPEN SOURCE TOOLS (Python)
2001-10-19T22:08:20-07:00Chui Teyhttp://code.activestate.com/recipes/users/98139/http://code.activestate.com/recipes/82826-how-to-debug-python-extensions-on-windows-with-ope/
<p style="color: grey">
Python
recipe 82826
by <a href="/recipes/users/98139/">Chui Tey</a>
(<a href="/recipes/tags/debugging/">debugging</a>).
</p>
<p>I've decided to sum up my recent experiences on this issue in a short HOWTO
document. There are still things that are unclear to me, like how to set
breakpoints. If something doesn't work or is unclear, please point it out.</p>
Simple templating routine (Tcl)
2001-07-30T16:53:33-07:00Chui Teyhttp://code.activestate.com/recipes/users/98139/http://code.activestate.com/recipes/66450-simple-templating-routine/
<p style="color: grey">
Tcl
recipe 66450
by <a href="/recipes/users/98139/">Chui Tey</a>
(<a href="/recipes/tags/text/">text</a>).
</p>
<p>This routine performs simple text templating using ASP style code embedding. Useful as Wizards for source code generation or generate html.</p>