User paprika - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T22:17:35Zhttp://stackoverflow.com/feeds/user/61815http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1775637/automatically-pick-tags-from-context-using-python/1775672#17756723Answer by paprika for Automatically pick tags from context using Pythonpaprika2009-11-21T14:50:06Z2009-11-23T07:23:14Z<p>The <a href="http://www.nltk.org/" rel="nofollow">Natural Language Toolkit</a> offers a broad variety of methods for this kind of stuff. I can't give you hands-on advice as I'm not familiar with this subject, but I think it's worth the effort to read a few <a href="http://www.nltk.org/documentation" rel="nofollow">articles</a> about this topic first before you start: just picking words from the text directly won't get you very far I think, you should probably try to find similar words to the ones for that tags already exist. And of course you need to filter out the common words of the language like "the" and stuff. Again, this Python library can help you with this, at least for a few common languages.</p>
http://stackoverflow.com/questions/1768373/what-is-the-best-way-to-crawl-a-login-based-sites/1769883#17698832Answer by paprika for What is the best way to crawl a login based sites?paprika2009-11-20T11:27:50Z2009-11-20T11:27:50Z<p>I used <a href="http://wwwsearch.sourceforge.net/mechanize/" rel="nofollow">mechanize</a> for Python with success for a few things. It's easy to use and supports HTTP authentication, form handling, cookies, automatic HTTP redirection (30X), ... Basically the only thing missing is JavaScript, but if you need to rely on JS you're pretty much screwed anyway.</p>
http://stackoverflow.com/questions/1286875/python-sip-library/1761507#17615070Answer by paprika for Python SIP librarypaprika2009-11-19T07:27:55Z2009-11-19T07:27:55Z<p>You might want to have a look at <a href="http://www.b2bua.org/" rel="nofollow">Sippy</a>. It's a B2BUA with a complete SIP stack implementation underneath (you could use just that). It's written entirely in Python, so it's pretty hackable. Sippy is implemented with Twisted but uses none of its SIP functionality.</p>
http://stackoverflow.com/questions/1622454/twisted-source-ip-address-for-outbound-connections0Twisted: source IP address for outbound connectionspaprika2009-10-25T23:21:51Z2009-11-18T18:46:04Z
<p>I'm in the process of implementing a service -- written in Python with the Twisted framework, running on Debian GNU/Linux -- that checks the availability of SIP servers. For this I use the OPTIONS method (a SIP protocol feature), as this seems to be a commonplace practice. In order to construct correct and RFC compliant headers, I need to know the source IP address and the source port for the connection that is going to be established. [How] can this be done with Twisted?</p>
<p>This is what I tried:
I subclassed <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.protocol.AbstractDatagramProtocol.html" rel="nofollow">protocol.DatagramProtocol</a> and within <code>startProtocol(self)</code> I used <code>self.transport.getHost().host</code> and <code>self.transport.getHost().port</code>. The latter is indeed the port that's going to be used, whereas the former only yields 0.0.0.0.</p>
<p>I guess that at this point Twisted doesn't [yet?] know which interface and as such which source IP address will be used. Does Twisted provide a facility that could help me with this or do I need to interface with the OS (routing) in a different way? Or did I just use <code>self.transport.getHost().host</code> incorrectly?</p>
http://stackoverflow.com/questions/1622454/twisted-source-ip-address-for-outbound-connections/1758184#17581840Answer by paprika for Twisted: source IP address for outbound connectionspaprika2009-11-18T18:46:04Z2009-11-18T18:46:04Z<p>For the sake of completeness I answer my own question:</p>
<p>Make sure you use connect() on the transport before trying to determine the host's source IP address. The following excerpt shows the relevant part of a protocol implementation:</p>
<pre><code>class FooBarProtocol(protocol.DatagramProtocol):
def startProtocol(self):
self.transport.getHost().host # => 0.0.0.0
self.transport.connect(self.dstHost, self.dstPort)
self.transport.getHost().host # => 192.168.1.102
</code></pre>
http://stackoverflow.com/questions/1707487/dependency-bundle-jar-files-sources-api-docs-in-eclipse0Dependency bundle (jar-files/sources/API docs) in Eclipsepaprika2009-11-10T12:06:21Z2009-11-10T12:19:50Z
<p>I'm developing various in-house extensions for JIRA, the issue tracker we use. So far I worked with Netbeans and everything worked like a charm. However, now I need to switch to Eclipse and I'm having struggle setting up the environment for this development project.</p>
<p>First a clarification why I'm using the approach I'm describing here: building JIRA (in an IDE) is not easily done and I'm absolutely not interested in wasting my time to figure out how to do it. Besides, I don't need to build it, I just want to develop extensions and be able to use the IDE's auto-completion and help support (API docs). Atlassian (the company that develops JIRA) provides a "development" package, but it's just a sorry excuse rather than a real solution.</p>
<p>What I did with Netbeans was to create a library bundle with all relevant jar-files, the Java source files and the API documentation. This way I could use auto-completion, "jump to" the source and the API docs would pop-up when needed.</p>
<p>It seems Eclipse doesn't offer such a functionality, at least I couldn't figure out how to add the sources and the API docs to a "User Library" (which I'd then add as a dependency to my project just as with Netbeans).</p>
<p>My next approach was to create a separate project that holds all the stuff and mark that project as a dependency of my project. This works, but it leaves me with another issue: now I get 37k errors reported (all within the "dependency project"). As said, correctly setting up building for this dependency is a major struggle and <em>not my original goal</em>, therefore I'd happily ignore these errors. Automatic building is turned off and changing the "Errors/Warnings" settings under "Java Compiler" for the project didn't change a thing, so I'm kind of lost now.</p>
<p>Okay, let me try to phrase this as questions:</p>
<ol>
<li><p>Maybe I just didn't find it: Is there a way to create a dependency bundle (call it whatever you want) in Eclipse that -- besides just carrying jar-files -- gives me the ability to use the API docs and "jump to" the declaration in the sources?</p></li>
<li><p>If not, what's the common practice to do in such a situation?</p></li>
<li><p>If the "dependency project" solution is the way to go, how can I completely disable compiler errors for that project?</p></li>
</ol>
http://stackoverflow.com/questions/1543427/gnu-screen-changing-the-default-escape-command-key-to-alt-x/1571044#15710440Answer by paprika for gnu screen - changing the default escape command key to ALT-X?paprika2009-10-15T08:30:10Z2009-10-15T08:30:10Z<p>I'm an Emacs and screen user as well. Although I rarely use Emacs in a terminal -- and as such in a screen session -- I didn't want to give up C-a for the shell either (which uses Emacs key bindings). My solution was to use C-j as the prefix key for screen, which I was willing to sacrifice. In Emacs programming modes it is bound to (newline-and-indent) which I bound to RET as well, so I really don't miss it.</p>
<p>By the way: I know this is an advise rather than an answer, but I felt this would be valuable enough to post nevertheless.</p>
http://stackoverflow.com/questions/1556523/ive-never-used-ido-mode-do-i-want-to/1570976#15709761Answer by paprika for I've never used ido mode. Do I want to?paprika2009-10-15T08:16:30Z2009-10-15T08:16:30Z<p>I use it for file and buffer name completion, and really don't want to miss it anymore. It gave me a lot of trouble when I started using it though, because by default it completes file names in a way I didn't expect: dired buffers count as working directories and file name completion works on <em>all</em> of these directories. However you can easily turn that behavior off if you don't like it (last line in my config). Here's my very short configuration for ido, in case you're interested:</p>
<pre><code>(require 'ido)
(ido-mode t)
(setq ido-cannot-complete-command 'ido-next-match
ido-default-buffer-method 'selected-window
ido-default-file-method 'selected-window
ido-auto-merge-work-directories-length -1)
</code></pre>
http://stackoverflow.com/questions/1393001/apache-tomcat-adding-deleting-editing-jndi-resources2Apache Tomcat: adding/deleting/editing JNDI resourcespaprika2009-09-08T09:39:04Z2009-09-08T09:43:10Z
<p>Is there a facility in Tomcat (version 6) to add/delete/edit JNDI resources? If it's possible, how would I update a JDBC data source (as an example)?
Note that I'm looking for a possibility to update a JNDI resource <em>without</em> redeploying an application.
Apparently Glassfish let's you do this, unfortunately using another application server is currently not an option for me.</p>
http://stackoverflow.com/questions/665296/firefox-plugin-cpu-usage/665312#6653120Answer by paprika for Firefox plugin CPU usagepaprika2009-03-20T08:14:34Z2009-03-20T08:14:34Z<p>I'd guess your best option would be to test your plugin in a seperate Firefox process, but you're probably doing that anyway.</p>
<p>For real profiling you should use Firebug. I'm not sure about it, but I think it is possible to run XUL apps inside of Firefox (without integrating it as a plugin). If this is not an option then you could maybe separate out code that you suspect to be slow into a web page and profile it with <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>. This would of course only work for stuff that is not interacting with the Mozilla core.</p>
http://stackoverflow.com/questions/576809/how-do-i-subtract-all-prices-in-a-mysql-table-with-sql-only/577127#5771270Answer by paprika for How do I subtract all prices in a mySQL table with SQL only?paprika2009-02-23T10:18:44Z2009-02-23T10:18:44Z<p>As Paolo Bergantino mentioned, you tried to alter the <em>structure</em> of the table rather than the <em>data</em> contained in it. The SQL is made up of different parts, each responsible for something different. For defining your data structures (tables, views, etc.) you use the DDL (Data Definition Language). For manipulating data on the other hand, you use the DML (Data Manipulation Language).</p>
<p><a href="http://www.orafaq.com/faq/what_are_the_difference_between_ddl_dml_and_dcl_commands" rel="nofollow">This site</a> shows the different parts of the SQL along with examples.</p>
http://stackoverflow.com/questions/557906/want-procmail-to-run-a-custom-python-script-everytime-a-new-mail-shows-up/561142#5611420Answer by paprika for Want procmail to run a custom python script, everytime a new mail shows uppaprika2009-02-18T14:01:22Z2009-02-18T14:01:22Z<p>The <a href="http://stackoverflow.com/questions/557906/want-procmail-to-run-a-custom-python-script-everytime-a-new-mail-shows-up/561028#561028">log excerpt</a> clearly states that your script is executed, even if it doesn't show the desired effect. I'd expect procmail to log an error if the execution failed.</p>
<p>Anyway, make sure that the user (uid) that procmail is executed with has the correct permissions to execute your script. Wire the script into procmail only if you succeeded testing with something like this (replace 'procmail' with the correct uid):</p>
<pre>
# sudo -u procmail /bin/sh -c '/bin/cat /work/scripts/mail.txt | /usr/bin/python /work/scripts/privilege_emails_forward.py'
</pre>
<p>Depending on your sudo configuration, you'd have to run this as root. Oh, and make sure you use absolute file paths.</p>
http://stackoverflow.com/questions/560166/programming-vocabulary/560183#5601835Answer by paprika for Programming Vocabularypaprika2009-02-18T07:48:39Z2009-02-18T13:26:21Z<p>One of the most important things for beginners is probably [the distinction of]:</p>
<p>value/reference</p>
<p><b>EDIT:</b>
By the way, if you want to try a visual approach: I found that a set of [different sized] plastic boxes from the kitchen and label stickers can greatly help explaining variables and pointers. :-)</p>
http://stackoverflow.com/questions/560089/unix-command-for-benchmarking-code-running-k-times/560147#5601474Answer by paprika for Unix Command For Benchmarking Code Running K timespaprika2009-02-18T07:24:43Z2009-02-18T07:24:43Z<p>Just a word of advice: Make sure this "benchmark" comes close to your real usage of the executed program. If this is a short living process, there could be a significant overhead caused by the process creation alone. Don't assume that it's the same as implementing this as a loop <em>within</em> your program.</p>
http://stackoverflow.com/questions/556739/what-is-the-python-book/556803#5568031Answer by paprika for What is "THE" Python book.paprika2009-02-17T13:35:49Z2009-02-17T13:35:49Z<p>I read O'Reilly's Python book and it was quite nice. Then I had a look at <a href="http://corepython.com/" rel="nofollow">Core Python Programming</a>, by Wesley Chun. I found it to be much better organized and the explanations in it are always straight to the point. The first (biggest) part deals only with the core features of Python, I find this part the most useful. In fact, I think they could rip off most of the second part, except for regular expressions. For example, I don't care for a GUI chapter in a 'core' book. If they'd throw away the clutter, the book would be much lighter. Still, if you can ignore the fact that this is a really heavy and thick book, I think it's <em>the best Python book</em>.</p>
http://stackoverflow.com/questions/115844/recommended-python-publish-subscribe-dispatch-module/556782#5567820Answer by paprika for Recommended Python publish/subscribe/dispatch module ?paprika2009-02-17T13:28:17Z2009-02-17T13:28:17Z<p>The fact alone that PyPubSub seems to be a somewhat chaotically managed project (the Wiki on SF is dead, the website (another Wiki) which is linked on SF is currently broken) would be enough reason for me not to use it.
PyDispatcher has an intact website, but the only documentation they seem to provide is the one for the API generated from the docstrings. No traffic on the mailing list either... a bad sign!</p>
<p>As Mike also mentioned, it's perfectly possible to choose a solution that is independent of Python. Now don't get me wrong, I <em>love</em> Python, but still, in this field it can make sense use a framework that is decoupled from the programming language.</p>
<p>I'm not experienced with messaging, but I'm planning to have a look into a few solutions. So far these two (free, open source) projects seem to be the most promising for me (coincidentally, both are Apache projects):</p>
<ul>
<li><a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a></li>
<li><a href="http://qpid.apache.org/" rel="nofollow">Qpid</a></li>
</ul>
<p>Both seem to be reasonably matured projects, at least a far as documentation and community. I can't comment on the software's quality though, as I said, I didn't use any of the software.</p>
<p>Qpid ships with client libraries for Python, but you could also use <a href="http://barryp.org/software/py-amqplib/" rel="nofollow">py-amqplib</a>. For ActiveMQ there's <a href="http://code.google.com/p/pyactivemq/" rel="nofollow">pyactivemq</a>, which you can use to connect either via STOMP (Streaming Text Orientated Messaging Protocol) or via Openwire.</p>
http://stackoverflow.com/questions/554957/parameterised-regular-expression-in-python/554989#5549894Answer by paprika for Parameterised regular expression in Pythonpaprika2009-02-16T23:15:59Z2009-02-16T23:36:46Z<p>Well, as you build a regexp from a string, I see no other way. But you could <em>parameterise the string itself</em> with a dictionary:</p>
<pre><code>d = {'bar': 'a', 'foo': 'b'}
regexp = '%(foo)s|%(bar)s' % d
</code></pre>
<p>Or, depending on the problem, you could use list comprehensions:</p>
<pre><code>vlist = ['a', 'b', 'c']
regexp = '|'.join([s for s in vlist])
</code></pre>
<p><b>EDIT:</b> Mat clarified his question, this makes things different and the above mentioned is totally irrelevant.</p>
<p>I'd probably go with an approach like this:</p>
<pre><code>filename = 'bob_20090216.txt'
regexps = {'bob': 'bob_[0-9]+.txt',
'fred': 'fred_[0-9]+.txt',
'paul': 'paul_[0-9]+.txt'}
for filetype, regexp in regexps.items():
m = re.match(regexp, filename)
if m != None:
print '%s is of type %s' % (filename, filetype)
</code></pre>
http://stackoverflow.com/questions/554446/how-do-i-prevent-pythons-urllib2-from-following-a-redirect/554501#5545013Answer by paprika for How do I prevent Python's urllib(2) from following a redirectpaprika2009-02-16T20:46:59Z2009-02-16T22:10:37Z<p>This question was asked before <a href="http://stackoverflow.com/questions/110498/is-there-an-easy-way-to-request-a-url-in-python-and-not-follow-redirects/110808">here</a>.</p>
<p><b>EDIT:</b> If you have to deal with quirky web applications you should probably try out <a href="http://wwwsearch.sourceforge.net/mechanize/" rel="nofollow">mechanize</a>. It's a great library that simulates a web browser. You can control redirecting, cookies, page refreshes... If the website doesn't rely [heavily] on JavaScript, you'll get along very nicely with mechanize.</p>
http://stackoverflow.com/questions/554138/catching-segfaults-in-c/554165#5541651Answer by paprika for Catching segfaults in Cpaprika2009-02-16T18:48:44Z2009-02-16T18:48:44Z<p>I think you are trying to solve a problem that doesn't exist. At least you are working on the wrong end. You won't be able to <em>catch</em> a segmentation fault, as this error/exception is thrown by the OS (it is <em>caused</em> by your program, the OS just <em>catches</em> it).</p>
<p>I'd advise you to rethink your strategy regarding the input: Why is it impossible to sanitize it? The most important to do is size checking, for this the C stdlib has appropriate functions. Then of course you'd have to check for valid input regarding the content. Yes, this will probably result in a lot of work, but it's the only way to write a robust program.</p>
<p><b>EDIT:</b> I'm not much of a C expert, didn't know that even a segmentation fault could be handled by a signal handler. Still, I think it's not the right way to go for the reasons mentioned above.</p>
http://stackoverflow.com/questions/552521/django-model-returning-nonetype/552538#5525380Answer by paprika for Django Model returning NoneTypepaprika2009-02-16T07:54:08Z2009-02-16T08:08:26Z<p>I don't know Django, but I assume that some kind of ORM is involved when you do this:</p>
<pre><code>current_product = Product.objects.get(slug=title)
</code></pre>
<p>At that point you should always check whether you get None back ('None' is the same as 'null' in Java or 'nil' in Lisp with the subtle difference that 'None' is an object in Python). This is usually the way ORMs map the empty set to the programming language.</p>
<p><b>EDIT:</b>
Gee, I just see that it's <code>current_product.size</code> that's <code>None</code> not <code>current_product</code>. As said, I'm not familiar with Django's ORM, but this seems strange nevertheless: I'd either expect <code>current_product</code> to be <code>None</code> or <code>size</code> having a numerical value.</p>
http://stackoverflow.com/questions/550332/best-language-for-rapid-prototyping/550357#5503572Answer by paprika for Best Language for Rapid Prototyping?paprika2009-02-15T05:02:12Z2009-02-15T05:02:12Z<p>Many consider Python to be a good tool for prototyping (in general). It is easy to read, quick to pick up and has no <em>write/compile/run cycle</em>. It has a nicely featured standard library and the documentation is mostly pretty good.</p>
<p>Concerning your needs for a GUI builder, at least three major toolkits (WxWidget, QT, GTK+) offer you such a tool -- the output of these tools (usually meant for C/C++ programs) is either usable directly or a conversion tool exists. I'm not quite sure what you mean by a <em>GUI-builder tool that integrates well with the language</em>. IMHO a programming language shouldn't be biased towards a single purpose.</p>
<p>As for interfacing with C/C++ code, there are several ways:</p>
<ul>
<li>programming a Python module <em>manually</em> (the hard way)</li>
<li>using a tool like <a href="http://www.swig.org/Doc1.3/Python.html" rel="nofollow">SWIG</a></li>
<li>interfacing with the library via <a href="http://docs.python.org/library/ctypes.html#module-ctypes" rel="nofollow">ctypes</a></li>
<li>probably more I cannot think of right now</li>
</ul>
http://stackoverflow.com/questions/526734/subprocess-popen/526771#5267711Answer by paprika for subprocess.Popenpaprika2009-02-09T00:35:39Z2009-02-09T00:35:39Z<p>The problem is that you effectively supply Setup.exe with only one argument. Don't think in terms of the shell, the string you hand over as an argument does not get splitted on spaces anymore, that's your duty!</p>
<p>So, if you are absolutely sure that "/qn /lv %TEMP%\log_silent.log" should be one argument, then use this:</p>
<pre><code>subprocess.Popen(['C:\Program Files\ My Installer\Setup.exe', '/s', '/v', '/qn /lv %TEMP%\log_silent.log'],stdout=subprocess.PIPE).communicate()[0]
</code></pre>
<p>Otherwise (I guess this one will be correct), use this:</p>
<pre><code>subprocess.Popen(['C:\Program Files\ My Installer\Setup.exe', '/s', '/v', '/qn', '/lv', '%TEMP%\log_silent.log'],stdout=subprocess.PIPE).communicate()[0]
</code></pre>
http://stackoverflow.com/questions/524870/best-way-to-send-email-from-my-web-app-so-it-looks-like-it-came-from-my-users-acc/524991#5249910Answer by paprika for Best way to send email from my web app so it looks like it came from my users accountpaprika2009-02-08T02:00:35Z2009-02-08T02:00:35Z<p>If I understand the standard (<a href="http://www.faqs.org/rfcs/rfc822.html" rel="nofollow">RFC 822</a>) correctly, this is exactly what the <em>Sender</em> header is for (see §4.4.2. SENDER / RESENT-SENDER). Still, I'd go with a different approach and use your sites official contact address in the <em>From</em> header and put the user's address in the <em>Reply-To</em> header. Maybe add some boilerplate text that clearly states where the mail is coming from.</p>
<p>One further advice besides the technical stuff: don't let anonymous users use this facility, you'd become a perfect platform for spamming. Also, out of kindness, you probably want to make sure that your (registered) users know that their email addresses are exposed to the recipients.</p>
http://stackoverflow.com/questions/524797/python-sqlite-and-threading/524937#5249370Answer by paprika for python, sqlite and threading paprika2009-02-08T01:21:37Z2009-02-08T01:21:37Z<p>Depending on the application the DB could be a real overhead. If we are talking about volatile data, maybe you could skip the communication via DB completely and share the data between the <em>data gathering process</em> and the <em>data serving process(es)</em> via IPC. This is not an option if the data has to be persisted, of course.</p>
http://stackoverflow.com/questions/507927/how-do-i-install-pycurl/508143#5081430Answer by paprika for How do i install pyCurl?paprika2009-02-03T17:42:26Z2009-02-03T21:54:07Z<p>As it has been said already, it depends on the platform.</p>
<p>In general, I prefer to use only the Python interpreter itself that is packaged for my OS and install everything else in a <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtual environment</a>, but this is a whole different story...
If you've got <a href="http://pypi.python.org/pypi/setuptools/" rel="nofollow">setuptools</a> installed, installing most Python packages is as simple as:</p>
<pre><code>easy_install pycurl
</code></pre>
http://stackoverflow.com/questions/508657/multidimensional-array-in-python/508700#5087004Answer by paprika for Multidimensional array in Pythonpaprika2009-02-03T20:04:14Z2009-02-03T20:04:14Z<p>If you are OK using sparse arrays, you could use a dict to store your values. Python's dicts allow you to use tuples as keys, as such, you could assign to and access elements of the "sparse array" (which is really a dict here) like this:</p>
<pre><code>d = {}
d[0,2,7] = 123 # assign 123 to x=0, y=2, z=7
v = d[0,2,7]
</code></pre>
http://stackoverflow.com/questions/1871685/in-python-is-there-a-way-to-check-if-a-function-is-a-generator-function-before/1871702#1871702Comment by paprika on In python is there a way to check if a function is a "generator function" before calling it?paprika2009-12-09T05:14:06Z2009-12-09T05:14:06ZWas about to write the same but the Python übergod came in first. :-)http://stackoverflow.com/questions/1817047/enable-pylint-in-netbeansComment by paprika on Enable pylint in Netbeanspaprika2009-12-09T05:03:41Z2009-12-09T05:03:41ZI assume you don't want to implement support for pylint yourself. Still, if it happens so, you could start by learning from the following project that integrates some other style checker. As I expected, a lot of code is needed (ah, the simplicity of doing something like this for Emacs!), although probably much of it is generated. Here's the project: <a href="http://www.sickboy.cz/checkstyle/" rel="nofollow">sickboy.cz/checkstyle</a>http://stackoverflow.com/questions/1869305/guide-to-switch-from-visual-studio-to-emacs-on-windows/1869318#1869318Comment by paprika on Guide to switch from Visual Studio to Emacs on windows?paprika2009-12-09T04:02:09Z2009-12-09T04:02:09Z-1 because I really don't want SO to become another Slashdot. Don't get me wrong, I <i>love</i> Slashdot, but for different reasons. Part of my appreciation for SO comes from the fact that humorous answers are not commonplace here because they are considered distraction/noise. For me it comes down to this: Slashdot: fun, interesting comments, SO: no fun, just straight to the point answers.http://stackoverflow.com/questions/1817047/enable-pylint-in-netbeansComment by paprika on Enable pylint in Netbeanspaprika2009-11-29T23:42:17Z2009-11-29T23:42:17Z@Jeffrey: Netbeans is not a pure Java IDE, it has modes for C/C++, Ruby and Python, too. Granted, the Python mode is not as sophisticated as the Java part, still, it's already useful and it's getting better with every release.http://stackoverflow.com/questions/1781970/multiplying-a-tuple-by-a-scalarComment by paprika on Multiplying a tuple by a scalarpaprika2009-11-23T09:26:31Z2009-11-23T09:26:31ZWhat's wrong with <code>(10 * img.size[0], 10 * img.size[1])</code>? I don't see why you need to overengineer something as simple as a multiplication of 2 integers. Note that this tuple will always have only two elements!http://stackoverflow.com/questions/1781762/enabling-flyspell-mode-gives-an-errorComment by paprika on Enabling Flyspell-mode gives an errorpaprika2009-11-23T08:45:36Z2009-11-23T08:45:36ZDid you check if aspell works outside of Emacs, i.e. something like <code>cat foobar.txt |aspell -a -l en</code>?http://stackoverflow.com/questions/1781762/enabling-flyspell-mode-gives-an-errorComment by paprika on Enabling Flyspell-mode gives an errorpaprika2009-11-23T08:35:52Z2009-11-23T08:35:52ZPlease consider adding the output/error message in text form rather than an image attachment if possible, it would be much easier to read.http://stackoverflow.com/questions/1781617/to-understand-from-php-array-to-pythonComment by paprika on To understand: From PHP Array to Python ?paprika2009-11-23T08:15:17Z2009-11-23T08:15:17Z@therefromhere: At least in Python that's range(1,11), i.e. n+1 for the upper bound.http://stackoverflow.com/questions/1781617/to-understand-from-php-array-to-python/1781694#1781694Comment by paprika on To understand: From PHP Array to Python ?paprika2009-11-23T08:08:24Z2009-11-23T08:08:24Z+1: "Then, come back and ask specific questions that could yield specific answers." This is really the issue with this question. It seems the author didn't realize that this is a broad topic about how looping and data structures work in Python, and not a specific problem.http://stackoverflow.com/questions/1781618/configure-mysql-to-work-with-django/1781653#1781653Comment by paprika on Configure MySQL to work with Djangopaprika2009-11-23T08:02:12Z2009-11-23T08:02:12Z@Nimbuz:
It seems mysql_config is a command line tool that is part of the MySQL client library. On Debian you'd have to install "libmysqlclient15-dev", but apparently you use Mac OS X, so I can't help you with that.http://stackoverflow.com/questions/1781617/to-understand-from-php-array-to-pythonComment by paprika on To understand: From PHP Array to Python ?paprika2009-11-23T07:51:06Z2009-11-23T07:51:06ZDon't try to translate your collection of let's call them "patterns" into Python directly, you will probably produce code that's very [unpythonic][1]. Instead, take the time to learn about the basic Python data structures first before you jump the keyboard.
[1]: <a href="http://faassen.n--tree.net/blog/view/weblog/2005/08/06/0" rel="nofollow">faassen.n--tree.net/blog/view/…</a>
http://stackoverflow.com/questions/1781617/to-understand-from-php-array-to-python/1781649#1781649Comment by paprika on To understand: From PHP Array to Python ?paprika2009-11-23T07:47:35Z2009-11-23T07:47:35ZIf the first example really iterates over integers str(item) needs be used when printing those values.http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/377813#377813Comment by paprika on What dead programming languages do you know?paprika2009-11-21T18:19:21Z2009-11-21T18:19:21ZI was introduced to Comal some time around 1996 in middle school on DOS PCs. It was used in an introductory course for programming.http://stackoverflow.com/questions/1760245/mechanize-cant-login-pythonComment by paprika on mechanize can't login pythonpaprika2009-11-19T07:44:50Z2009-11-19T07:44:50ZA very experienced SO user asked you just two weeks ago to avoid using external [pastebin] services. Please paste the relevant part of the code right into your post. This way things stay in one place, your code is guaranteed to be still available as long as SO exists and people are bothered less => higher chance of answers.http://stackoverflow.com/questions/1286875/python-sip-library/1380887#1380887Comment by paprika on Python SIP librarypaprika2009-11-19T07:30:13Z2009-11-19T07:30:13ZNote that Twisted's SIP implementation is somewhat dated, it's still compliant with the old RFC (2543).