User Jamie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T10:30:16Zhttp://stackoverflow.com/feeds/user/3363http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python9Is there a simple, elegant way to define Singletons in Python?Jamie2008-08-28T09:03:09Z2009-11-28T20:03:13Z
<p>There seem to be many ways to define Singletons in python. I was wondering if there is a consensus opinion on StackOverflow.</p>
http://stackoverflow.com/questions/1084514/make-your-program-use-a-gui/1085936#10859361Answer by Jamie for Make your program USE a gui.Jamie2009-07-06T08:14:54Z2009-07-06T08:14:54Z<p>I've had some luck with similar tasks using <a href="http://pywinauto.openqa.org/" rel="nofollow">PyWinAuto</a>.</p>
<blockquote>
<p>pywinauto is a set of python modules
to automate the Microsoft Windows GUI.
At it's simplest it allows you to send
mouse and keyboard actions to windows
dialogs and controls.</p>
</blockquote>
<p>It also has some support for capturing images of dialogs and such using the Python Imaging Library <a href="http://www.pythonware.com/products/pil/" rel="nofollow">PIL</a>.</p>
http://stackoverflow.com/questions/2896/project-suggestions/139340#1393400Answer by Jamie for Project SuggestionsJamie2008-09-26T12:59:34Z2008-09-26T12:59:34Z<p>If you do consider implementing a game, I would recommend the <a href="http://lostgarden.com/labels/prototyping%20challenge.html" rel="nofollow">lostgarden</a> site. The author supplies some great free graphics for you to use in building a game. He often sets prototyping challenges so you can compare you work with other peoples too.</p>
http://stackoverflow.com/questions/139005/pyqt-qscrollbar/139082#1390820Answer by Jamie for PyQt - QScrollBarJamie2008-09-26T12:23:54Z2008-09-26T12:41:52Z<p>In the PyQT source code distribution, look at the file:</p>
<blockquote>
<p>examples/widgets/sliders.pyw</p>
</blockquote>
<p>Or there is a minimal example <a href="http://www.zetcode.com/tutorials/pyqt4/widgets/" rel="nofollow">here</a> (I guess I shouldn't copy paste because of potential copyright issues)</p>
http://stackoverflow.com/questions/65076/how-to-setup-vim-properly-for-editing-python-files-py/66818#668180Answer by Jamie for How to setup VIM properly for editing Python files - *.pyJamie2008-09-15T20:50:36Z2008-09-15T20:50:36Z<p>Ensure you are editing the correct configuration file for VIM. Especially if you are using windows, where the file could be named _vimrc instead of .vimrc as on other platforms.</p>
<p>In vim type</p>
<p><code>:help vimrc</code></p>
<p>and check your path to the _vimrc/.vimrc file with</p>
<p><code>:echo $HOME</code></p>
<p><code>:echo $VIM</code></p>
<p>Make sure you are only using one file. If you want to split your configuration into smaller chunks you can source other files from inside your _vimrc file.</p>
<p><code>:help source</code></p>
http://stackoverflow.com/questions/35817/whats-the-best-way-to-escape-os-system-calls-in-python/35858#3585813Answer by Jamie for What's the best way to escape os.system() calls in Python?Jamie2008-08-30T10:15:02Z2008-08-30T10:15:02Z<p>Perhaps you have a specific reason for using os.system(). But if not you should probably be using the subprocess <a href="http://docs.python.org/lib/module-subprocess.html" rel="nofollow">module</a>. You can specify the pipes directly and avoid using the shell.</p>
<p>The following is from <a href="http://www.python.org/dev/peps/pep-0324/" rel="nofollow">PEP324</a></p>
<blockquote>
<pre><code>Replacing shell pipe line
-------------------------
output=`dmesg | grep hda`
==>
p1 = Popen(["dmesg"], stdout=PIPE)
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
output = p2.communicate()[0]
</code></pre>
</blockquote>
http://stackoverflow.com/questions/25665/python-module-for-converting-pdf-to-text/31923#319232Answer by Jamie for Python module for converting PDF to textJamie2008-08-28T09:46:53Z2008-08-28T09:46:53Z<p><a href="http://en.wikipedia.org/wiki/Pdftotext" rel="nofollow">Pdftotext</a> An open source program (part of Xpdf) which you could call from python (not what you asked for but might be useful). I've used it with no problems. I think google use it in google desktop.</p>
http://stackoverflow.com/questions/31875/is-there-a-simple-elegant-way-to-define-singletons-in-python/31907#319073Answer by Jamie for Is there a simple, elegant way to define Singletons in Python?Jamie2008-08-28T09:31:10Z2008-08-28T09:31:10Z<p>@Serge: I like this quote from <a href="http://norvig.com/python-iaq.html" rel="nofollow">Norvig</a>.</p>
<blockquote>
<p>Before the Gang of Four got all
academic on us, ``singleton'' (without
the formal name) was just a simple
idea that deserved a simple line of
code, not a whole religion.</p>
</blockquote>
<p>@Staale, @John: I currently use the module approach, but was wondering whether I was missing a more widely accepted approach.</p>
http://stackoverflow.com/questions/2933/an-executable-python-app/31859#3185913Answer by Jamie for An executable Python appJamie2008-08-28T08:41:45Z2008-08-28T09:19:23Z<p>Another system (not mentioned in the accepted answer yet) is PyInstaller, which worked for a PyQt project of mine when py2exe would not. I found it easier to use.</p>
<p><a href="http://pyinstaller.python-hosting.com/" rel="nofollow">http://pyinstaller.python-hosting.com/</a></p>
<p>Pyinstaller is based on Gordon McMillan's Python Installer. Which is no longer available.</p>
http://stackoverflow.com/questions/26863/how-do-i-really-reset-the-visual-studio-window-layout/26936#26936Comment by Jamie on How do I REALLY reset the Visual Studio window layout?Jamie2009-11-27T16:52:44Z2009-11-27T16:52:44Z/resetuserdata worked for me where /ResetSettings did not.http://stackoverflow.com/questions/65076/how-to-setup-vim-properly-for-editing-python-files-pyComment by Jamie on How to setup VIM properly for editing Python files - *.pyJamie2008-09-15T20:54:29Z2008-09-15T20:54:29ZWhat platform are you using? Windows/Mac/Linux?