Tom
|
Registered User
|
I'm a 26 year old computer science student, mainly interested in Python, TurboGears, Web 2.0, Delphi, Java, C (clean/++/#), OOP, Software Engineering and Modeling
|
|
Oct 21 |
awarded | ● Necromancer |
|
Oct 19 |
awarded |
● |
|
Sep 17 |
comment |
Joining with subqueries, counting and grouping. no prob, if this had worked, your answer would have been my first choice, its more compact and elegant. |
|
Sep 16 |
revised |
Joining with subqueries, counting and grouping. added ORM requirement |
|
Sep 16 |
comment |
Joining with subqueries, counting and grouping. I simply get a "#1064 - You have an error in your SQL syntax;", tried until now: -1 wheel_id, -1 AS wheel_id, (-1) as wheel_id, -1:wheel_id. all those failed, the only ones that worked were wheel_id = -1 (but have wrong results) or simply -1 without wheel_id at all |
|
Sep 16 |
comment |
Joining with subqueries, counting and grouping. SELECT car_id, -1 , screw_state, count(screws) works for me |
|
Sep 16 |
revised |
Best Upload for web application FTP or HTTP? typo |
|
Sep 16 |
comment |
Joining with subqueries, counting and grouping. Tested it now, and sadly my MySQL server doesnt like that "-1 wheel_id" syntax. I tried writing wheel_id = -1, it seems to work, apart from the fact that in the output, wheel_id comes out as 0 for the total counts, instead of -1, but the rest seems to work. |
|
Sep 16 |
answered | Best Upload for web application FTP or HTTP? |
|
Sep 16 |
asked | Joining with subqueries, counting and grouping. |
|
Sep 2 |
comment |
Reading a website with asyncore Sorry, as I said, I want asynchronous sockets, not threads. |
|
Sep 2 |
asked | Reading a website with asyncore |
|
Sep 1 |
accepted | Handling controller missing controller parameters in turbogears 2 |
|
Aug 31 |
comment |
Why is the C++ syntax so complicated? Thanks god you havent seen the Java Hello World yet:P |
|
Aug 29 |
accepted | Dynamic urls / MVC |
|
Aug 27 |
comment |
How can I mass-assign SA ORM object attributes? I just tested it out, it does not work if I just cast kw['arg1'] = int(kw['arg1']) and then assign it via setattr(....). Before you posted your answer that solved all my problems, I changed it my code frustratedly to copy paste code, (added an "MyClass.update(**kw) method) and in this method i simply wrote self.my_relation_attr = kw['my_relation_attr'] which is still the same old unicode string. And that worked, strangely. It obviously took the u"4" and turned it into 5, and set the my_relation_attr to the matching mapped object with ID = 5 |
|
Aug 27 |
revised |
How can I mass-assign SA ORM object attributes? edited title |
|
Aug 27 |
comment |
Hidden features of Python actually this is discouraged, you should use the "new" s = t if t else "default value" |
|
Aug 26 |
comment |
How can I mass-assign SA ORM object attributes? The amazing stuff I just found out is also, that you can indeed assign an int to a relation attribute, i just tested it myself. myobject.b = 1 would work, if there is an object b with id = 1. Seems my validators screwed up, as the id obtained from the relation wasnt properly cast into int, but remained as unicode. Seems SA does like ints, but not unicodes assigned to relation properties |
|
Aug 26 |
comment |
How can I mass-assign SA ORM object attributes? i'll be damned. that was the solution. my setattr stuff works fine, when I convert kw['attr1'] = Session.query(MyClass).get(kw['attr1']) |
|
Aug 26 |
revised |
How can I mass-assign SA ORM object attributes? added 8 characters in body; added 465 characters in body |
|
Aug 26 |
comment |
How can I mass-assign SA ORM object attributes? Hm sadly this doesnt work for SQLAlchemy. The dict gets properly updated but SA doesnt seem to flag the object as "dirty" and persist it to the DB |
|
Aug 26 |
asked | How can I mass-assign SA ORM object attributes? |
|
Aug 25 |
comment |
Having instance-like behaviour in databases Not possible. First thing is, I have around 300 different attributes, and they have to be dynamically extensible, without hacking the database layout. everything should be done by CRUD over the existing tables. Second thing is, that not only cars, but also houses, airplanes etc have to be modelled. I want to take a totally arbitrary object, invent attributes and attribute ranges for it, and then specify instances of this object, with specific values for the attributes. |
|
Aug 25 |
comment |
Having instance-like behaviour in databases upvote for being funny ;) What worries me is, that my design feels simply wrong. When I write my inserts... looping through all "template" attributes, and copying them over to my intersection table, specializing them with a value. I feel like I am simulating something here, that should be done in a better way. |
|
Aug 25 |
asked | Having instance-like behaviour in databases |
|
Aug 24 |
awarded | ● Civic Duty |
|
Aug 23 |
revised |
Dynamic urls / MVC added 221 characters in body |
|
Aug 23 |
answered | Dynamic urls / MVC |
|
Aug 17 |
awarded | ● Disciplined |
|
Aug 17 |
awarded | ● Cleanup |
|
Aug 15 |
answered | Doing CRUD in Turbogears |
|
Aug 15 |
answered | Handling controller missing controller parameters in turbogears 2 |
|
Aug 15 |
comment |
What is an ORM and where can I learn more about it? youre funny dude :P |
|
Aug 10 |
answered | Paste (Python) Web Server - Autoreload Problem |
|
Aug 7 |
awarded | ● Tumbleweed |
|
Aug 7 |
comment |
Python Interpreter blocks Multithreaded DNS requests? is that an answer or a question? :P |
|
Aug 3 |
accepted | Add an Expires Header |
|
Aug 3 |
answered | Add an Expires Header |
|
Aug 2 |
awarded | ● Critic |
|
Jul 31 |
comment |
How can I get non-blocking socket connect()’s? btw I tested this again together with a friend on his linux box, and even getAddrInfo doesnt seem to block there. We get an error: [Errno 115] Operation now in progress. So theoretically even asyncore with non responsive hosts could work in linux. |
|
Jul 31 |
comment |
How can I get non-blocking socket connect()’s? Alright, I have to apologize here. I took the code right from the Python docs, so it wasnt my code, I took it for granted it's correct. And it didn't work. It happened to me frequently that people gave me advice, which they didnt even verify themselves. I could never have guesses my OS would be the problem, instead of the code, so I thought youre just one more guy thinking hes smart and copy pasting me documentation code without even checking if it works. Sorry again for that. I threw away 3 complete versions today, wasting 6hours, to find that MacOS was the problem. |
|
Jul 31 |
comment |
Python Interpreter blocks Multithreaded DNS requests? I need this done pretty quickly, but I just ordered a book on twisted, people seem to really like it, cant be so bad after all. Will try to get into it a bit, but I am really busy lately. |
|
Jul 31 |
comment |
Python Interpreter blocks Multithreaded DNS requests? i wonder if twisted will suffer under the same limitations when run on mac os X |
|
Jul 31 |
comment |
Python Interpreter blocks Multithreaded DNS requests? I dont know what more to say except oh my fuckin god. And thanks a lot, I am working on this for the last 6 hours, and starting to grow grey hair. Good to know all my code I have trashed (last attempt was asyncore with non blocking sockets) was perfectly fine, and it was MacOSX's fault. Thx a bunch. |
|
Jul 31 |
comment |
Python Interpreter blocks Multithreaded DNS requests? yea I have tried this, and it has the same limitation. |
|
Jul 31 |
revised |
Python Interpreter blocks Multithreaded DNS requests? added 440 characters in body |
|
Jul 31 |
asked | Python Interpreter blocks Multithreaded DNS requests? |
|
Jul 31 |
revised |
ToscaWidgets Recaptcha - Error Rendering Recaptcha => Page cuts off added 207 characters in body |
|
Jul 31 |
asked | ToscaWidgets Recaptcha - Error Rendering Recaptcha => Page cuts off |
