User Jim Carroll - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T19:54:21Zhttp://stackoverflow.com/feeds/user/35922http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1744675/how-can-i-use-turbogears2-auth-with-pyamf0How can I use TurboGears2 auth with PyAMF?Jim Carroll2009-11-16T20:33:08Z2009-11-24T18:08:35Z
<p>I'm using TurboGears with PyAMF behind a Flex client, and everything works well. </p>
<p>What I want to do is expose just a AMF login method to the world, and only allow access to other AMF functions once the user has logged in. </p>
<p>Also, once the user is known, I'd like the protected AMF methods to get the username from the auth information, so not every function has to start with the user_id.</p>
<p>Is there support for this sort of integration out there anywhere? </p>
http://stackoverflow.com/questions/1569845/actionscript-3-font-embedding/1772989#17729890Answer by Jim Carroll for ActionScript 3 & font embeddingJim Carroll2009-11-20T20:16:17Z2009-11-20T20:16:17Z<p>I use the system fonts, and avoid the embedded ones like Arial.</p>
<pre><code> public function get availableFonts(): Array
{
var font: Font = null;
var allFonts: Array = Font.enumerateFonts(true).sortOn("fontName", Array.CASEINSENSITIVE);
var embeddedFonts: Array = Font.enumerateFonts(false);
var excludeList: Object = {}
for each(font in embeddedFonts)
{
excludeList[font.fontName] = '';
}
var ourFonts: Array = [];
for each(font in allFonts)
{
if (!excludeList.hasOwnProperty(font.fontName))
{
ourFonts.push(font);
}
}
return ourFonts;
}
</code></pre>
<p>The list of fonts that this returns are going to have all their letters.</p>
<p>(wouldn't it be nice if ActionScript had some easier way of doing set difference built in?)</p>
http://stackoverflow.com/questions/1324691/extracting-spot-color-equivalents-from-tiff0Extracting Spot Color equivalents from TIFFJim Carroll2009-08-24T20:49:07Z2009-11-17T21:14:05Z
<p>I'm trying to get the Spot color information from a TIFF file, it normally shows up under 'channels' in Photoshop. Each extra channel would have a name, which is usually a Pantone swatch name, and a CMYK equivalent.</p>
<p>So far, I'm getting the TIFFTAG_PHOTOSHOP with libtiff, and stepping through the blocks within. I'm finding the IRB WORD 0x03EE, which gives me the channel names, and IRB WORD 0x03EF which gives me their color equivalents... </p>
<p>BUT the color equivalents are in <a href="http://dba.med.sc.edu/price/irf/Adobe%5Ftg/models/cielab.html" rel="nofollow">CIELab</a> format (Luminance, and two axis of color space data) so I'm trying to use <a href="http://www.littlecms.com/" rel="nofollow">littleCMS</a> to convert just a few TIFF packed Lab color to CMYK.</p>
<p>My question: Is there an easier way? The CMYK is just an approximation of the Pantone, so if there was a quick rough translation from Lab to CMYK, I would use it.</p>
http://stackoverflow.com/questions/1324691/extracting-spot-color-equivalents-from-tiff/1751837#17518370Answer by Jim Carroll for Extracting Spot Color equivalents from TIFFJim Carroll2009-11-17T21:14:05Z2009-11-17T21:14:05Z<p>The answer was to use the photoshop docs to parse out the binary photoshop block in the tiff file and grab the fields I needed with bit manipulation.</p>
<p>littleCMS did the job of LAB -> CMYK just right.</p>
http://stackoverflow.com/questions/370340/in-sql-or-django-orm-whats-the-conventional-way-to-have-an-ordered-one-to-many3in SQL, or Django ORM, what's the conventional way to have an ordered one-to-many?Jim Carroll2008-12-16T02:50:06Z2009-10-28T21:57:10Z
<p>Say I wanted to have a project, and one-to-many with to-do items, and wanted to re-order the to-do items arbitrarily? </p>
<p>In the past, I've added a numbered order field, and when someone wants to change the order, had to update all the items with their new order numbers. This is probably the worst approach, since it's not atomic & required several updates.</p>
<p>I notice Django has a multi-valued CommaSeparatedIntegerField which could contain the order by storing the ordered keys to the items in the to-do items table right in one field of the project table.</p>
<p>I've pondered a dewey decimal system where if I wanted to take item 3 and put it between 1 and 2 I would change it's order number to 1.5.</p>
<p>Something tells me there's an easier option that I'm missing though...</p>
<p>How would you give order to a one-to-many relationship?</p>
http://stackoverflow.com/questions/1257894/wxwindows-vs-gtk-for-cross-platform-gui-programming/1257995#12579956Answer by Jim Carroll for wxWindows vs. Gtk for Cross Platform GUI ProgrammingJim Carroll2009-08-11T00:55:37Z2009-08-11T00:55:37Z<p>wxWidgets has some beautiful elegance under the hood... like the ability to show HTML content from inside zip files. The virtual list widget lets you show huge lists of things, and incrementally fetch the things as they come into view. The same list also lets you subclass and provide your own background renderers for each item in the list. </p>
<p>There's a good following of programmers, and widget repositories like <a href="http://wxcode.sourceforge.net/index.php" rel="nofollow">http://wxcode.sourceforge.net/index.php</a> I'm currently benefiting greatly from the wxPdfDocument code.</p>
<p>wxWidgets will give you a better result on Mac... and overall I have found that the more I use wxWidgets, the more confidence I have that it will never let me down. wxPython is really a gem of a project too, which lets you do the high level parts of your app in a high level language.</p>
http://stackoverflow.com/questions/1048362/iphone-nsarray-from-dictionary-of-dictionary-values/1048957#10489570Answer by Jim Carroll for iPhone NSArray from Dictionary of Dictionary valuesJim Carroll2009-06-26T12:50:42Z2009-06-26T12:50:42Z<p>Drew's got the answer... I found that the <a href="http://www.gnustep.org/resources/documentation/Developer/Base/Reference/NSDictionary.html" rel="nofollow">GCC manual for the NSDictionary</a> was helpful in a bare-bones way the other day when I had a similar question.</p>
<p><a href="http://www.gnustep.org/resources/documentation/Developer/Base/Reference/NSDictionary.html" rel="nofollow">http://www.gnustep.org/resources/documentation/Developer/Base/Reference/NSDictionary.html</a></p>
http://stackoverflow.com/questions/1034052/encoding-h-264-video-or-similar-on-the-iphone-directly0encoding H.264 video (or similar) on the iPhone directly?Jim Carroll2009-06-23T17:41:48Z2009-06-24T14:32:08Z
<p>What's the best way to <em>encode</em> video (with audio) on the iPhone? It looks like QTKit isn't available... so I might have to link with ffmpeg, but ffmpeg doesn't look like it encodes H.264 (judging from their home page.)</p>
<p>If it is possible, I'm also curious how fast I can expect it to perform on the ARM. I imagine it might take minutes to encode a 20sec movie. </p>
http://stackoverflow.com/questions/879511/wxpython-execute-command-asynchronously-display-stdout-in-text-widget/1035367#10353670Answer by Jim Carroll for wxPython: execute command asynchronously, display stdout in text widgetJim Carroll2009-06-23T21:32:16Z2009-06-23T21:32:16Z<p>Bryan, try something like this:</p>
<pre><code>import subprocess, sys
def doit(cmd):
#print cmd
out = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True).stdout
return out.read()
</code></pre>
<p>So when the button is pressed, the command gets run using the subprocess module, and you get the output as a string. You can assign it to a Text Control's value to show it. You might have to out.readfully() or read multiple times to show text progressively.</p>
<p>If the button & text field aren't familiar, then a quick look at the <a href="http://www.wxpython.org/download.php#demo" rel="nofollow">wxPython demo</a> will show you exactly what to do.</p>
http://stackoverflow.com/questions/1034190/wxpython-how-to-search-for-text-in-a-textctrl/1035328#10353280Answer by Jim Carroll for wxPython: how to search for text in a TextCtrl?Jim Carroll2009-06-23T21:23:21Z2009-06-23T21:23:21Z<p>You could try the SCiTE widget... it should blow Tk's text widget out of the water. It's integrated into <a href="http://wxpython.org/docs/api/wx.stc.StyledTextCtrl-class.html#SearchNext" rel="nofollow">wxPython's stc module</a></p>
http://stackoverflow.com/questions/1034399/wxpython-making-something-expand/1034455#10344552Answer by Jim Carroll for wxPython: Making something expandJim Carroll2009-06-23T18:55:11Z2009-06-23T18:55:11Z<p>The short answer: use a sizer with a proportion of 1 and the wx.Expand tag.</p>
<p>So here I am in the <strong>init</strong> of a panel</p>
<pre><code>sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.canvas, 1, wx.EXPAND)
self.SetSizer(sizer)
</code></pre>
http://stackoverflow.com/questions/1019132/what-accessories-do-you-wish-you-could-program-for-on-the-iphone-ipod-touch/1019266#10192662Answer by Jim Carroll for What accessories do you wish you could program for on the iPhone / iPod TouchJim Carroll2009-06-19T18:01:53Z2009-06-19T18:01:53Z<p>A video / remote control radio for controlling radio controlled planes and stuff w/ first-person video.</p>
http://stackoverflow.com/questions/820300/how-long-to-get-used-to-coding-with-a-dvorak-keyboard/820492#8204921Answer by Jim Carroll for How long to get used to coding with a Dvorak keyboard?Jim Carroll2009-05-04T15:03:17Z2009-05-04T15:03:17Z<p>Learning to touch-type on Dvorak doesn't take long. Print out a Dvorak layout and stick it to the bottom of your monitor, and just look at that when you're not sure where a key is. You'll be typing in comfort within a few days. Coding won't be comfortable for about another two weeks.</p>
<p>I personally find the Dvorak keyboard layout much more comfortable than QWERTY... but it is important not to forget QWERTY as you learn Dvorak. I learned Dvorak back in college, and once I went to an interview where they tested my typing skills... and they brought out a manual typewriter! Oops! I had brought a floppy disk with drivers for Windows and Mac, but the manual typewriter was something I didn't anticipate. I spent some time on regular QWERTY every so often after that just to make sure I could do both.</p>
<p>One oddity with Dvorak... it puts the n, t, and s keys all under the least coordinated fingers on my right hand. When I'm typing a word that ends with some combination of n, t, and s I'll transpose the letters a bit... but only when I'm typing at full speed.</p>
<p>So I'd encourage everyone to learn Dvorak, especially if you plan on typing for a good chunk of your professional life.</p>
http://stackoverflow.com/questions/575005/customised-programs-for-dvorak/643198#6431980Answer by Jim Carroll for Customised programs for DvorakJim Carroll2009-03-13T15:18:42Z2009-03-13T15:18:42Z<p>I just set my keyboard on Dvorak, and go. I use the dvorak layout for all my command keys, and you get used to it very quickly. Apple (and others) do have layouts set up where the layout is Dvorak for normal typing, but querty when the command key is used.</p>
<p>Whatever you do, just pick something simple and stick with it. If you're having to use different keyboard shortcuts for different apps, you're likely to wear yourself down remembering all that. </p>
http://stackoverflow.com/questions/611592/how-do-i-expand-a-wx-sizer-of-a-wx-panel-when-the-panel-is-expanded-inside-anothe/619212#6192120Answer by Jim Carroll for How do I expand a wx.sizer of a wx.panel when the panel is expanded inside another wx.sizer?Jim Carroll2009-03-06T15:22:20Z2009-03-06T15:22:20Z<p>Everything you're doing here looks reasonable. I think you're missing a AddGrowableCol() call.</p>
<pre><code> sizer.Add(b, wx.GBPosition(0,0))
sizer.Add(l1, wx.GBPosition(0,1), flag=wx.EXPAND)
sizer.AddGroableCol(1)
</code></pre>
<p>I've personally had more luck with a FlexGridSizer instead of a GridBagSizer:</p>
<pre><code> fgs = wx.FlexGridSizer(gridRows[fields], 2, 0, 0)
fgs.AddGrowableCol(1)
fgs.Add(wx.StaticText(self, -1, "Contact Phone"), 0, wx.ALL, border)
</code></pre>
http://stackoverflow.com/questions/618958/python-build-release-system/619035#6190355Answer by Jim Carroll for Python build/release systemJim Carroll2009-03-06T14:31:09Z2009-03-06T14:31:09Z<p>Probably the best answer is to use Ant as-is... that is, use the Java version. My second suggestion would be to use <a href="http://www.scons.org/" rel="nofollow">scons</a>. It won't take much time using scons before you're asking, "Who ever thought of using XML to script a build?"</p>
http://stackoverflow.com/questions/611592/how-do-i-expand-a-wx-sizer-of-a-wx-panel-when-the-panel-is-expanded-inside-anothe/611647#6116470Answer by Jim Carroll for How do I expand a wx.sizer of a wx.panel when the panel is expanded inside another wx.sizer?Jim Carroll2009-03-04T17:33:43Z2009-03-04T17:33:43Z<p>You've got the right idea. If you post some code, (just some placeholders, with different background colors or something so we can see what's happening) it will be easier to diagnose. Make sure that the inner Panel's parent is set correctly, and you might try some sizer hints: gridbagsizer.SetSizeHints(innerPanel) and see if that helps.</p>
http://stackoverflow.com/questions/462933/is-it-possible-to-make-text-translucent-in-wxpython/598202#5982020Answer by Jim Carroll for Is it possible to make text translucent in wxPython?Jim Carroll2009-02-28T15:53:54Z2009-02-28T15:53:54Z<p>I would try aggdraw into a small canvas.</p>
<p>Any Static Text uses the platform's native label machinery, so you don't get that sort of control over it.</p>
http://stackoverflow.com/questions/537774/is-there-to-include-elements-from-one-xrc-file-in-another-xrc-file/598169#5981691Answer by Jim Carroll for Is there to include elements from one xrc file in another xrc fileJim Carroll2009-02-28T15:40:36Z2009-02-28T15:40:36Z<p>XRC doesn't have an include mechanism that I know of, but you can have custom widgets.</p>
<p>So implement your common panel as its own XRC, and set that up as something that you can reference by class name in other xrc files.</p>
<p>You would create an XmlResourceHandler that handles the custom Panel in the XRC, and instantiates your Panel class. The place to look is demo/wxXmlResourceHandler.py</p>
<p>You can even extend XRCed to recognize your own resource, and insert it into future dialogs with ease.</p>
http://stackoverflow.com/questions/592703/wxpython-wxlistctrl-selected-row-color/596854#5968543Answer by Jim Carroll for wxPython wxListCtrl selected row colorJim Carroll2009-02-27T21:59:59Z2009-02-27T21:59:59Z<p>In your class that you derive from wx.ListCtrl, take a look at overriding </p>
<pre><code>def OnGetItemAttr(self, item):
return self.normalAttr[item % 2]
#
</code></pre>
<p>Where the item attributes are initialized ahead of time using:</p>
<pre><code> self.normalAttr = []
self.normalAttr.append(wx.ListItemAttr())
grayAttr = wx.ListItemAttr()
grayAttr.SetBackgroundColour(lightGray)
self.normalAttr.append(grayAttr)
</code></pre>
<p>So in this case, I'm alternating background colors between the default, and a light Gray attribute. </p>
<p>This function is called for each row as its painted, so you can use it to indicate all sorts of status. If row is selected should be an easy case.</p>
http://stackoverflow.com/questions/596190/wxpython-toolbar-help/596340#5963401Answer by Jim Carroll for wxPython toolbar helpJim Carroll2009-02-27T19:52:14Z2009-02-27T19:52:14Z<p>Hi,</p>
<p>Instead of a class that sets up your toolbar, use a function. The function can be a member function of your Window that subclasses wx.Frame. That way, the toolbar will get Created from the correct window, and be attached the way you would expect.</p>
<p>The class that you're writing above would work, if it knew which wx.Frame (your class called Window) to connect the toolbar to. To get it to work you would have to pass the frame object to the toolbar creator class...</p>
<pre><code>class Toolbar():
def __init__(self, frame_to_connect_to):
frame_to_connect_to.toolbar = frame_to_connect_to.CreateToolBar(style=(wx.TB_HORZ_LAYOUT | wx.TB_TEXT))
frame_to_connect_to.toolbar.SetToolBitmapSize((32,32))
frame_to_connect_to.toolbar.AddLabelTool(3, '', wx.Bitmap('GUI/icons/fileopen.png'))
frame_to_connect_to.toolbar.AddLabelTool(3, '', wx.Bitmap('GUI/icons/filesave.png'))
frame_to_connect_to.toolbar.AddSeparator()
frame_to_connect_to.toolbar.Realize()
</code></pre>
<p>It looks like a quick fix... but really using a class to do this is not a good use of classes. (I'd even go so far as to say it was incorrect.)</p>
<p>Really, what would clean things up a bit would be just to move the toolbar stuff to its own member function:</p>
<pre><code>class Window(wx.Frame)
def __init__(self, parent, plot):
wx.Frame.__init__(self, parent, wx.ID_ANY, "Name", size =(900, 600))
self.Centre()
self._init_toolbar()
def _init_toolbar(self):
self.toolbar = self.CreateToolBar(style=(wx.TB_HORZ_LAYOUT | wx.TB_TEXT))
self.toolbar.SetToolBitmapSize((32,32))
self.toolbar.AddLabelTool(3, '', wx.Bitmap('GUI/icons/fileopen.png'))
self.toolbar.AddLabelTool(3, '', wx.Bitmap('GUI/icons/filesave.png'))
self.toolbar.AddSeparator()
self.toolbar.Realize()
</code></pre>
<p>You get all the benefits.</p>
http://stackoverflow.com/questions/516587/what-is-erlangs-secret-to-scalability6What is Erlang's secret to scalability?Jim Carroll2009-02-05T16:13:19Z2009-02-27T13:43:58Z
<p>Erlang is getting a reputation for being untouchable at handling a large volume of messages and requests. I haven't had time to download and try to get inside Mr. Erlang's understanding of switching theory... so I'm wondering if someone can teach me (or point to a good instructional site.)</p>
<p>Say as a thought-experiment I wanted to port the Erlang ejabberd to a combination of Python and C, in a way that gave me the same speed and scalability. What structures or patterns would I have to understand and implement? (Does Python's Twisted already do this?)</p>
http://stackoverflow.com/questions/589407/python-how-to-check-if-a-file-is-used-by-another-application/592121#5921210Answer by Jim Carroll for Python - How to check if a file is used by another application?Jim Carroll2009-02-26T19:50:29Z2009-02-26T19:50:29Z<p>One thing I've done is have python very temporarily rename the file. If we're able to rename it, then no other process is using it. I only tested this on Windows.</p>
http://stackoverflow.com/questions/588749/python-daemon-packaging-best-practices/591832#5918320Answer by Jim Carroll for Python Daemon Packaging Best PracticesJim Carroll2009-02-26T18:29:22Z2009-02-26T18:29:22Z<p>I can't remember where I downloaded it... but this is the best daemonizing script that I've found. It works beautifully (on Mac and Linux.) (save it as daemonize.py)</p>
<pre><code>import sys, os
def daemonize (stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
# Perform first fork.
try:
pid = os.fork( )
if pid > 0:
sys.exit(0) # Exit first parent.
except OSError, e:
sys.stderr.write("fork #1 failed: (%d) %sn" % (e.errno, e.strerror))
sys.exit(1)
# Decouple from parent environment.
os.chdir("/")
os.umask(0)
os.setsid( )
# Perform second fork.
try:
pid = os.fork( )
if pid > 0:
sys.exit(0) # Exit second parent.
except OSError, e:
sys.stderr.write("fork #2 failed: (%d) %sn" % (e.errno, e.strerror))
sys.exit(1)
# The process is now daemonized, redirect standard file descriptors.
for f in sys.stdout, sys.stderr: f.flush( )
si = file(stdin, 'r')
so = file(stdout, 'a+')
se = file(stderr, 'a+', 0)
os.dup2(si.fileno( ), sys.stdin.fileno( ))
os.dup2(so.fileno( ), sys.stdout.fileno( ))
os.dup2(se.fileno( ), sys.stderr.fileno( ))
</code></pre>
<p>In your script, you would simply:</p>
<pre><code>from daemonize import daemonize
daemonize()
</code></pre>
<p>And you can also specify places to redirect the stdio, err, etc...</p>
http://stackoverflow.com/questions/570302/when-are-interfaces-needed/579295#5792951Answer by Jim Carroll for When are interfaces needed?Jim Carroll2009-02-23T20:51:46Z2009-02-23T20:51:46Z<p>Interfaces help you <strong>keep the dependencies on the abstractions.</strong></p>
<p>Code that uses the interface only depends on the interface, so you know that there are no artificial dependencies on the details. This gives you lots of freedom as far as changing code in the future, since you know exactly what should & shouldn't break when you 'fix' a bug or refactor.</p>
<p>In my opinion, it's the essence of good code design.</p>
http://stackoverflow.com/questions/571523/basic-wxwidgets-timer/571935#5719353Answer by Jim Carroll for Basic wxWidgets TimerJim Carroll2009-02-21T01:57:16Z2009-02-21T01:57:16Z<p>(from the samples/widgets/gauge.cpp:)</p>
<p>Set up your event constants</p>
<pre><code>enum
{
GaugePage_Reset = wxID_HIGHEST,
GaugePage_Progress,
</code></pre>
<p>Wire the event to your member function (using your event constant)</p>
<pre><code>EVT_TIMER(GaugePage_Timer, GaugeWidgetsPage::OnProgressTimer)
</code></pre>
<p>and then you'll need to create and start your timer..</p>
<pre><code>static const int INTERVAL = 300; // milliseconds
m_timer = new wxTimer(this, GaugePage_Timer);
m_timer->Start(INTERVAL);
</code></pre>
<p>In the documentation, the second method I think the thing to understand is that your main Window object ISA wxEventHandler, so the timer is wiring itself up to 'this' (your Window) when you create it. Now that the events are going to your window, the EVT_TIMER is probably the most efficient way to wire that up to your OnProgressTimer function.</p>
<p>You'll need the function to call too...</p>
<pre><code>void GaugeWidgetsPage::OnProgressTimer(wxTimerEvent& event)
{
</code></pre>
<p>It shouldn't be any more difficult than that.</p>
http://stackoverflow.com/questions/571514/are-there-any-declaration-keywords-in-python/571757#5717574Answer by Jim Carroll for Are there any declaration keywords in Python?Jim Carroll2009-02-21T00:21:28Z2009-02-21T00:21:28Z<p>I really like the understanding that Van Gale is providing, but it doesn't really answer the question of, "how do you know if this statement: creates a new variable or sets an existing variable?"</p>
<p>If you want to know how to recognize it when looking at code, you simply look for a previous assignment. Avoid global variables, which is good practice anyway, and you'll be all set.</p>
<p>Programmatically, you could try to reference the variable, and see if you get a "Name Error" exception</p>
<pre><code>try:
x
except NameError:
# x doesn't exist, do something
else:
# x exists, do something else
</code></pre>
<p>I've never needed to do this... and I doubt you will really need to either. </p>
<h2>soapbox alert !!!</h2>
<p>Even though Python looks kinda loosey-goosey to someone who is used to having to type the class name (or type) over and over and over... it's actually exactly as strict as you want to make it.</p>
<p>If you want strict types, you would do it explictly:</p>
<pre><code>assert(isinstance(variable, type))
</code></pre>
<p>Decorators exist to do this in a very convenient way for function calls...</p>
<p>Before long, you might just come to the conclusion that static type checking (at compile time) doesn't actually make your code that much better. There's only a small benefit for the cost of having to have redundant type information all over the place.</p>
<p>I'm currently working in actionscript, and typing things like:</p>
<pre><code>var win:ThingPicker = PopUpManager.createPopUp(fEmotionsButton,
ThingPicker, false) as ThingPicker;
</code></pre>
<p>which in python would look like:</p>
<pre><code>win = createPopup(parent, ThingPicker)
</code></pre>
<p>And I can see, looking at the actionscript code, that there's simply no benefit to the static type-checking. The variable's lifetime is so short that I would have to be completely drunk to do the wrong thing with it... and have the compiler save me by pointing out a type error. </p>
http://stackoverflow.com/questions/536370/execute-arbitrary-python-code-remotely-can-it-be-done/537168#5371685Answer by Jim Carroll for Execute arbitrary python code remotely - can it be done?Jim Carroll2009-02-11T14:56:50Z2009-02-11T14:56:50Z<p>Take a look at <a href="http://pyro.sourceforge.net/" rel="nofollow">PyRO</a> (Python Remote objects) It has the ability to set up services on all the computers in your cluster, and invoke them directly, or indirectly through a name server and a publish-subscribe mechanism. </p>
http://stackoverflow.com/questions/521621/what-is-the-best-way-to-write-html-from-python/521778#5217781Answer by Jim Carroll for What is the best way to write HTML from Python?Jim Carroll2009-02-06T19:23:12Z2009-02-06T19:23:12Z<p>In the past I've had a lot of luck with SimpleTAL (a stand-alone version of zope's Page Template Library)</p>
<p>Today, I'd use Django's templates (which can be used stand-alone) because I <em>love</em> some of the markups like {% ifchanged %} {% nospace %} {% firstof %} etc...</p>
http://stackoverflow.com/questions/500406/how-to-vertically-align-paragraphs-within-a-table-using-reportlab/516531#5165312Answer by Jim Carroll for How to vertically align Paragraphs within a Table using Reportlab?Jim Carroll2009-02-05T16:01:15Z2009-02-05T16:01:15Z<p>I have to ask: have you tried the tablestyle VALIGN:MIDDLE?</p>
<p>something like:</p>
<pre><code>t=Table(data)
t.setStyle(TableStyle([('VALIGN',(-1,-1),(-1,-1),'MIDDLE')]))
</code></pre>
<p>(more details in section 7.2 of the ReportLab user guide)</p>
<p>If that doesn't do it, then your paragraph object must be the full height of the cell, and internally aligned to the bottom.</p>
<p>Could you please post a small sample that reproduces the problem?</p>
http://stackoverflow.com/questions/1569845/actionscript-3-font-embeddingComment by Jim Carroll on ActionScript 3 & font embeddingJim Carroll2009-11-20T18:57:05Z2009-11-20T18:57:05ZI'm also running in to this... I am not embedding any fonts, but letting the user select their favorite font. When they select Arial, (a few others do too) half of their letters are missing. I somehow have to exclude embedded fonts from the list that I let them choose from... it's a pain!http://stackoverflow.com/questions/68335/how-do-i-copy-a-file-to-a-remote-server-in-python-using-scp-or-ssh/69596#69596Comment by Jim Carroll on How do I copy a file to a remote server in python using scp or ssh?Jim Carroll2009-10-01T13:28:50Z2009-10-01T13:28:50Zparamiko has a nice sftp.put(self, localpath, remotepath, callback=None) function too, so you don't have to open write, and close each file.
http://stackoverflow.com/questions/756079/flex-vertically-position-children-of-a-horizontal-hbox/756124#756124Comment by Jim Carroll on Flex - Vertically position children of a horizontal HBoxJim Carroll2009-07-09T16:12:33Z2009-07-09T16:12:33ZAdam... make sure you're setting verticalAlign: middle; on the HBox, not the buttons.http://stackoverflow.com/questions/1044889/unable-to-understand-a-line-of-python-code-exactly/1044936#1044936Comment by Jim Carroll on Unable to understand a line of Python code exactlyJim Carroll2009-06-25T16:54:13Z2009-06-25T16:54:13ZYou don't have to use %... That's just the most common way. The % refers to the %s style printf syntax. The % operator on strings is just a handy sprintf. You can also use the Template module: <a href="http://www.python.org/doc/2.5.2/lib/node40.html" rel="nofollow">python.org/doc/2.5.2/lib/node40.html</a>http://stackoverflow.com/questions/1034052/encoding-h-264-video-or-similar-on-the-iphone-directly/1038760#1038760Comment by Jim Carroll on encoding H.264 video (or similar) on the iPhone directly?Jim Carroll2009-06-24T19:19:52Z2009-06-24T19:19:52Zthe GPL on the H.264 is a non-starter there too. Shucks.http://stackoverflow.com/questions/879511/wxpython-execute-command-asynchronously-display-stdout-in-text-widget/1035367#1035367Comment by Jim Carroll on wxPython: execute command asynchronously, display stdout in text widgetJim Carroll2009-06-24T19:10:45Z2009-06-24T19:10:45ZOne more comment... in the wxPython demo, search for process in the search box in the lower left. It does an ASYNC run using wxWidget's approach. I would still use the subprocess module, but other than that it's exactly what you're looking for.http://stackoverflow.com/questions/879511/wxpython-execute-command-asynchronously-display-stdout-in-text-widget/1035367#1035367Comment by Jim Carroll on wxPython: execute command asynchronously, display stdout in text widgetJim Carroll2009-06-24T19:06:28Z2009-06-24T19:06:28ZIt's true. I'm coming from a C / C++ & Objective-C systems-level GUI stuff, and wxPython seems so easy to me. Python does have Tkinter, which you might prefer: <a href="http://wiki.python.org/moin/TkInter" rel="nofollow">wiki.python.org/moin/TkInter</a>. subprocess is still the way to run a command and read from its stdin. POpen object can also tell you if they've completed, so you don't block forever if there's no output.http://stackoverflow.com/questions/879511/wxpython-execute-command-asynchronously-display-stdout-in-text-widget/1035367#1035367Comment by Jim Carroll on wxPython: execute command asynchronously, display stdout in text widgetJim Carroll2009-06-24T11:39:15Z2009-06-24T11:39:15ZBryan, this python stuff is a lot easier than you think it is... even easier than Tk if you give it a chance.http://stackoverflow.com/questions/879511/wxpython-execute-command-asynchronously-display-stdout-in-text-widget/1035367#1035367Comment by Jim Carroll on wxPython: execute command asynchronously, display stdout in text widgetJim Carroll2009-06-24T11:38:28Z2009-06-24T11:38:28ZWhat makes you say that Bryan? Have you tried it? My understanding is you <i>can</i> make it block by doing a Popen.wait(), but if you don't block with the wait command, you'll be able to read whatever stdout is available at the time with the read command.
<a href="http://docs.python.org/library/subprocess.html" rel="nofollow">docs.python.org/library/subprocess.html</a>
http://stackoverflow.com/questions/1034399/wxpython-making-something-expand/1034455#1034455Comment by Jim Carroll on wxPython: Making something expandJim Carroll2009-06-23T22:11:09Z2009-06-23T22:11:09ZOk... I looked at some code that did just this. You can switch the window contents from one set of widgets to another by doing a window.DestroyChildren() then adding the controls that you do want visible. Another option is to use one of the 'notebook' or 'paging' controls to show one thing or another in the same area. It's like a Tab bar, but with hidden tabs.http://stackoverflow.com/questions/1034399/wxpython-making-something-expand/1034455#1034455Comment by Jim Carroll on wxPython: Making something expandJim Carroll2009-06-23T21:17:22Z2009-06-23T21:17:22Zcool-RR: you can try adding a child, but without using sizers... just use some absolute coordinates that fit in your parent.
If that doesn't work, you can swap the panel for the other contents using Reparent()http://stackoverflow.com/questions/863253/python-and-collective-intelligenceComment by Jim Carroll on Python and Collective IntelligenceJim Carroll2009-05-14T14:35:06Z2009-05-14T14:35:06ZMy favorite book of the decade! Python's learning curve is smaller than you perceive... but translating to C# will give you a huge appreciation for how concise Python is.http://stackoverflow.com/questions/67512/best-keyboard-for-custom-dvorak-based-programming-layout/67652#67652Comment by Jim Carroll on Best keyboard for custom Dvorak-based programming layoutJim Carroll2009-05-04T15:18:11Z2009-05-04T15:18:11ZI like my Kinesis Contoured very much, and can type about 100 WPM on it.http://stackoverflow.com/questions/820300/how-long-to-get-used-to-coding-with-a-dvorak-keyboard/820350#820350Comment by Jim Carroll on How long to get used to coding with a Dvorak keyboard?Jim Carroll2009-05-04T15:07:48Z2009-05-04T15:07:48ZAny time you type words (and words are important in programming) Dvorak will be more comfortable, and perhaps avoid some repetitive stress (especially with the left hand.) You won't believe it until you master it yourself, and that's ok.http://stackoverflow.com/questions/630967/what-programming-language-is-in-the-highest-demand-in-the-market-place-right-now/630986#630986Comment by Jim Carroll on What programming language is in the highest demand in the market place right now?Jim Carroll2009-03-10T16:27:54Z2009-03-10T16:27:54ZThose are just the users with the most confusion having to ask the most questions.