Tartley

255
Reputation
71 views

Registered User

Name Tartley
Member for 1 year
Seen Nov 25 at 13:11
Website
Location GB
Age 89
Made of meat.
Nov
25
comment How do you get the logical xor of two variables in Python?
I thought they did, actually. Try 'hello' or 'goodbye'
Nov
9
comment count (non-blank) lines-of-code in bash
Thanks! Incidentally, wc does provide a count for each given file, plus a total.
Nov
7
comment Vim file navigation
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.
Oct
20
comment An executable Python app
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)
Oct
2
comment Wix cannot resolve symbol “Icon”
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.
Oct
2
comment Wix cannot resolve symbol “Icon”
Hey, thanks, that makes sense, thanks, but what if the icon is not a standalone file, but is in my executable?
Sep
30
comment How to implement WiX installer upgrade?
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.
Sep
30
comment How to implement WiX installer upgrade?
By which I mean, don't use "*" in the upgrade Id, but do, of course use it in the product Id as Dror intended.
Sep
30
comment How to implement WiX installer upgrade?
@Antony, @Dror Helper: I'm pretty sure you should not be using "*" to generate a new GUID here. The GUID inside (Upgrade Id="") should be hard-coded and fixed, and it should match the GUID in your (Product UpgradeCode="") attribute.
Sep
16
awarded  Yearling
Sep
14
comment Good geometry library in python?
Ah, caveat: I'm using Shapely in 2D, I cannot vouch for its abilities in 3D.
Sep
14
comment Good geometry library in python?
Could some of the people upvoting this perhaps elucidate on whether or not numpy does contain anything useful, and if so, then what?
Sep
14
comment Good geometry library in python?
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.
Sep
3
comment How to Implement an OpenGL Zoom Extents Function
Ah. The bounding box shortcut is clearly not adequate, given JRS's comments on other answers to this question.
Sep
3
comment How to Implement an OpenGL Zoom Extents Function
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.
Sep
3
comment How to Implement an OpenGL Zoom Extents Function
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.
Sep
1
comment Why can’t I commit a psd (Photoshop) file to SVN?
I have the same problem. The http://.... address that is redacted in the original question is the address of the server - so I think it's being aborted by the server, not something at the client end.
Sep
1
answered Licensing: Do I need to register company for License Agreement?
Aug
28
comment Rotating OpenGL scene in 2 axes
Hey there. I don't think that should matter, so long as you do all your rotations before you do your translation. Perhaps I'm misunderstanding what you need. Is my 'anti-aircraft gun' example a good comparison? Or not so much? Thanks!
Aug
25
answered Rotating OpenGL scene in 2 axes
Aug
25
comment How To Produce A 2D Plane Cut from a 3D Image
Hey, I think this would work, but: 1) In the first step where you say the 'Z axis', I think you mean something like 'the XY plane' 2) I'm hazy on the middle part. After you detect all the edges which cross from +ve Z to -ve Z in step 3, you presumably find the point at which the edge crosses z==0. You then have a collection of such points. How do you tell what order to join up these points to make your 2D line in the 4th step? I think I'm asking how to you determine the 'adjacent edges' you mention in the 4th step. 3) Do you want to consider numbering the steps for ease of discussion? Thanks!
Aug
25
comment How To Produce A 2D Plane Cut from a 3D Image
Hey Chris, This is a cool idea, but it has a couple of minor wrinkles. I'm sure Chris is aware of them, but just for clarity: 1) The output from this technique would presumably be the output from then rendering the model. This gives a bitmap, which isn't exactly what the question asks for. 2) The finite size of the slice from 1m to 1.001m means that features on your 3D object at 1.0005m would be included in the cross-section, when ideally they shouldn't be. Not a biggie, but irks the geometric purist in me. Can these (especially the first one) be fixed? Hugs!
Aug
12
awarded  Commentator
Aug
12
comment OpenGL ES glRotatef performing shear instead of rotate?
could you show your glOrtho call? I'm wondering if that might influence it.
Aug
12
comment Circular shift operations in C++
Presumably there's nothing to stop one going ROL x, ROL x, ROL x
Aug
12
comment OpenGL rotate around a spot
I think it's true to say that he needs one of each - translate the object away from the origin, and then rotate about the origin. (where 'origin' is the center that you want to rotate around)
Aug
12
comment I need to calculate the edges of visible space from current OpenGL state
It's good to mention the Delphi for transparency's sake, but for my info, I presume that the meat of the question is exactly the same no matter what bindings to OpenGL are used, right?
Aug
11
awarded  Autobiographer
Aug
6
awarded  Editor
Aug
6
revised How to convert reStructuredText to plain text
added 160 characters in body; added 20 characters in body
Aug
6
answered How to convert reStructuredText to plain text
Jul
22
comment IronPython and instantiating COM objects
Ha har! It worked! :-) I owe ya one.
Jul
22
comment Where do the Python unit tests go?
One solution for my problem, with Python2.6 or newer, us to run the tests from the root of your project using: python -m project.package.tests.module_tests (instead of python project/package/tests/module_tests.py). This puts the test module's directory on the path, so the tests can then do a relative import to their parent directory to get the module-under-test.
Jul
22
comment Where do the Python unit tests go?
Thanks Casey - but I do have an init.py file in all relevant directories. I don't know what I do wrong, but I have this problem on all my Python projects and I can't understand why nobody else does. Oh deary.
Jul
20
accepted IronPython and instantiating COM objects
Jul
20
answered IronPython and instantiating COM objects
Jul
19
answered Can you recommend low cost automated testing tools for a .NET Winforms application?
Jul
19
answered Best environment for Python on Windows?
Jul
19
answered Best test runner? (Unit Testing, .NET)
Jul
19
awarded  Critic
Jul
19
answered Testing a test?
Jul
19
comment Testing a test?
@chills42: Our project also is well tested, and changing the product will break one or more tests. This does require work to maintain. However, we regard this as far less work than the work we have avoided by attempting to write the project without tests. At the very least, the broken tests gives one a laundry list of other bugs you may have introduced with your original changes. Once you've worked through fixing all the broken tests, you will discover some are merely broken tests, but others were real bugs introduced by your original changes. IMHO! Best regards!
Jul
19
comment Deploying a python application with shared package
This is good stuff, and I will be using it, but I also would like to work on Windows. Removing the '.py' extension from Python files seems less workable there. Am I missing something? Would your install process put them back, or wrap them, or something?
Jul
19
asked Can I create a Python extension module in D (instead of C)
Jul
18
accepted How to create a fractal cube?
Jul
18
answered How to create a fractal cube?
Jul
18
answered Interface for modifying Windows environment variables from Python
Jul
11
answered pylint warning on ‘except Exception:’