User Anthony - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:44:26Z http://stackoverflow.com/feeds/user/54423 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1414411#1414411 0 Answer by Anthony for How do I reference the underlying model of a django model form object? Anthony 2009-09-12T05:53:35Z 2009-09-12T05:53:35Z <p>I posted this question because I had a model with two fields:</p> <pre><code>LabelField ValueField </code></pre> <p>and I wanted to display a form that used "LabelField" as the label while allowing the user to update "ValueField." My first thought was to somehow assign the value of "LabelField" into the label attribute of "ValueField."</p> <p>What I ended up doing instead was to set the "disabled" attribute of "LabelField" as true:</p> <pre><code>form.fields['labelfield'].widget.attrs['disabled'] = True </code></pre> <p>This allows me to display "labelfield" without letting the users update it. I can think of at least two other ways to accomplish this same goal, but this is what I'm using for now given my level of familiarity with Django et al.</p> http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object 1 How do I reference the underlying model of a django model form object? Anthony 2009-08-31T05:28:16Z 2009-09-12T05:53:35Z <p>When creating a form, I wish to use one field on the model as a label to go with another field that I'm updating.</p> <p>I've overridden the BaseModelFormSet with a new <strong>_init__</strong> method, like this:</p> <pre><code>class BaseMyFormSet(BaseModelFormSet): def __init__(self, *args, **kwargs): super(BaseMyFormSet, self).__init__(*args, **kwargs) for form in self.forms: form.fields['value'].label = ??? </code></pre> <p>How do I reference the other field in the model so that I can use it as the label value?</p> <p>(Alternatively, if there's a better way to override the label in the way I need, that would be very helpful as well.)</p> <p>Thanks.</p> http://stackoverflow.com/questions/803807/new-unix-account-shell-setup 1 New Unix Account Shell Setup [closed] Anthony 2009-04-29T19:08:26Z 2009-04-29T19:51:32Z <p>What are the first things you do to personalize your shell on a Unix machine? What are the minimum personalized environment settings that you need to function effectively?</p> <p>oops, sorry, not a regular here and didn't realize the rule...it's a wiki now...</p> http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i 8 How do I get back into *real* programming? Should I? Anthony 2009-01-28T19:10:39Z 2009-04-15T06:45:32Z <p>I have not been on hiatus. I currently make a good living implementing an ERP product. The problem is that the most complicated algorithm we ever have to work on is adding up a bunch of columns.</p> <p>I'm not saying there are no challenges involved, it's just that the challenges are no longer interesting to me. I graduated with a computer science degree, and we worked on cool algorithms. I built a compiler. Programming was fun. Now, programming is boring. I have to keep myself interested by focusing on other facets of the job.</p> <p>Lately, I've been dabbling in a lot of side work off hours - iPhone apps, blogging platforms, checking out open source projects, etc. Is it possible to make the switch to doing some of this stuff that looks like more fun to me? Is it really more fun? Is there some way to combine my interests with my occupation?</p> http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database/505497#505497 0 Answer by Anthony for What database tool to use on Linux to read an as/400 database? Anthony 2009-02-02T23:50:20Z 2009-02-02T23:50:20Z <p>They ended up using iSql to connect to the database. Thanks for all your suggestions.</p> http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database 1 What database tool to use on Linux to read an as/400 database? Anthony 2009-01-28T21:50:47Z 2009-02-02T23:50:20Z <p>From Linux (Red Hat dist), we need to read an AS400 database. We have the ODBC driver to connect, what's the best query tool?</p> http://stackoverflow.com/questions/490183/which-open-source-erp-project-is-the-best-for-joining-as-a-contributor 2 Which open source ERP project is the best for joining as a contributor? Anthony 2009-01-29T01:31:18Z 2009-01-29T01:43:49Z <p>I've found a bunch, now I need to figure out which one is worth spending my free time on. (<a href="http://en.wikipedia.org/wiki/List_of_ERP_software_packages" rel="nofollow">Wikipedia list</a>)</p> http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/489932#489932 0 Answer by Anthony for How do I get back into *real* programming? Should I? Anthony 2009-01-28T23:47:54Z 2009-01-28T23:47:54Z <p>Thanks for all the answers, everyone. Lots of food for thought here. Oh, and this being my first question on here...I have to say that this website rocks it.</p> http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1414411#1414411 Comment by Anthony on How do I reference the underlying model of a django model form object? Anthony 2009-09-16T19:17:51Z 2009-09-16T19:17:51Z Which is the same issue as is discussed in this thread: <a href="http://stackoverflow.com/questions/1105507/make-a-foreign-key-field-in-a-django-form-read-only-and-still-enable-the-form-to" rel="nofollow" title="make a foreign key field in a django form read only and still enable the form to">stackoverflow.com/questions/1105507/&hellip;</a> http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1414411#1414411 Comment by Anthony on How do I reference the underlying model of a django model form object? Anthony 2009-09-15T07:22:11Z 2009-09-15T07:22:11Z This doesn't work. The 'disabled' attribute prevents updates to the underlying model. http://stackoverflow.com/questions/1355925/how-do-i-reference-the-underlying-model-of-a-django-model-form-object/1357058#1357058 Comment by Anthony on How do I reference the underlying model of a django model form object? Anthony 2009-09-12T04:43:34Z 2009-09-12T04:43:34Z (Sorry for the late response, I was out of town this past week.) It's actually the former. In your example above, I would need the actual value of &quot;yourfield&quot; to be the label for the field called &quot;value.&quot; So, something like (renaming the variables for clarity): namefield = opts.get_field(&quot;namefield&quot;) form.fields['quantityfield'].label = namefield.value I will try fiddling around, using the samples you give to see if I can figure this out. thanks http://stackoverflow.com/questions/427009/how-to-hide-a-primary-key-field-in-a-django-form/430050#430050 Comment by Anthony on How to hide a primary key field in a Django form Anthony 2009-04-20T03:51:46Z 2009-04-20T03:51:46Z What would you do if the form is creating the instance of the model? http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/488940#488940 Comment by Anthony on How do I get back into *real* programming? Should I? Anthony 2009-01-29T17:56:42Z 2009-01-29T17:56:42Z answer selected for awesomeness http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46426#46426 Comment by Anthony on What is the single most influential book every programmer should read? Anthony 2009-01-29T05:12:12Z 2009-01-29T05:12:12Z My favorite class. http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/34526#34526 Comment by Anthony on What is the single most influential book every programmer should read? Anthony 2009-01-29T05:11:26Z 2009-01-29T05:11:26Z This is the book that came to my mind when I read the question. Great book. http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database/490333#490333 Comment by Anthony on What database tool to use on Linux to read an as/400 database? Anthony 2009-01-29T03:33:27Z 2009-01-29T03:33:27Z thanks! in my case, best just means anything at this point http://stackoverflow.com/questions/490183/which-open-source-erp-project-is-the-best-for-joining-as-a-contributor/490207#490207 Comment by Anthony on Which open source ERP project is the best for joining as a contributor? Anthony 2009-01-29T02:29:43Z 2009-01-29T02:29:43Z I see your point about open source ERPs being a hard sell. I don't really care too much about the project's marketability at this point - just as long as it is something to which I can contribute to get my feet wet. http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database Comment by Anthony on What database tool to use on Linux to read an as/400 database? Anthony 2009-01-29T02:20:41Z 2009-01-29T02:20:41Z Sorry, I don't have any more info. The best I can do is come up with an analogy: If I had a Windows PC and I needed to view a foreign computer database via ODBC, I'd use MS Access to link to it. What is the equivalent of MS Access on Linux? http://stackoverflow.com/questions/489555/what-database-tool-to-use-on-linux-to-read-an-as-400-database Comment by Anthony on What database tool to use on Linux to read an as/400 database? Anthony 2009-01-29T01:38:44Z 2009-01-29T01:38:44Z Actually, best doesn't even need apply. I'm just looking for anything! Our company is interfacing with a third party system that runs on Linux. They need to be able to read our database from their system. Any Linux ODBC database tool would work. http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/489932#489932 Comment by Anthony on How do I get back into *real* programming? Should I? Anthony 2009-01-29T01:36:59Z 2009-01-29T01:36:59Z Thanks. All the answers have been good, but I've been holding out for the perfect one. Can I &quot;accept&quot; more than one? http://stackoverflow.com/questions/488928/how-do-i-get-back-into-real-programming-should-i/488940#488940 Comment by Anthony on How do I get back into *real* programming? Should I? Anthony 2009-01-28T23:45:35Z 2009-01-28T23:45:35Z I checked out the website...the problems remind me of the good old days. Did you design your own language too, or did you implement something that already exists?