grieve

2,939
reputation
245 views

Registered User

name grieve
member for 1 year
seen Dec 5 at 0:58
website
location
age
Something clever
Nov
5
awarded  Yearling
Oct
30
awarded  Good Answer
Oct
5
comment How can you handle invalid enum types using JAXB?
Adding the link: jaxb.dev.java.net/nonav/jaxb20-pfd/…
Oct
2
comment How can you handle invalid enum types using JAXB?
Thanks for the answer. First we are using JAXB 2.1.9 I updated my original post to reflect that. Second we want the third option you have listed. We have not seen that in the documentation, but this is all new to us, so even a link to that would help if you have it.
Oct
2
revised How can you handle invalid enum types using JAXB?
Adding clarification and JAXB version information.
Oct
2
asked How can you handle invalid enum types using JAXB?
Sep
29
awarded  Popular Question
Sep
25
awarded  Nice Answer
Sep
15
comment What are five things you hate about your favorite language?
@Gorgapor: You are welcome to disagree, I am certainly no great authority on anything. :) I will point out, however, that you achieve indentation by using whitespace.
Sep
15
comment What’s the coolest startup programmer job title?
@jcollum: I agree. That is why I always try to refer to myself as a programmer or software developer.
Aug
11
awarded  Nice Answer
Aug
11
revised Multi-client, async sockets in c#, best practices?
Added a list of networking frameworks
Jul
20
comment How would you inherit from and override the django model classes to create a listOfStringsField?
Nice! I will have to look into this further.
Jul
17
comment How would you inherit from and override the django model classes to create a listOfStringsField?
So my attempt below does work, but is extremely brittle and error prone. :(
Jul
16
comment How would you inherit from and override the django model classes to create a listOfStringsField?
After more experimenting, this turns out to work, but is extremely brittle, especially in regards to namespaces, it has to live in models.py. I will keep working on it, and hopefully develop a cleaner version.
Jul
15
comment How would you inherit from and override the django model classes to create a listOfStringsField?
I have noticed with this class, that you have to save before adding, since the ID don't exist until you save. I think this could be fixed/corrected if this inherited from RelatedField and Field, but I am still trying to wrap my head around that code.
Jul
15
comment How would you inherit from and override the django model classes to create a listOfStringsField?
I just got a chance to look at the link you posted. I think it is closer to what I am trying to do implementation-wise than what I currently have. Thanks!
Jul
15
revised What is the most efficent way to store a list in the Django models?
Just added a link to a related question
Jul
15
comment How would you inherit from and override the django model classes to create a listOfStringsField?
Posted my attempt below, which appears to work.
Jul
15
answered How would you inherit from and override the django model classes to create a listOfStringsField?
Jul
14
comment How would you inherit from and override the django model classes to create a listOfStringsField?
I would have thought the ForeignKey belongs in the Friends class. Am I missing something? And yes I probably am over thinking this, but if I can create the field I want I think it would be generally useful.
Jul
14
revised How would you inherit from and override the django model classes to create a listOfStringsField?
Fixed a type, added a link to field customization.
Jul
14
comment How would you inherit from and override the django model classes to create a listOfStringsField?
I am in the process of digging through the source now. If I actually manage to come up with some thing that works I will try and post it here.
Jul
14
asked How would you inherit from and override the django model classes to create a listOfStringsField?
Jul
13
comment What is the most efficent way to store a list in the Django models?
+1 for a great answer, but we are already doing something like this. It is really squishing all the values into one string then splitting them out. I guess I was hoping for something more like a ListofStringsField, which actually builds the separate table and makes the foreign keys automatically. I am not sure if that is possible in Django. If it is, and I find an answer, I will post it on stackoverflow.
Jul
10
comment What is the most efficent way to store a list in the Django models?
@drozzy: Well I probably could have used a different phrase, but basically what I meant, was I want to pass in a list of strings and get back a list of strings. I don't want to create a bunch of Friend objects, and call inst.myFriends.add(friendObj) for each of them. Not that it would be all that hard, but...
Jul
10
comment What is the most efficent way to store a list in the Django models?
This is probably what I will end up doing, but I was really hoping the underlying structure for this would have been built in. I guess I am to o lazy.
Jul
10
comment What is the most efficent way to store a list in the Django models?
I am fine with the database storing it as a relation, I was hoping the Django models abstracted that portion out for me already. From the app side I am always going to want to treat it as a list of strings.
Jul
10
asked What is the most efficent way to store a list in the Django models?
Jul
3
revised Swig c++ w/ Java loses type on polymorphic callback functions
changed loose to lose
Jun
30
revised Problem with exiting a daemonized process
Added more information
Jun
23
comment Problem with exiting a daemonized process
I tried your code as is, minus the daemon module, and it works for me. Can you give a link to your version of the daemon module? A google search reveals a few choices.
Jun
23
answered Problem with exiting a daemonized process
Jun
23
comment Problem with exiting a daemonized process
Do you see the "quitting ..." printed out?