User Łukasz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:07:38Zhttp://stackoverflow.com/feeds/user/4999http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1159650/how-to-use-a-custom-site-package-using-pth-files-for-python-2-6/1159941#11599410Answer by Łukasz for How to use a custom site-package using pth-files for Python 2.6?Łukasz2009-07-21T15:27:09Z2009-07-21T15:27:09Z<p>According to <a href="http://docs.python.org/library/site.html" rel="nofollow">documentation</a> you should put paths to .pth file so maybe entering:</p>
<pre><code>C:\Users\wierob\lib\python2.6
</code></pre>
<p>will work</p>
http://stackoverflow.com/questions/601166/issues-with-beautifulsoup-parsing/601636#6016360Answer by Łukasz for Issues with BeautifulSoup parsingŁukasz2009-03-02T08:31:44Z2009-03-02T08:31:44Z<p>I tested this script on BeautifulSoup version '3.0.7a' and it returns what appears to be correct output. I don't know what changed between '3.0.7a' and '3.1.0.1' but give it a try.</p>
http://stackoverflow.com/questions/531224/setting-up-django-on-an-internal-server-os-environ-not-working-as-expected/536685#5366853Answer by Łukasz for Setting up Django on an internal server (os.environ() not working as expected?)Łukasz2009-02-11T13:10:54Z2009-02-11T13:10:54Z<p>In your settings you have to point go actual egg file, not directory where egg file is located. It should look something like:</p>
<pre><code>sys.path.append('/path/to/flup/egg/flup-1.0.1-py2.5.egg')
</code></pre>
http://stackoverflow.com/questions/536370/execute-arbitrary-python-code-remotely-can-it-be-done/536649#5366491Answer by Łukasz for Execute arbitrary python code remotely - can it be done?Łukasz2009-02-11T12:57:51Z2009-02-11T12:57:51Z<p><a href="http://codespeak.net/pypy/dist/pypy/doc/stackless.html" rel="nofollow">Stackless</a> has ability to pickle and unpickle running code, maybe using that functionality there is possibility to build code transferring solution? </p>
http://stackoverflow.com/questions/126131/python-library-for-rendering-html-and-javascript/126216#1262161Answer by Łukasz for Python library for rendering HTML and javascript Łukasz2008-09-24T09:33:24Z2008-09-24T09:33:24Z<p>Only way I know to accomplish this would be to drive real browser, for example using <a href="http://selenium-rc.openqa.org" rel="nofollow">selenium-rc</a>.</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/61483#614838Answer by Łukasz for The single most useful Emacs featureŁukasz2008-09-14T17:22:11Z2008-09-14T17:22:11Z<p><a href="http://www.emacswiki.org/cgi-bin/wiki/HippieExpand" rel="nofollow">hippie-expand</a>, best text expansion in emacs, binding it to TAB and it will always do the right thing (and also very customizable).</p>
http://stackoverflow.com/questions/60805/getting-random-row-through-sqlalchemy/60815#608154Answer by Łukasz for Getting random row through SQLAlchemyŁukasz2008-09-13T20:09:28Z2008-09-13T20:09:28Z<p>This is very much database specifc issue.</p>
<p>I know that PostgreSQL and MySQL has abbility to order by random function, so You can use this in SQLAlchemy:</p>
<pre><code>select.order_by(func.random()) # for PostgreSQL
select.order_by(func.rand()) # for MySQL
</code></pre>
<p>Next You need to limit query to amout of records You need (for example using .limit()).</p>
<p>Bear in mind that at least in PostgreSQL selending random record has severe perfomance issues, <a href="http://www.depesz.com/index.php/2007/09/16/my-thoughts-on-getting-random-row/" rel="nofollow">here</a> is good article about it.</p>
http://stackoverflow.com/questions/60152/automate-firefox-with-python/60630#606301Answer by Łukasz for Automate firefox with python?Łukasz2008-09-13T15:48:18Z2008-09-13T15:48:18Z<p>I use <a href="http://selenium-rc.openqa.org/python.html" rel="nofollow">Selenium RC</a>. All my tests are written in Python and are run with test suite.</p>
<p>One minor thing is that You either have to start selenium manually and point Your tests to it or start selenium from test suite which requires little bit of coding. But it's doable.</p>
<p>Generally I'm very pleased with this solution.</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/60386#6038615Answer by Łukasz for Great programming quotesŁukasz2008-09-13T07:34:13Z2008-09-13T07:34:13Z<p>Waldi Ravens</p>
<blockquote>
<blockquote>
<p>A C program is like a fast dance on a newly waxed dance floor by people carrying razors.</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/48215/jquery-objects-trying-to-make-a-lightweight-widget/48302#483025Answer by Łukasz for JQuery & Objects, trying to make a lightweight widgetŁukasz2008-09-07T10:41:46Z2008-09-07T10:41:46Z<p>To add new method to jQuery You need to use jQuery.fn.methodName attribute, so in this case it will be:</p>
<pre><code>jQuery.fn.addOption = function (value, text) {
jQuery(this).append(jQuery('<option></option>').val(value).text(text));
};
</code></pre>
<p>But keep in mind that this addOption will be accessible from result of any $() call.</p>
http://stackoverflow.com/questions/20021/version-track-automate-db-schema-changes-with-django/48274#482740Answer by Łukasz for Version track, automate DB schema changes with djangoŁukasz2008-09-07T09:41:21Z2008-09-07T09:41:21Z<p>I heard lot of good about <a href="http://code.google.com/p/deseb/" rel="nofollow">Django Schema Evolution Branch</a> and those were opions of actual users. It mostely works out of the box and do what it should do.</p>
http://stackoverflow.com/questions/1159023/backport-function-modifiers-to-python2-1/1159137#1159137Comment by Łukasz on backport function modifiers to python2.1Łukasz2009-07-21T14:05:51Z2009-07-21T14:05:51Zfrom <code>__future__</code> import nested_scopes # this time should look righthttp://stackoverflow.com/questions/1159023/backport-function-modifiers-to-python2-1/1159137#1159137Comment by Łukasz on backport function modifiers to python2.1Łukasz2009-07-21T14:05:17Z2009-07-21T14:05:17Zfrom <code>`__future__</code>` import nested_scopes
http://stackoverflow.com/questions/1159023/backport-function-modifiers-to-python2-1/1159137#1159137Comment by Łukasz on backport function modifiers to python2.1Łukasz2009-07-21T14:04:29Z2009-07-21T14:04:29Zas indicated in recipe comment you need nested scopes:
from <b>future</b> import nested_scopeshttp://stackoverflow.com/questions/1156246/having-django-serve-downloadable-filesComment by Łukasz on Having Django serve downloadable filesŁukasz2009-07-21T13:51:02Z2009-07-21T13:51:02ZIf you want to take into account user permissions you have to serve file through Django's viewhttp://stackoverflow.com/questions/60152/automate-firefox-with-python/60630#60630Comment by Łukasz on Automate firefox with python?Łukasz2009-07-21T11:45:27Z2009-07-21T11:45:27ZYes, as Selenium is written in Java.http://stackoverflow.com/questions/119167/adding-code-to-init-py/119178#119178Comment by Łukasz on Adding code to __init__.pyŁukasz2008-09-24T06:33:51Z2008-09-24T06:33:51ZThis can also be for historical reasons. When you are converting module to package, module.py to module/__init__.py all existing code can use it as before but now module can have submodules.http://stackoverflow.com/questions/41522/tips-for-learning-elisp/59589#59589Comment by Łukasz on Tips for Learning Elisp?Łukasz2008-09-14T17:36:25Z2008-09-14T17:36:25ZActually strip-trailing-whitespace is already implemented, it's: delete-trailing-whitespace.http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/58990#58990Comment by Łukasz on How would you design a very "Pythonic" UI framework?Łukasz2008-09-13T15:42:56Z2008-09-13T15:42:56ZActually there is a trick to keep track of attributes ordering. Look at Django ORM fields (<a href="http://code.djangoproject.com/browser/django/trunk/django/db/models/fields/__init__.py#L59" rel="nofollow">code.djangoproject.com/browser/django/…</a>).