User Tartley - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:01:55Z http://stackoverflow.com/feeds/user/10176 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1362257/licensing-do-i-need-to-register-company-for-license-agreement/1362285#1362285 1 Answer by Tartley for Licensing: Do I need to register company for License Agreement? Tartley 2009-09-01T12:43:19Z 2009-09-01T12:43:19Z <p>I suspect using the website would not, strictly speaking, be valid.</p> <p>I think that a company works because it is a recognised legal entity, with rights and responsibilities.</p> <p>Similarly, a person is also recognised as a legal entity, with its own set of rights and responsibility.</p> <p>So my guess would be that the correct way would be to use your own name.</p> <p>Presumably if your license was such that you agreed to be liable for any damages, etc, that resulted from the use of your program, then that would make you personally liable. That is why software licenses always say 'we own this but you use it at your own risk'.</p> <p>I have no expertise on this topic, but this is my understanding.</p> http://stackoverflow.com/questions/1278395/rotating-opengl-scene-in-2-axes/1327478#1327478 0 Answer by Tartley for Rotating OpenGL scene in 2 axes Tartley 2009-08-25T10:50:02Z 2009-08-25T10:50:02Z <p>Hey there,</p> <p>When you say rotate vertically and horizontally, do you mean like an anti-aircraft gun - rotate around the vertical Z axis, to face in a particular compass heading (yaw) and then rotate to a particular elevation (pitch)?</p> <p>If this is the case, then you just need to do your two rotations in the right order, and all will be well. In this example, you must do the 'pitch' rotation first, and then the 'yaw' rotation. All will work out fine.</p> <p>If you mean something more complicated (eg. like the 'Cobra' spaceship in Elite) then you will need a more fiddly solution.</p> http://stackoverflow.com/questions/1150093/can-i-create-a-python-extension-module-in-d-instead-of-c 9 Can I create a Python extension module in D (instead of C) Tartley 2009-07-19T15:10:18Z 2009-08-22T06:45:00Z <p>I hear D is link-compatible with C. I'd like to use D to create an extension module for Python. Am I overlooking some reason why it's never going to work?</p> http://stackoverflow.com/questions/1192632/how-to-convert-restructuredtext-to-plain-text/1236368#1236368 0 Answer by Tartley for How to convert reStructuredText to plain text Tartley 2009-08-06T00:07:48Z 2009-08-06T08:02:24Z <p>I have also seen this done by rendering to html using rst2html, then converting the html to plain text by using a command-line html browser, such as:</p> <ul> <li>lynx <a href="http://lynx.browser.org" rel="nofollow">http://lynx.browser.org</a></li> <li>links <a href="http://links.sourceforge.net" rel="nofollow">http://links.sourceforge.net</a></li> <li>w3m <a href="http://w3m.sourceforge.net" rel="nofollow">http://w3m.sourceforge.net</a></li> <li>elinks <a href="http://elinks.or.cz" rel="nofollow">http://elinks.or.cz</a></li> </ul> <p>Each of these browsers has a command-line switch or similar to render its output to a .txt file, so you could create a two line script called 'rst2txt', something like:</p> <pre><code>rst2html docs.rst docs.html lynx docs.html --dump-or-something docs.txt </code></pre> http://stackoverflow.com/questions/858230/ironpython-and-instantiating-com-objects/1152680#1152680 0 Answer by Tartley for IronPython and instantiating COM objects Tartley 2009-07-20T09:53:57Z 2009-07-20T09:53:57Z <p>You need to use:</p> <pre><code>session = Redemption.RDOSessionClass() </code></pre> http://stackoverflow.com/questions/58213/can-you-recommend-low-cost-automated-testing-tools-for-a-net-winforms-applicatio/1150284#1150284 0 Answer by Tartley for Can you recommend low cost automated testing tools for a .NET Winforms application? Tartley 2009-07-19T16:42:02Z 2009-07-19T16:42:02Z <p>One low cost tool is to write your own. That's what we have done.</p> <p>We use IronPython to write our tests. It's a great language for that. It's a full .NET language, so it can call your .NET product code seamlessly, regardless of whether it's C# or whatever. We build our tests on top of the Python standard library module 'unittest'.</p> <p>This works out-of-the-box for unit tests. For functional tests, we had to create a nontrivial framework, to allow our tests to fire up the application, and give our tests helper methods to click GUI buttons, type text in textboxes, etc.</p> <p>Overall we're happy with the result.</p> http://stackoverflow.com/questions/17489/best-environment-for-python-on-windows/1150269#1150269 1 Answer by Tartley for Best environment for Python on Windows? Tartley 2009-07-19T16:36:29Z 2009-07-19T16:36:29Z <p>Given the nuances of your question, this probably isn't the answer that the OP wants to hear, but just in case anyone else with different sensibilities is reading this: I recommend using Vim or Emacs, coupled with other tools like ctags - yes, even for Windows development.</p> <p>I have an anecdote to support this:</p> <p>At work I do IronPython development, developing a .NET product on Windows only. We let developers choose their own IDEs, so like the stereotype of herded cats, everyone chose a different one. This was fine.</p> <p>We also pair program. We change pairs every day. (call us crazy, iet works really well for us) Doing this means we are all exposed to a large number of different IDEs, and get to use them, hands-on, with an expert user of that IDE sitting by our side, 8 hours a day, every day.</p> <p>This means we have all become quite proficient and knowledgeable about many different IDEs. After a while, some of us saw the good aspects of other IDEs that we didn't appreciate before. People started switching, using on their own Desktop an IDE that they had grown to appreciate through using it while pairing with somebody else.</p> <p>You can tell what I'm going to say: After a year or so, almost everyone in the office now uses Vim or Emacs. (Exceptions: One guy uses Wing. One guy has steadfastly stuck with TextPad throughout.)</p> <p>My interpretation of this is that Vim or Emacs are palpably better than integrated IDEs - but you do have to figure them out, and one way of doing that is to work side by side with someone who knows them.</p> <p>Best regards.</p> http://stackoverflow.com/questions/307357/best-test-runner-unit-testing-net/1150187#1150187 0 Answer by Tartley for Best test runner? (Unit Testing, .NET) Tartley 2009-07-19T16:02:25Z 2009-07-19T16:02:25Z <p>We write our .NET tests in IronPython, which means we can write all our tests using the Python standard library module 'unittest'. The advantage of this is that running tests is a single command. We used to use cruise control and the like, but have since replaced it with about ten lines of Python. This works for both unit tests and functional tests. Obviously this won't work for everyone, but some people will probably find this a productive route to go.</p> http://stackoverflow.com/questions/507077/testing-a-test/1150156#1150156 1 Answer by Tartley for Testing a test? Tartley 2009-07-19T15:48:18Z 2009-07-19T15:48:18Z <p>We generally use these rules of thumb:</p> <p>1) All product code has both unit tests (arranged to correspond closely with product code classes and functions), and separate functional tests (arranged by user-visible features)</p> <p>2) Do not write tests for 3rd party code, such as .NET controls, or third party libraries. The exception to this is if you know they contain a bug which you are working around. A regression test for this (which fails when the 3rd party bug disappears) will alert you when upgrades to your 3rd party libraries fix the bug, meaning you can then remove your workarounds.</p> <p>3) Unit tests and functional tests are not, themselves, ever directly tested - APART from using the TDD procedure of writing the test before the product code, then running the test to watch it fail. If you don't do this, you will be <em>amazed</em> by how easy it is to accidentally write tests which <em>always</em> pass. Ideally, you would then implement your product code one step at a time, and run the tests after each change, in order to see every single assertion in your test fail, then get implemented and start passing. Then you will see the next assertion fail. In this way, your tests DO get tested, but only while the product code is being written.</p> <p>4) If we factor out code from our unit or functional tests - creating a testing library which is used in many tests, then we do unit test all of this.</p> <p>This has served us very well. We seem to have always stuck to these rules 100%, and we are very happy with our arrangement.</p> http://stackoverflow.com/questions/1132291/how-to-create-a-fractal-cube/1146553#1146553 0 Answer by Tartley for How to create a fractal cube? Tartley 2009-07-18T02:41:12Z 2009-07-18T02:41:12Z <p>A nice introduction to Perlin noise, written by Ken Perlin himself, is <a href="http://www.noisemachine.com/talk1/" rel="nofollow">here</a>. He talks about generating a one or two dimensional noise function in some detail, and then generalises it to show how it would work in 3D, to generate a solid cube of noise like you want.</p> http://stackoverflow.com/questions/1085852/interface-for-modifying-windows-environment-variables-from-python/1146404#1146404 1 Answer by Tartley for Interface for modifying Windows environment variables from Python Tartley 2009-07-18T01:25:12Z 2009-07-18T01:25:12Z <p>Using setx has few drawbacks, especially if you're trying to append to environment variables (eg. setx PATH %Path%;C:\mypath) This will repeatedly append to the path every time you run it, which can be a problem. Worse, it doesn't distinguish between the machine path (stored in HKEY_LOCAL_MACHINE), and the user path, (stored in HKEY_CURRENT_USER). The environment variable you see at a command prompt is made up of a concatenation of these two values. Hence, before calling setx:</p> <pre><code>user PATH == u machine PATH == m %PATH% == m;u &gt; setx PATH %PATH%;new Calling setx sets the USER path by default, hence now: user PATH == m;u;new machine PATH == m %PATH% == m;m;u;new </code></pre> <p>The system path is unavoidably duplicated in the %PATH% environment variable every time you call setx to append to PATH. These changes are permanent, never reset by reboots, and so accumulate through the life of the machine.</p> <p>Trying to compensate for this in DOS is beyond my ability. So I turned to Python. The solution I have come up with today, to set environment variables by tweaking the registry, including appending to PATH without introducing duplicates, is as follows:</p> <pre><code>from os import system, environ import win32con from win32gui import SendMessage from _winreg import ( CloseKey, OpenKey, QueryValueEx, SetValueEx, HKEY_CURRENT_USER, HKEY_LOCAL_MACHINE, KEY_ALL_ACCESS, KEY_READ, REG_EXPAND_SZ, REG_SZ ) def env_keys(user=True): if user: root = HKEY_CURRENT_USER subkey = 'Environment' else: root = HKEY_LOCAL_MACHINE subkey = r'SYSTEM\CurrentControlSet\Control\Session Manager\Environment' return root, subkey def get_env(name, user=True): root, subkey = env_keys(user) key = OpenKey(root, subkey, 0, KEY_READ) try: value, _ = QueryValueEx(key, name) except WindowsError: return '' return value def set_env(name, value): key = OpenKey(HKEY_CURRENT_USER, 'Environment', 0, KEY_ALL_ACCESS) SetValueEx(key, name, 0, REG_EXPAND_SZ, value) CloseKey(key) SendMessage( win32con.HWND_BROADCAST, win32con.WM_SETTINGCHANGE, 0, 'Environment') def remove(paths, value): while value in paths: paths.remove(value) def unique(paths): unique = [] for value in paths: if value not in unique: unique.append(value) return unique def prepend_env(name, values): for value in values: paths = get_env(name).split(';') remove(paths, '') paths = unique(paths) remove(paths, value) paths.insert(0, value) set_env(name, ';'.join(paths)) def prepend_env_pathext(values): prepend_env('PathExt_User', values) pathext = ';'.join([ get_env('PathExt_User'), get_env('PathExt', user=False) ]) set_env('PathExt', pathext) set_env('Home', '%HomeDrive%%HomePath%') set_env('Docs', '%HomeDrive%%HomePath%\docs') set_env('Prompt', '$P$_$G$S') prepend_env('Path', [ r'%SystemDrive%\cygwin\bin', # Add cygwin binaries to path r'%HomeDrive%%HomePath%\bin', # shortcuts and 'pass-through' bat files r'%HomeDrive%%HomePath%\docs\bin\mswin', # copies of standalone executables ]) # allow running of these filetypes without having to type the extension prepend_env_pathext(['.lnk', '.exe.lnk', '.py']) </code></pre> <p>It does not affect the current process or the parent shell, but it will affect all cmd windows opened after it is run, without needing a reboot, and can safely be edited and re-run many times without introducing any duplicates.</p> http://stackoverflow.com/questions/756180/pylint-warning-on-except-exception/1114833#1114833 4 Answer by Tartley for pylint warning on 'except Exception:' Tartley 2009-07-11T22:37:07Z 2009-07-11T22:37:07Z <p>Since Python2.6 catching Exception has become a lot more reasonable, because all the exceptions that you wouldn't want to catch (SystemExit, KeyboardInterrupt) no longer inherit from Exception. They instead inherit from a common BaseException instead. This has been done deliberately in order to make catching Exception relatively harmless, since it is such a common idiom.</p> <p>See <a href="http://www.python.org/dev/peps/pep-3110/" rel="nofollow">PEP 3110</a> for details &amp; future plans.</p> http://stackoverflow.com/questions/67223/why-might-my-pyglet-vertex-lists-and-batches-be-very-slow-on-windows 1 why might my pyglet vertex lists and batches be very slow on Windows? Tartley 2008-09-15T21:33:41Z 2009-05-22T03:00:03Z <p>I'm writing opengl code in python using the library pyglet. When I draw to the screen using pyglet.graphics.vertex_list or pyglet.graphics.batch objects, they are very slow (~0.1 fps) compared to plain old pyglet.graphics.draw() or just glVertex() calls, which are about 40fps for the same geometry. In Linux the vertex_list is about the same speed as glVertex, which is disappointing, and batch methods are about twice as fast, which is a little better but not as much gain as I was hoping for.</p> http://stackoverflow.com/questions/67223/why-might-my-pyglet-vertex-lists-and-batches-be-very-slow-on-windows/835601#835601 0 Answer by Tartley for why might my pyglet vertex lists and batches be very slow on Windows? Tartley 2009-05-07T16:09:19Z 2009-05-07T16:09:19Z <p>Don't forget to invoke your pyglet scripts with 'python -O myscript.py', the '-O' flag can make a huge performance difference.</p> http://stackoverflow.com/questions/118654/iron-python-beautiful-soup-win32-app/287247#287247 1 Answer by Tartley for Iron python, beautiful soup, win32 app Tartley 2008-11-13T15:31:20Z 2008-11-13T15:31:20Z <p>We are distributing a 40k line IronPython application. We have not been able to compile the whole thing into a single binary distributable. Instead we have been distributing it as a zillion tiny dlls, one for each IronPython module. This works fine though.</p> <p>However, on the newer release, IronPython 2.0, we have a recent spike which seems to be able to compile everything into a single binary file. This also results in faster application start-up too (module importing is faster.) Hopefully this spike will migrate into our main tree in the next few days.</p> <p>To do the distribution we are using WiX, which is a Microsoft internal tool for creating msi installs, that has been open-sourced (or made freely available, at least.) It has given us no problems, even though our install has some quite fiddly requirements. I will definitely look at using WiX to distribute other IronPython projects in the future.</p> http://stackoverflow.com/questions/215052/efficient-image-thumbnail-control-for-python/215175#215175 1 Answer by Tartley for Efficient Image Thumbnail Control for Python? Tartley 2008-10-18T15:40:32Z 2008-10-18T15:40:32Z <p>If you had to resort to writing your own, I've had good results using the Python Imaging Library to create thumbnails in the past. <a href="http://www.pythonware.com/products/pil/" rel="nofollow">http://www.pythonware.com/products/pil/</a></p> http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash 6 count (non-blank) lines-of-code in bash Tartley 2008-09-22T13:20:42Z 2008-09-30T14:15:46Z <p>In Bash, how do I count the number of non-blank lines of code in a project?</p> http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash/114844#114844 2 Answer by Tartley for count (non-blank) lines-of-code in bash Tartley 2008-09-22T13:24:30Z 2008-09-22T13:24:30Z <p>'wc' counts lines, words, chars, so to count all lines (including blank ones) use:</p> <pre><code>wc *.py </code></pre> <p>To filter out the blank lines, you can use grep:</p> <pre><code>grep -v '^\W*$' *.py | wc </code></pre> <p>'-v' tells grep to output all lines except those that match '^' is the start of a line '\W*' is zero or more whitespace characters '$' is the end of a line *.py is my example for all the files you wish to count (all python files in current dir) pipe output to wc. Off you go.</p> <p>I'm answering my own (genuine) question. Couldn't find an stackoverflow entry that covered this.</p> http://stackoverflow.com/questions/67000/fast-pixel-precision-2d-drawing-api-for-graphics-app/67298#67298 0 Answer by Tartley for Fast, Pixel Precision 2D Drawing API for Graphics App? Tartley 2008-09-15T21:43:51Z 2008-09-15T21:43:51Z <p>I just this week put together some slides and demo code for doing 2d graphics using opengl from python using the library pyglet. You can see my stuff here: <a href="http://www.tartley.com/?p=378" rel="nofollow">http://www.tartley.com/?p=378</a></p> <p>It is very fast (relatively speaking, for python) I have managed to get around 1,000 independantly positioned and oriented objects moving around the screen, each with about 50 vertices.</p> <p>It is very portable, all the code I have written in this environment works on windows and linux and mac (and even obscure environments like pypy) without me ever having to think about it.</p> http://stackoverflow.com/questions/432842/how-do-you-get-the-logical-xor-of-two-variables-in-python/432901#432901 Comment by Tartley on How do you get the logical xor of two variables in Python? Tartley 2009-11-25T13:16:02Z 2009-11-25T13:16:02Z I thought they did, actually. Try 'hello' or 'goodbye' http://stackoverflow.com/questions/114814/count-non-blank-lines-of-code-in-bash/114861#114861 Comment by Tartley on count (non-blank) lines-of-code in bash Tartley 2009-11-09T22:06:30Z 2009-11-09T22:06:30Z Thanks! Incidentally, wc does provide a count for each given file, plus a total. http://stackoverflow.com/questions/1445992/vim-file-navigation/1446070#1446070 Comment by Tartley on Vim file navigation Tartley 2009-11-07T10:56:00Z 2009-11-07T10:56:00Z Then once you've figured out commands like these which work for you, you can bind them to a key. I have control-tab flip between open buffers (a la firefox), but you could switch tabs instead. http://stackoverflow.com/questions/2933/an-executable-python-app/2941#2941 Comment by Tartley on An executable Python app Tartley 2009-10-20T17:52:12Z 2009-10-20T17:52:12Z Installing Python as part of your own install would be a little fiddly, because you would have to deal with the possibility of the wrong version of Python already being installed. You'd have to install side by side, such that your application could access the newly-installed version of Python, but any existing applications continued to use the old version of Python. (ie without messing up things like the .py file association or the PATH) http://stackoverflow.com/questions/1230948/wix-cannot-resolve-symbol-icon/1234415#1234415 Comment by Tartley on Wix cannot resolve symbol "Icon" Tartley 2009-10-02T14:05:54Z 2009-10-02T14:05:54Z I have just realised that for a non-advertised shortcut (which is a normal shortcut, advertised ones redirect via the Windows Installer mechanism every time you click on them) you can omit the shortcut's Icon attribute, it seems to default to the icon of the target file. Hooray. http://stackoverflow.com/questions/1230948/wix-cannot-resolve-symbol-icon/1234415#1234415 Comment by Tartley on Wix cannot resolve symbol "Icon" Tartley 2009-10-02T13:40:43Z 2009-10-02T13:40:43Z Hey, thanks, that makes sense, thanks, but what if the icon is not a standalone file, but is in my executable? http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114786#114786 Comment by Tartley on How to implement WiX installer upgrade? Tartley 2009-09-30T12:54:12Z 2009-09-30T12:54:12Z No doubt Mike knows exactly what he is talking about, all due respect, but it makes me sigh with despair to contemplate cluttering my mind with a firm understanding of what the Windows Installer is doing. Before I know it, I'll be doing Java and .NET consulting jobs to Enterprise clients out in the godawful tech centre towns, out beyond the ring-road, filling my TPS reports and wondering why life seems so empty. I think my next project might install with NSIS, which for all its faults, like a preposterous assembly-like language, it didn't make me understand what Windows Installer is doing. http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736 Comment by Tartley on How to implement WiX installer upgrade? Tartley 2009-09-30T12:39:58Z 2009-09-30T12:39:58Z By which I mean, don't use &quot;*&quot; in the upgrade Id, but do, of course use it in the product Id as Dror intended. http://stackoverflow.com/questions/114165/how-to-implement-wix-installer-upgrade/114736#114736 Comment by Tartley on How to implement WiX installer upgrade? Tartley 2009-09-30T11:32:51Z 2009-09-30T11:32:51Z @Antony, @Dror Helper: I'm pretty sure you should not be using &quot;*&quot; to generate a new GUID here. The GUID inside (Upgrade Id=&quot;&quot;) should be hard-coded and fixed, and it should match the GUID in your (Product UpgradeCode=&quot;&quot;) attribute. http://stackoverflow.com/questions/1076778/good-geometry-library-in-python/1077289#1077289 Comment by Tartley on Good geometry library in python? Tartley 2009-09-14T20:49:21Z 2009-09-14T20:49:21Z Ah, caveat: I'm using Shapely in 2D, I cannot vouch for its abilities in 3D. http://stackoverflow.com/questions/1076778/good-geometry-library-in-python/1077860#1077860 Comment by Tartley on Good geometry library in python? Tartley 2009-09-14T20:48:17Z 2009-09-14T20:48:17Z Could some of the people upvoting this perhaps elucidate on whether or not numpy does contain anything useful, and if so, then what? http://stackoverflow.com/questions/1076778/good-geometry-library-in-python/1077289#1077289 Comment by Tartley on Good geometry library in python? Tartley 2009-09-14T20:47:06Z 2009-09-14T20:47:06Z It certainly has been created for use by the GIS community, however it is deliberately ignorant of geographic projections, which makes it fine for use as a general-purpose euclidean geometry library. I use it heavily as such in a nascent computer game project, and it works fine. http://stackoverflow.com/questions/1041400/how-to-implement-an-opengl-zoom-extents-function/1276626#1276626 Comment by Tartley on How to Implement an OpenGL Zoom Extents Function Tartley 2009-09-03T12:51:47Z 2009-09-03T12:51:47Z Ah. The bounding box shortcut is clearly not adequate, given JRS's comments on other answers to this question. http://stackoverflow.com/questions/1041400/how-to-implement-an-opengl-zoom-extents-function/1041445#1041445 Comment by Tartley on How to Implement an OpenGL Zoom Extents Function Tartley 2009-09-03T12:50:50Z 2009-09-03T12:50:50Z JRS: I didn't understand your comment for a moment. I think you mean to say it would not work when the bounding box size is X=10, Y=2, Z=2, and viewed from the side. http://stackoverflow.com/questions/1041400/how-to-implement-an-opengl-zoom-extents-function/1276626#1276626 Comment by Tartley on How to Implement an OpenGL Zoom Extents Function Tartley 2009-09-03T12:32:45Z 2009-09-03T12:32:45Z Am I right in thinking that when you say 'you are already doing this', what's actually happening is that OpenGL is doing it for him? I don't know how to get access to the results of those calculations. Is that easy? If not, to implement this, he'll need to replicate the matrix/vertex arithmetic in his own code: Take the PROJECTION and MODELVIEW matrices, multiply them by every vertex in his model, etc. A shortcut would be to just perform this same calculation on the entire model's bounding box, instead of every vertex in the model.