User Łukasz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:07:38Z http://stackoverflow.com/feeds/user/4999 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1159650/how-to-use-a-custom-site-package-using-pth-files-for-python-2-6/1159941#1159941 0 Answer by Łukasz for How to use a custom site-package using pth-files for Python 2.6? Łukasz 2009-07-21T15:27:09Z 2009-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#601636 0 Answer by Łukasz for Issues with BeautifulSoup parsing Łukasz 2009-03-02T08:31:44Z 2009-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#536685 3 Answer by Łukasz for Setting up Django on an internal server (os.environ() not working as expected?) Łukasz 2009-02-11T13:10:54Z 2009-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#536649 1 Answer by Łukasz for Execute arbitrary python code remotely - can it be done? Łukasz 2009-02-11T12:57:51Z 2009-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#126216 1 Answer by Łukasz for Python library for rendering HTML and javascript Łukasz 2008-09-24T09:33:24Z 2008-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#61483 8 Answer by Łukasz for The single most useful Emacs feature Łukasz 2008-09-14T17:22:11Z 2008-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#60815 4 Answer by Łukasz for Getting random row through SQLAlchemy Łukasz 2008-09-13T20:09:28Z 2008-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#60630 1 Answer by Łukasz for Automate firefox with python? Łukasz 2008-09-13T15:48:18Z 2008-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#60386 15 Answer by Łukasz for Great programming quotes Łukasz 2008-09-13T07:34:13Z 2008-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#48302 5 Answer by Łukasz for JQuery & Objects, trying to make a lightweight widget Łukasz 2008-09-07T10:41:46Z 2008-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('&lt;option&gt;&lt;/option&gt;').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#48274 0 Answer by Łukasz for Version track, automate DB schema changes with django Łukasz 2008-09-07T09:41:21Z 2008-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#1159137 Comment by Łukasz on backport function modifiers to python2.1 Łukasz 2009-07-21T14:05:51Z 2009-07-21T14:05:51Z from <code>&#95;&#95;future&#95;&#95;</code> import nested_scopes # this time should look right http://stackoverflow.com/questions/1159023/backport-function-modifiers-to-python2-1/1159137#1159137 Comment by Łukasz on backport function modifiers to python2.1 Łukasz 2009-07-21T14:05:17Z 2009-07-21T14:05:17Z from <code>`&#95;&#95;future&#95;&#95;</code>` import nested_scopes http://stackoverflow.com/questions/1159023/backport-function-modifiers-to-python2-1/1159137#1159137 Comment by Łukasz on backport function modifiers to python2.1 Łukasz 2009-07-21T14:04:29Z 2009-07-21T14:04:29Z as indicated in recipe comment you need nested scopes: from <b>future</b> import nested_scopes http://stackoverflow.com/questions/1156246/having-django-serve-downloadable-files Comment by Łukasz on Having Django serve downloadable files Łukasz 2009-07-21T13:51:02Z 2009-07-21T13:51:02Z If you want to take into account user permissions you have to serve file through Django's view http://stackoverflow.com/questions/60152/automate-firefox-with-python/60630#60630 Comment by Łukasz on Automate firefox with python? Łukasz 2009-07-21T11:45:27Z 2009-07-21T11:45:27Z Yes, as Selenium is written in Java. http://stackoverflow.com/questions/119167/adding-code-to-init-py/119178#119178 Comment by Łukasz on Adding code to __init__.py Łukasz 2008-09-24T06:33:51Z 2008-09-24T06:33:51Z This 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#59589 Comment by Łukasz on Tips for Learning Elisp? Łukasz 2008-09-14T17:36:25Z 2008-09-14T17:36:25Z Actually 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#58990 Comment by Łukasz on How would you design a very "Pythonic" UI framework? Łukasz 2008-09-13T15:42:56Z 2008-09-13T15:42:56Z Actually 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/&hellip;</a>).