User Kozyarchuk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T07:31:31Zhttp://stackoverflow.com/feeds/user/27162http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/319426/how-do-i-do-a-case-insensitive-string-comparison-in-python3How do I do a case insensitive string comparison in Python?Kozyarchuk2008-11-26T01:06:44Z2009-09-06T18:15:02Z
<p>What's the best way to do case insensitive string comparison in Python?</p>
<p>I would like to encapsulate comparison of a regular strings to a repository string using in a very simple and pythonic way. I also would like to have ability to look up values in a dict hashed by strings using regular python strings. Much obliged for advice.</p>
http://stackoverflow.com/questions/1156819/looking-for-python-gui/1156877#11568770Answer by Kozyarchuk for Looking for Python gui Kozyarchuk2009-07-21T01:28:56Z2009-07-21T01:28:56Z<p>Personally, I found all of python native GUI technologies quirky and limiting. </p>
<p>However, python integrates well with pretty much any technology outhere including Flash and Winforms/WPF. I am currently building a rich UIs using Python and Winforms using Python.Net as bridge technology. I found it very easy to use. It also let's me do all the GUI heavy lifting in Visual Studio keeping presenter, model and below logic in Python.</p>
http://stackoverflow.com/questions/694968/ironclad-import-error0Ironclad import errorKozyarchuk2009-03-29T17:06:10Z2009-07-05T11:00:01Z
<p>I am getting the following error when trying to import a C-Extension I need with irconclad. Is this related to my configuration or limitation in ironclad?</p>
<pre><code>C:\devtools\ipython>ipy
IronPython 2.0 (2.0.0.0) on .NET 2.0.50727.3053
Type "help", "copyright", "credits" or "license" for more information.
>>> import ironclad
>>> ironclad.__version__
'0.8.1'
>>> import acm
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 15, in load_module
File "ironclad", line unknown, in LoadModule
File "ironclad", line unknown, in Load
File "ironclad", line unknown, in Invoke
File "ironclad", line unknown, in Py_IsInitialized
NotImplementedError: called Py_IsInitialized -- stack is probably corrupt now
</code></pre>
http://stackoverflow.com/questions/207278/career-day-how-do-i-make-computer-programmer-sound-cool-to-8-year-olds49Career Day: how do I make "computer programmer" sound cool to 8 year olds?Kozyarchuk2008-10-16T02:57:57Z2009-05-27T22:06:16Z
<p>Have to do a talk at Career Day at my kid's school & looking for ideas on how to make "computer programmer" sound cool to 8 year olds. </p>
http://stackoverflow.com/questions/191673/preferred-python-unit-testing-framework/195144#19514411Answer by Kozyarchuk for Preferred Python unit-testing frameworkKozyarchuk2008-10-12T06:09:41Z2009-05-06T21:01:02Z<p><code>nose</code> isn't really a unit testing framework. It's a test runner and a great one at that. It can run tests created using <code>pyUnit</code>, <code>py.test</code> or <code>doctest</code>.</p>
<p>My preference for unit testing framework is pyUnit. It's similar to other xUnit frameworks and is easy to relate to for people without python background. There is also pretty good support for it in Eclipse/PyDev</p>
<p>On <code>py.test</code>, I find multiple levels of setup/teardowns very confusing. I also find that it leads to highly unstructured and hard to read unit tests.</p>
<p><code>doctest</code> is OK for simple things, but I find that it's very limiting and doesn't really scale for complex and highly interactive code.</p>
http://stackoverflow.com/questions/717027/anonymous-instantiation-syntax-good-or-bad/717047#7170471Answer by Kozyarchuk for Anonymous Instantiation Syntax - Good or Bad?Kozyarchuk2009-04-04T13:09:17Z2009-04-04T13:09:17Z<p>First statement. It's more readable, has less code and doesn't leave temps around. </p>
http://stackoverflow.com/questions/717012/how-can-a-developer-learn-about-web-design/717034#7170341Answer by Kozyarchuk for How can a developer learn about web design?Kozyarchuk2009-04-04T13:03:33Z2009-04-04T13:03:33Z<p>The best way to learn is to start doing and soliciting feedback. The key is making sure that your site is as simple, intuitive and easy to use, yet providing a very rich content and feature set.</p>
<p>This post makes a very powerful demonstration of what good UI design means. <a href="http://stuffthathappens.com/blog/2008/03/05/simplicity/" rel="nofollow">http://stuffthathappens.com/blog/2008/03/05/simplicity/</a></p>
http://stackoverflow.com/questions/716477/join-list-of-lists-in-python8join list of lists in pythonKozyarchuk2009-04-04T04:00:35Z2009-04-04T09:34:33Z
<p>Is the a short syntax for joining a list of lists into a single list( or iterator) in python?</p>
<p>For example I have a list as follows and I want to iterate over a,b and c. </p>
<pre><code>x = [["a","b"], ["c"]]
</code></pre>
<p>The best I can come up with is as follows.</p>
<pre><code>result = []
[ result.extend(el) for el in x]
for el in result:
print el
</code></pre>
http://stackoverflow.com/questions/707999/debugging-a-running-python-process6Debugging a running python process Kozyarchuk2009-04-02T01:45:03Z2009-04-02T03:44:35Z
<p>Is there a way to see a stacktrace of what various threads are doing inside a python process? </p>
<p>Let's suppose I have a thread which allows me some sort of remote access to the process.</p>
http://stackoverflow.com/questions/707491/questions-re-current-state-of-gui-programming-with-python/708022#7080220Answer by Kozyarchuk for questions re: current state of GUI programming with PythonKozyarchuk2009-04-02T01:56:36Z2009-04-02T01:56:36Z<p>We've been quite happy using Python.Net to build our UIs in WinForms and using CPython for Presenter, Model. IronPython is also a good tool if you want to do python on Windows.</p>
http://stackoverflow.com/questions/694588/python-eggs-how-can-i-force-setuptools-to-use-manually-installed-packages-and-do/694777#6947771Answer by Kozyarchuk for Python eggs: how can I force setuptools to use manually installed packages and don't install them again from internet?Kozyarchuk2009-03-29T15:12:14Z2009-03-29T15:12:14Z<ol>
<li>MSVC/gcc is only needed for source distributions, binary distributions do not require that. If library you need doesn't provide it( and many don't) you can create one yourself and use it internally. ( to do so run python setup.py bdist ) </li>
<li>You can then tell setuptools to look at your local cache of eggs/binary distributions. See command line options</li>
<li>This maybe good enough for most developers/python friendly folks on your team.</li>
<li>For your end users you should consider providing a deployment/distribution which already has all components pre-installed into a local python sandbox. virtualenv and zc.buildout may be of help here.</li>
</ol>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices5Python coding standards/best practicesKozyarchuk2008-12-10T14:10:07Z2009-03-26T01:48:44Z
<p>In python do you generally use <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8 -- Style Guide for Python Code</a> as your coding standards/guidelines? Are there any other formalized standards that you prefer?</p>
http://stackoverflow.com/questions/597397/what-is-an-esb-and-what-is-it-good-for/597447#5974470Answer by Kozyarchuk for What is an ESB and what is it good for?Kozyarchuk2009-02-28T03:27:39Z2009-02-28T03:27:39Z<p>Beyond a the standard definition you can get from <a href="http://en.wikipedia.org/wiki/Enterprise%5Fservice%5Fbus" rel="nofollow">Wikipedia</a>. I find it to be a great tool for connecting a bunch of legacy systems across multiple platforms and technologies. It's also a good tools for building distributed workflows and state management systems( such as general ledger). </p>
<p>However, it's rather expensive, complex and inconvenient to maintain and extend which makes it a poor technology choice as a general purpose tool for scaling you applications.</p>
http://stackoverflow.com/questions/351760/python-method-arguments-with-spaces0Python method arguments with spacesKozyarchuk2008-12-09T04:14:45Z2008-12-09T16:36:00Z
<p>I would like to create a simple file format/DSL which would allow my users to input data. My system is in python and using python's parser is appealing.
Syntax like this for defining a data element seems quite convenient.</p>
<pre><code>Allocation(Param1 = Val1, Param2 = Val2 )
</code></pre>
<p>However, it does not support param names with spaces.</p>
<pre><code>Allocation(Param 1 = Val1, Param 2 = Val2 )
</code></pre>
<p>Python parser friendly versions can look as follows, but not very user friendly.</p>
<pre><code>Allocation(("Param 1",Val1), ("Param 2",Val1) )
Allocation(**{"Param 1":Val1, "Param 2":Val1} )
</code></pre>
<p>Is there a way to make this more readable in python?</p>
http://stackoverflow.com/questions/340128/ironpython-for-unit-testing-over-c/346907#3469073Answer by Kozyarchuk for IronPython For Unit Testing over C#Kozyarchuk2008-12-06T22:28:16Z2008-12-06T22:28:16Z<p>Python is excellent for UnitTesting C# code. Our app is 75% in Python and 25% C#(Python.Net), and our unit tests are 100% python. </p>
<p>I find that it's much easier to make use of stubs and mocks in Python which is probably one of the most critical components that enable one to write effective unittests.</p>
http://stackoverflow.com/questions/341251/how-has-unit-testing-made-your-life-better/346891#3468910Answer by Kozyarchuk for How has unit testing made your life better ?Kozyarchuk2008-12-06T22:16:50Z2008-12-06T22:16:50Z<p>It saves me time, because when I run code TDD, it usually just works when it comes to integration time, so no need to spend agonizing hours debugging.</p>
<p>It also gives me confidence having a conversation with other developers claiming that API I created has bugs. </p>
http://stackoverflow.com/questions/346723/is-it-more-efficient-to-use-import-module-or-from-module-import-func/346753#3467537Answer by Kozyarchuk for Is it more efficient to use "import <module>" or "from <module> import <func>"?Kozyarchuk2008-12-06T20:45:37Z2008-12-06T20:45:37Z<p>There is no difference on the import, however there is a small difference on access.</p>
<p>When you access the function as</p>
<pre><code>re.findall()
</code></pre>
<p>python will need to first find the module in the global scope and then find findall in modules dict. May make a difference if you are calling it inside a loop thousands of times.</p>
http://stackoverflow.com/questions/146670/hardest-concept-to-grasp-as-a-beginner/346602#3466020Answer by Kozyarchuk for Hardest concept to grasp as a beginnerKozyarchuk2008-12-06T18:51:32Z2008-12-06T18:51:32Z<p>I am still struggling with a visitor pattern</p>
http://stackoverflow.com/questions/346487/job-exit-interviews-how-to-handle-them-how-to-prepare/346508#3465081Answer by Kozyarchuk for Job exit interviews: how to handle them, how to prepare?Kozyarchuk2008-12-06T17:25:16Z2008-12-06T17:25:16Z<p>If you leave because you disagree with your manager or the company operates, this is your opportunity to provide feedback. But don't burn bridges, there is a high likelihood they may want you back at some point in the future. </p>
http://stackoverflow.com/questions/345991/python-no-handlers-could-be-found-for-logger-opengl-error/346501#3465014Answer by Kozyarchuk for Python - No handlers could be found for logger "OpenGL.error"Kozyarchuk2008-12-06T17:18:34Z2008-12-06T17:18:34Z<p>Looks like OpenGL is trying to report some error on Win2003, however you've not configured your system where to output logging info.</p>
<p>You can add the following to the beginning of your program and you'll see details of the error in stderr.</p>
<pre><code>import logging
logging.basicConfig()
</code></pre>
<p>Checkout documentation on <a href="http://www.python.org/doc/2.5.2/lib/module-logging.html" rel="nofollow">logging</a> module to get more config info, conceptually it's similar to log4J.</p>
http://stackoverflow.com/questions/345698/what-are-the-tell-tale-signs-of-bad-object-oriented-design/345782#3457823Answer by Kozyarchuk for What are the tell-tale signs of bad object oriented design?Kozyarchuk2008-12-06T02:26:32Z2008-12-06T15:12:47Z<p>This question makes the assumption that object-oriented means good design. There are cases where another approach is much more appropriate. </p>
http://stackoverflow.com/questions/345873/would-you-give-a-programmer-a-2nd-chance-if/345912#3459120Answer by Kozyarchuk for Would you give a programmer a 2nd chance if...Kozyarchuk2008-12-06T04:28:54Z2008-12-06T04:28:54Z<p>I consider pairing/coding with the person the most important part of the interview. If the person isn't able to write code that solves business programs, he isn't a programmer. Being able to work on the team comes next.</p>
http://stackoverflow.com/questions/345080/what-should-computer-science-be-called/345797#3457970Answer by Kozyarchuk for What should 'Computer Science' be called?Kozyarchuk2008-12-06T02:41:23Z2008-12-06T02:41:23Z<p>Building computer programs is not a science, it's an art or at best a craft. </p>
<p>Programming is about explaining ones thoughts and ideas in a limited language to an entity that will do exactly what you tell it and it a way that other humans can also understand. </p>
http://stackoverflow.com/questions/345746/refactoring-python-module-configuration-to-avoid-relative-imports/345790#3457900Answer by Kozyarchuk for Refactoring python module configuration to avoid relative imports.Kozyarchuk2008-12-06T02:35:54Z2008-12-06T02:35:54Z<p>require statement from <a href="http://peak.telecommunity.com/DevCenter/PkgResources#basic-workingset-methods" rel="nofollow">pkg_resources</a> maybe what you need. </p>
http://stackoverflow.com/questions/345745/is-this-idiom-pythonic-somebool-and-true-result-or-false-result/345774#3457740Answer by Kozyarchuk for Is this idiom pythonic? (someBool and "True Result" or "False Result") Kozyarchuk2008-12-06T02:15:53Z2008-12-06T02:15:53Z<p>Yikes. Not readable at all. For me pythonic means easy to read.</p>
<pre><code>return isUp and "Up" or "Down"
</code></pre>
<p>Sounds something you would do in perl.</p>
http://stackoverflow.com/questions/345753/now-that-ive-converted-my-primary-keys-to-guids-how-do-i-fix-the-performance/345768#3457681Answer by Kozyarchuk for Now that I've converted my primary keys to GUIDs, how do I fix the performance?Kozyarchuk2008-12-06T02:11:35Z2008-12-06T02:11:35Z<p>If your table is indexed by the fields your are querying by. content of the key shouldn't have any noticeable performance impact. They maybe something else there .</p>
http://stackoverflow.com/questions/345737/your-most-common-programming-mistakes/345761#3457611Answer by Kozyarchuk for Your most common programming mistakes?Kozyarchuk2008-12-06T02:07:49Z2008-12-06T02:07:49Z<p>Re Python. </p>
<ul>
<li>Use a decent editor that integrates
pyChecker and you will not make that
mistake.</li>
</ul>
<p>Here are some of the python quirks I've spent countless hours debugging. </p>
<ul>
<li>from my_module import * also imports not only classes/methods that are defined in that file but also ones imported by that module</li>
<li>It's too easy to hurt yourself when overriding _ <em>getattr</em> _. Also always forget which of _ <em>getattr</em> _ vs _ <em>getattribute</em> _ are OK to use and which is not.</li>
<li>Why do I have to implement _ _ne __ when I already implemented __ eq __ </li>
</ul>
http://stackoverflow.com/questions/316238/python-float-to-decimal-conversion2python float to Decimal conversionKozyarchuk2008-11-25T02:53:44Z2008-12-04T22:41:36Z
<p>Python Decimal doesn't support being constructed from float, it expects that you have to convert float to a string first. </p>
<p>This is very inconvenient since standard string formattors for float require that you specify number of decimal places rather than significant places. So if you have a number that could have as many as 15 decimal places you need to format as Decimal(""%.15f"% my_float), which will give you garbage at the 15th decimal place if you also have any significant digits before decimal.</p>
<p>Can someone suggest a good way to convert from float to Decimal preserving value as the user has entered, perhaps limiting number of significant digits that can be supported.</p>
http://stackoverflow.com/questions/329931/sql-select-join-is-it-possible-to-prefix-all-columns-as-prefix/329948#329948-1Answer by Kozyarchuk for SQL select join: is it possible to prefix all columns as 'prefix.*'?Kozyarchuk2008-12-01T03:24:31Z2008-12-01T03:24:31Z<p>select * usually makes for bad code, as new columns tend to get added or order of columns change in tables quite frequently which usually breaks select * in a very subtle ways. So listing out columns is the right solution.</p>
<p>As to how to do your query, not sure about mysql but in sqlserver you could select column names from syscolumns and dynamically build the select clause.</p>
http://stackoverflow.com/questions/326883/how-to-unit-test-in-memory-entity-framework/326917#3269171Answer by Kozyarchuk for How to unit test (in memory) entity framework?Kozyarchuk2008-11-28T23:51:05Z2008-11-28T23:51:05Z<p>Unless you are building/modifying the framework itself, you shouldn't need to unit test it.</p>
<p>As for unit testing entity classes you define, I would recommend the following.
1. Create a stub implementation that uses an <a href="http://martinfowler.com/bliki/InMemoryTestDatabase.html" rel="nofollow">in memory database</a>. Which will allow you to test class interaction.
2. Design you classes in such a way that business logic does not require the Entity Framework and unit test those directly.</p>
http://stackoverflow.com/questions/1219815/python-prefer-several-small-modules-or-one-larger-module/1219844#1219844Comment by Kozyarchuk on Python: prefer several small modules or one larger module?Kozyarchuk2009-08-04T01:47:59Z2009-08-04T01:47:59ZWell, import cost would generally be in seconds even for larger apps and is usually at startup, so may not be as much of an issue for a long running process. But it could make a big difference if you are building a user launchable application or creating a subprocess to perform certain tasks in parallel.http://stackoverflow.com/questions/1219815/python-prefer-several-small-modules-or-one-larger-module/1219844#1219844Comment by Kozyarchuk on Python: prefer several small modules or one larger module?Kozyarchuk2009-08-03T03:14:47Z2009-08-03T03:14:47ZImporting a module causes a file seek/read operation, which is quite expensive. So there is a non trivial application startup cost to having modules. Unless distributing you code in zipped mode, having several hundred modules will cost you on the order of 2-5 seconds to import. ( more if you import from the network).http://stackoverflow.com/questions/1099305/why-is-ruby-more-suitable-for-rails-than-python/1101251#1101251Comment by Kozyarchuk on Why is Ruby more suitable for Rails than Python?Kozyarchuk2009-07-09T03:28:59Z2009-07-09T03:28:59ZFor me the fact that I need to put in lot's of space wasting "ends" in Ruby more than makes up for lack of obscure "nice" features.http://stackoverflow.com/questions/886221/does-django-scaleComment by Kozyarchuk on Does Django Scale?Kozyarchuk2009-05-28T02:50:01Z2009-05-28T02:50:01ZWould be interesting to compare this with RoR.http://stackoverflow.com/questions/707491/questions-re-current-state-of-gui-programming-with-pythonComment by Kozyarchuk on questions re: current state of GUI programming with PythonKozyarchuk2009-04-02T01:57:58Z2009-04-02T01:57:58Z-1: as well. Doesn't look like any real research was done. This post is just a complaint...http://stackoverflow.com/questions/351760/python-method-arguments-with-spaces/351802#351802Comment by Kozyarchuk on Python method arguments with spacesKozyarchuk2008-12-09T19:47:23Z2008-12-09T19:47:23ZYeah, I think that the way I'll do it. But seems a bit too verbose.http://stackoverflow.com/questions/351760/python-method-arguments-with-spaces/351802#351802Comment by Kozyarchuk on Python method arguments with spacesKozyarchuk2008-12-09T13:31:11Z2008-12-09T13:31:11Zmy goal is to provide a DSL which can be used for data entry into the system. In the above scenario, params would be people names and values would be percentages.http://stackoverflow.com/questions/146670/hardest-concept-to-grasp-as-a-beginner/148567#148567Comment by Kozyarchuk on Hardest concept to grasp as a beginnerKozyarchuk2008-12-06T18:56:08Z2008-12-06T18:56:08ZI don't think it's just for beginnershttp://stackoverflow.com/questions/316238/python-float-to-decimal-conversion/316308#316308Comment by Kozyarchuk on python float to Decimal conversionKozyarchuk2008-11-25T04:10:12Z2008-11-25T04:10:12ZUnfortunately it's stored as float in the DB and I can't change the schemahttp://stackoverflow.com/questions/316238/python-float-to-decimal-conversion/316248#316248Comment by Kozyarchuk on python float to Decimal conversionKozyarchuk2008-11-25T03:09:55Z2008-11-25T03:09:55Zrepr returns 17 significant places, but there are often errors in 16th and 17th significant place. So the following does not work.
from decimal import Decimal
start = Decimal('500.123456789016')
assert start == Decimal(repr(float(start))), "%s != %s " % (start, Decimal(repr(float(start))))
http://stackoverflow.com/questions/268119/whats-the-worst-piece-of-code-you-have-come-acrossComment by Kozyarchuk on Whats the worst piece of code you have come across?Kozyarchuk2008-11-07T04:14:53Z2008-11-07T04:14:53Zplease reopen. this would have been funhttp://stackoverflow.com/questions/214357/how-to-make-a-living-by-programming-from-home/214401#214401Comment by Kozyarchuk on How to make a living by programming from homeKozyarchuk2008-10-18T02:18:52Z2008-10-18T02:18:52ZIt's a question of expertize and skill. In my experience a good programmer is worth 100 mediocre ones. http://stackoverflow.com/questions/195116/python-decimal/195124#195124Comment by Kozyarchuk on Python DecimalKozyarchuk2008-10-13T03:17:51Z2008-10-13T03:17:51Zgmpy's mpf yields the same performance as float, it doesn't have inherent float issues such as precise compares and seems to be mostly compatible with Python Decimal interface.http://stackoverflow.com/questions/195116/python-decimal/195140#195140Comment by Kozyarchuk on Python DecimalKozyarchuk2008-10-12T13:12:13Z2008-10-12T13:12:13Zwell, long is actually faster than float.
FLOAT 0.0551114582687
DECIMAL 3.39638546341
LONG 0.036625594419
Issue is with implementation of Python's Decimal. It holds value as a list of ints. Why not store the value as unbounded python long.
Will try gmpy