User grieve - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T09:08:33Z http://stackoverflow.com/feeds/user/34329 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1510501/how-can-you-handle-invalid-enum-types-using-jaxb 0 How can you handle invalid enum types using JAXB? grieve 2009-10-02T16:10:24Z 2009-10-02T18:32:18Z <p>We are using JAXB to handle our wsdl validation. In the wsdl we have an enumeration like so:</p> <pre><code>&lt;xs:simpleType name="myEnum"&gt; &lt;xs:annotation&gt; &lt;xs:documentation&gt;The enums which matter.&lt;/xs:documentation&gt; &lt;/xs:annotation&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:enumeration value="MYENUM_1"&gt; &lt;xs:annotation&gt; &lt;xs:documentation&gt;MYENUM_1 is the first enum.&lt;/xs:documentation&gt; &lt;/xs:annotation&gt; &lt;/xs:enumeration&gt; &lt;xs:enumeration value="MYENUM_2"&gt; &lt;xs:annotation&gt; &lt;xs:documentation&gt;MYENUM_2 is the second enum.&lt;/xs:documentation&gt; &lt;/xs:annotation&gt; &lt;/xs:enumeration&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; </code></pre> <p>If we pass in an invalid string as an enum for example, MYENUM_7, the value is set to null, instead of throwing an error like we would expect. Digging into the code, we find the following from RuntimeEnumLeafInfoImpl.java:</p> <pre><code>package com.sun.xml.bind.v2.model.impl; //... public T parse(CharSequence lexical) throws AccessorException, SAXException { // TODO: error handling B b = baseXducer.parse(lexical); if(b==null) { return null; } return parseMap.get(b); } </code></pre> <p>It is clear to see that the parseMap is our list of enums, but if the key to the map, in this case the value of b, is not in the map it just returns null. We would like it to throw and exception of some sort if b is not in parseMap.</p> <p>Short of fixing this and recompiling our own JAXB is there some other way to solve this?</p> <p><hr /></p> <p><strong>EDIT: for clarification</strong></p> <p>We are using JAXB 2.1.9, and we want to unmarshall the data AND validate it. It is certainly possible I have overlooked something in the documentation about validation.</p> http://stackoverflow.com/questions/284885/multi-client-async-sockets-in-c-best-practices/285986#285986 13 Answer by grieve for Multi-client, async sockets in c#, best practices? grieve 2008-11-13T01:04:43Z 2009-08-11T02:01:20Z <p>If you are doing socket level programming, then regardless of how many ports you open for each message type, you still need to have a header of some sort. Even if it is just the length of the rest of the message. Having said that it is easy to add a simple header and tail structure to a message. I would think it is easier to only have to deal with one port on the client side.</p> <p>I believe the modern MMORPGs (and maybe even the old ones) had two levels of servers. The login servers which verify you as a paying client. Once verified these pass you off to the game server which contain all the game world information. Even so this still only requires the client to have one socket open, but does not disallow having more.</p> <p>Additionally most MMORPGS also encrypt all their data. If you are writing this as an exercise for fun, then this will not matter so much.</p> <p>For designing/writing protocols in general here are the things I worry about:<BR></p> <p><strong>Endianess</strong></p> <p>Are the client and server always guaranteed to have the same endianess. If not I need to handle that in my serialization code. There are multiple ways to handle endianess.</p> <ol> <li>Ignore it - Obviously a bad choice</li> <li>Specify the endianness of the protocol. This is what the older protocols did/do hence the term network order which was always big endian. It doesn't actually matter which endianess you specify just that you specify one or the other. Some crusty old network programmers will get up in arms if you don't use big endianess, but if your servers and most clients are little endian you really aren't buying yourself anything other than extra work by making the protocol big endian.</li> <li>Mark the Endianess in each header - You can add a cookie which will tell you the endianess of the client/server and let each message be converted accordingly as needed. Extra work!</li> <li>Make your protocol agnostic - If you send everything as ASCII strings, then endianess is irrelevant, but also a lot more inefficient.</li> </ol> <p>Of the 4 I would usually choose 2, and specify the endianess to be that of the majority of the clients, which now days will be little endian.</p> <p><strong>Forwards and Backwards Compatibility</strong></p> <p>Does the protocol need to be forwards and backwards compatible. The answer should almost always be yes. In which case this will determine how I design the over all protocol in terms of versioning, and how each individual message is created to handle minor changes that really shouldn't be part of the versioning. You can punt on this and use XML, but you lose a lot of efficiency. </p> <p>For the overall versioning I usually design something simple. The client sends a versioning message specifying that it speaks version X.Y, as long as the server can support that version it sends back a message acknowledging the version of the client and everything proceeds forward. Otherwise it nacks the client and terminates the connection.</p> <p>For each message you have something like the following:</p> <pre><code>+-------------------------+-------------------+-----------------+------------------------+ | Length of Msg (4 bytes) | MsgType (2 bytes) | Flags (4 bytes) | Msg (length - 6 bytes) | +-------------------------+-------------------+-----------------+------------------------+ </code></pre> <p>The length obviously tells you how long the message is, not including the length itself. The MsgType is the type of the message. Only two bytes for this, since 65356 is plenty of messages types for applications. The flags are there to let you know what is serialized in the message. This field combined with the length is what gives you your forwards and backwards compatibility.</p> <pre><code>const uint32_t FLAG_0 = (1 &lt;&lt; 0); const uint32_t FLAG_1 = (1 &lt;&lt; 1); const uint32_t FLAG_2 = (1 &lt;&lt; 2); ... const uint32_t RESERVED_32 = (1 &lt;&lt; 31); </code></pre> <p>Then your deserialization code can do something like the following:</p> <pre><code>uint32 length = MessageBuffer.ReadUint32(); uint32 start = MessageBuffer.CurrentOffset(); uint16 msgType = MessageBuffer.ReadUint16(); uint32 flags = MessageBuffer.ReadUint32(); if (flags &amp; FLAG_0) { // Read out whatever FLAG_0 represents. // Single or multiple fields } // ... // read out the other flags // ... MessageBuffer.AdvanceToOffset(start + length); </code></pre> <p>This allows you to <strong>add</strong> new fields <strong>to the end</strong> of the messages without having to revision the entire protocol. It also ensures that old servers and clients will ignore flags they don't know about. If they have to use the new flags and fields, then you simply change the overall protocol version.</p> <p><strong>Use a Frame Work or Not</strong></p> <p>There are various network frameworks I would consider using for a business application. Unless I had a specific need to scratch I would go with a standard framework. In your case you want to learn socket level programming, so this is a question already answered for you.</p> <p>If one does use a framework make sure it addresses the two concerns above, or at least does not get in your way if you need to customize it in those areas.</p> <p><strong>Am I dealing with a third party</strong></p> <p>In many cases you may be dealing with a third party server/client you need to communicate with. This implies a few scenarios:</p> <ul> <li>They already have a protocol defined - Simply use their protocol.</li> <li>You already have a protocol defined (and they are willing to use it) - again simple use the defined protocol</li> <li>They use a standard Framework (WSDL based, etc) - Use the framework.</li> <li>Neither party has a protocol defined - Try to determing the best solution based on all the factors at hand (all the ones I mentioned here), as well as their level of competencey (at least as far as you can tell). Regardless make sure both sides agree on and understand the protocol. From experience this can be painful or pleasant. It depends on who you are working with.</li> </ul> <p>In either case you will not be working with a third party, so this is really just added for completeness.</p> <p>I feel as if I could write much more about this, but it is already rather lengthy. I hopes this helps and if you have any specific questions just ask on Stackoverflow.</p> <p><strong>An edit to answer knoopx's question:</strong></p> <ul> <li><a href="http://en.wikipedia.org/wiki/Protocol_Buffers" rel="nofollow">http://en.wikipedia.org/wiki/Protocol_Buffers</a></li> <li><a href="http://en.wikipedia.org/wiki/Thrift_" rel="nofollow">http://en.wikipedia.org/wiki/Thrift_</a>(protocol)</li> <li><a href="http://en.wikipedia.org/wiki/Etch_" rel="nofollow">http://en.wikipedia.org/wiki/Etch_</a>(protocol)</li> <li><a href="http://en.wikipedia.org/wiki/Adaptive_Communication_Environment" rel="nofollow">http://en.wikipedia.org/wiki/Adaptive_Communication_Environment</a></li> <li><a href="http://en.wikipedia.org/wiki/CORBA" rel="nofollow">http://en.wikipedia.org/wiki/CORBA</a></li> <li>And many more</li> </ul> http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list 2 How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-14T16:44:43Z 2009-07-20T14:32:47Z <p>I want to create a new type of field for django models that is basically a ListOfStrings. So in your model code you would have the following:</p> <p><strong>models.py:</strong></p> <pre><code>from django.db import models class ListOfStringsField(???): ??? class myDjangoModelClass(): myName = models.CharField(max_length=64) myFriends = ListOfStringsField() # </code></pre> <p><strong>other.py:</strong></p> <pre><code>myclass = myDjangoModelClass() myclass.myName = "bob" myclass.myFriends = ["me", "myself", "and I"] myclass.save() id = myclass.id loadedmyclass = myDjangoModelClass.objects.filter(id__exact=id) myFriendsList = loadedclass.myFriends # myFriendsList is a list and should equal ["me", "myself", "and I"] </code></pre> <p>How would you go about writing this field type, with the following stipulations?</p> <ul> <li>We don't want to do create a field which just crams all the strings together and separates them with a token in one field like <a href="http://www.davidcramer.net/code/181/custom-fields-in-django.html" rel="nofollow">this</a>. It is a good solution in some cases, but we want to keep the string data normalized so tools other than django can query the data.</li> <li>The field should automatically create any secondary tables needed to store the string data.</li> <li>The secondary table should ideally have only one copy of each unique string. This is optional, but would be nice to have.</li> </ul> <p>Looking in the Django code it looks like I would want to do something similar to what ForeignKey is doing, but the documentation is sparse.</p> <p>This leads to the following questions:</p> <ul> <li>Can this be done?</li> <li>Has it been done (and if so where)?</li> <li>Is there any documentation on Django about how to extend and override their model classes, specifically their relationship classes? I have not seen a lot of documentation on that aspect of their code, but there is <a href="http://docs.djangoproject.com/en/dev/howto/custom-model-fields/#howto-custom-model-fields" rel="nofollow">this</a>.</li> </ul> <p>This is comes from this <a href="http://stackoverflow.com/questions/1110153/what-is-the-most-efficent-way-to-store-a-list-in-the-django-models">question</a>.</p> http://stackoverflow.com/questions/1110153/what-is-the-most-efficent-way-to-store-a-list-in-the-django-models 1 What is the most efficent way to store a list in the Django models? grieve 2009-07-10T15:16:19Z 2009-07-15T15:20:58Z <p>Currently I have a lot of python objects in my code similar to the following:</p> <pre><code>class MyClass(): def __init__(self, name, friends): self.myName = name self.myFriends = [str(x) for x in friends] </code></pre> <p>Now I want to turn this into a Django model, where self.myName is a string field, and self.myFriends is a list of strings.</p> <pre><code>from django.db import models class myDjangoModelClass(): myName = models.CharField(max_length=64) myFriends = ??? # what goes here? </code></pre> <p>Since the list is such a common data structure in python, I sort of expected there to be a Django model field for it. I know I can use a ManyToMany or OneToMany relationship, but I was hoping to avoid that extra indirection in the code.</p> <p><strong>Edit:</strong></p> <p>I added this <a href="http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list">related question</a>, which people may find useful.</p> http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list/1132043#1132043 1 Answer by grieve for How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-15T15:14:04Z 2009-07-15T15:14:04Z <p>Thanks for all those that answered. Even if I didn't use your answer directly the examples and links got me going in the right direction.</p> <p>I am not sure if this is production ready, but it appears to be working in all my tests so far. </p> <pre><code>class ListValueDescriptor(object): def __init__(self, lvd_parent, lvd_model_name, lvd_value_type, lvd_unique, **kwargs): """ This descriptor object acts like a django field, but it will accept a list of values, instead a single value. For example: # define our model class Person(models.Model): name = models.CharField(max_length=120) friends = ListValueDescriptor("Person", "Friend", "CharField", True, max_length=120) # Later in the code we can do this p = Person("John") p.save() # we have to have an id p.friends = ["Jerry", "Jimmy", "Jamail"] ... p = Person.objects.get(name="John") friends = p.friends # and now friends is a list. lvd_parent - The name of our parent class lvd_model_name - The name of our new model lvd_value_type - The value type of the value in our new model This has to be the name of one of the valid django model field types such as 'CharField', 'FloatField', or a valid custom field name. lvd_unique - Set this to true if you want the values in the list to be unique in the table they are stored in. For example if you are storing a list of strings and the strings are always "foo", "bar", and "baz", your data table would only have those three strings listed in it in the database. kwargs - These are passed to the value field. """ self.related_set_name = lvd_model_name.lower() + "_set" self.model_name = lvd_model_name self.parent = lvd_parent self.unique = lvd_unique # only set this to true if they have not already set it. # this helps speed up the searchs when unique is true. kwargs['db_index'] = kwargs.get('db_index', True) filter = ["lvd_parent", "lvd_model_name", "lvd_value_type", "lvd_unique"] evalStr = """class %s (models.Model):\n""" % (self.model_name) evalStr += """ value = models.%s(""" % (lvd_value_type) evalStr += self._params_from_kwargs(filter, **kwargs) evalStr += ")\n" if self.unique: evalStr += """ parent = models.ManyToManyField('%s')\n""" % (self.parent) else: evalStr += """ parent = models.ForeignKey('%s')\n""" % (self.parent) evalStr += "\n" evalStr += """self.innerClass = %s\n""" % (self.model_name) print evalStr exec (evalStr) # build the inner class def __get__(self, instance, owner): value_set = instance.__getattribute__(self.related_set_name) l = [] for x in value_set.all(): l.append(x.value) return l def __set__(self, instance, values): value_set = instance.__getattribute__(self.related_set_name) for x in values: value_set.add(self._get_or_create_value(x)) def __delete__(self, instance): pass # I should probably try and do something here. def _get_or_create_value(self, x): if self.unique: # Try and find an existing value try: return self.innerClass.objects.get(value=x) except django.core.exceptions.ObjectDoesNotExist: pass v = self.innerClass(value=x) v.save() # we have to save to create the id. return v def _params_from_kwargs(self, filter, **kwargs): """Given a dictionary of arguments, build a string which represents it as a parameter list, and filter out any keywords in filter.""" params = "" for key in kwargs: if key not in filter: value = kwargs[key] params += "%s=%s, " % (key, value.__repr__()) return params[:-2] # chop off the last ', ' class Person(models.Model): name = models.CharField(max_length=120) friends = ListValueDescriptor("Person", "Friend", "CharField", True, max_length=120) </code></pre> <p>Ultimately I think this would still be better if it were pushed deeper into the django code and worked more like the ManyToManyField or the ForeignKey.</p> http://stackoverflow.com/questions/1021613/problem-with-exiting-a-daemonized-process/1034694#1034694 1 Answer by grieve for Problem with exiting a daemonized process grieve 2009-06-23T19:34:59Z 2009-06-30T01:46:47Z <p>I tried a different approach, and this seems to work (note I took out the daemon portions of the code as I didn't have that module installed).</p> <pre><code>import signal class Manager: """ This manager starts the http server processes and worker processes, creates the input/output queues that keep the processes work together nicely. """ def __init__(self): self.NUMBER_OF_PROCESSES = cpu_count() def start(self): # all your code minus the loop print "waiting to die" signal.pause() def stop(self): print "quitting ..." # all your code minus self.running manager = Manager() signal.signal(signal.SIGHUP, lambda signum, frame: manager.stop()) manager.start() </code></pre> <p>One warning, is that signal.pause() will unpause for any signal, so you may want to change your code accordingly.</p> <p><strong>EDIT:</strong></p> <p>The following works just fine for me:</p> <pre><code>import daemon import signal import time class Manager: """ This manager starts the http server processes and worker processes, creates the input/output queues that keep the processes work together nicely. """ def __init__(self): self.NUMBER_OF_PROCESSES = 5 def start(self): # all your code minus the loop print "waiting to die" self.running = 1 while self.running: time.sleep(1) print "quit" def stop(self): print "quitting ..." # all your code minus self.running self.running = 0 manager = Manager() context = daemon.DaemonContext() context.signal_map = {signal.SIGHUP : lambda signum, frame: manager.stop()} context.open() manager.start() </code></pre> <p>What version of python are you using?</p> http://stackoverflow.com/questions/1013294/how-to-send-files-over-tcp-with-tcplistener-client-socketexception-problem/1013369#1013369 1 Answer by grieve for How to send files over tcp with TcpListener/Client? SocketException problem grieve 2009-06-18T15:29:25Z 2009-06-18T17:13:49Z <p>Typically you want to set the LINGER option on the socket. Under C++ this would be SO_LINGER, but under windows this doesn't actually work as expected. You really want to do this:</p> <ul> <li>Finish sending data.</li> <li>Call shutdown() with the how parameter set to 1.</li> <li>Loop on recv() until it returns 0.</li> <li>Call closesocket(). </li> </ul> <p>Taken from: <a href="http://tangentsoft.net/wskfaq/newbie.html#howclose" rel="nofollow">http://tangentsoft.net/wskfaq/newbie.html#howclose</a></p> <p>C# sharp may have corrected this in its libraries, but I doubt it since they are built on top of the winsock API.</p> <p><strong>Edit:</strong></p> <p>Looking at your code in more detail. I see that you are sending no header across at all, so on the receiving side you have no idea of how many bytes you are actually supposed to read. Knowing the number of bytes to read of the socket makes this a much easier problem to debug. Keep in mind that shutting down the socket can still snip of the last bit of data if you don't close it properly.</p> <p>Additionally having your buffer size be volatile is not thread safe and really doesn't buy you anything. Using stop as a volatile is safe, but don't expect it to be instant. In other words the loop could run several more times before it gets the updated value of stop. This is especially true on multiprocessor machines.</p> <p><strong>Edit_02:</strong></p> <p>For the TCPClientClass you want to do the following (as far as I can tell without having access to a C# at the moment).</p> <pre><code>// write all the bytes // Then do the following client.client.Shutdown(Shutdown.Send) // This assumes you have access to this protected member while (stream.read(buffer, 0, READ_BUFFER_SIZE) != 0); client.close() </code></pre> http://stackoverflow.com/questions/926688/how-can-i-make-a-class-in-python-support-getitem-but-not-allow-iteration 0 How can I make a class in python support __getitem__, but not allow iteration? grieve 2009-05-29T15:45:35Z 2009-05-29T16:11:20Z <p>I want to define a class that supports __getitem__, but does not allow iteration. for example:</p> <pre><code>class b: def __getitem__(self, k): return k cb = b() for x in cb: print x </code></pre> <p>What could I add to the class b to force the "for x in cb:" to fail?</p> http://stackoverflow.com/questions/926574/why-does-defining-getitem-on-a-class-make-it-iterable-in-python 2 Why does defining __getitem__ on a class make it iterable in python? grieve 2009-05-29T15:22:53Z 2009-05-29T16:07:42Z <p>Why does defining __getitem__ on a class make it iterable? </p> <p>For instance if I write:</p> <pre><code>class b: def __getitem__(self, k): return k cb = b() for k in cb: print k </code></pre> <p>I get the output:</p> <pre><code>0 1 2 3 4 5 6 7 8 ... </code></pre> <p>I would really expect to see an error returned from "for k in cb:"</p> http://stackoverflow.com/questions/926688/how-can-i-make-a-class-in-python-support-getitem-but-not-allow-iteration/926705#926705 2 Answer by grieve for How can I make a class in python support __getitem__, but not allow iteration? grieve 2009-05-29T15:48:07Z 2009-05-29T15:48:07Z <p>From the answers to this <a href="http://stackoverflow.com/questions/926574/why-does-defining-getitem-on-a-class-make-it-iterable-in-python">question</a>, we can see that __iter__ will be called before __getitem__ if it exists, so simple define b as:</p> <pre><code>class b: def __getitem__(self, k): return k def __iter__(self): raise Exception("This class is not iterable") </code></pre> <p>Then:</p> <pre><code>cb = b() for x in cb: # this will throw an exception when __iter__ is called. print x </code></pre> http://stackoverflow.com/questions/804603/available-game-network-protocol-definition-languages-and-code-generation/912354#912354 1 Answer by grieve for Available Game network protocol definition languages and code generation grieve 2009-05-26T19:44:23Z 2009-05-26T19:44:23Z <p>If you do go the route of writing your own protocol, you may want to read the answer I posted <a href="http://stackoverflow.com/questions/284885/multi-client-async-sockets-in-c-best-practices/285986#285986">here</a>.</p> <p>In summary it discusses what you should think about when writing a protocol, and list a few tricks for versioning and maintaining backwards and forward compatibility.</p> http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python 1 How can I detect if a file is binary (non-text) in python? grieve 2009-05-22T16:09:50Z 2009-05-22T20:55:56Z <p>How can I tell if a file is binary (non-text) in python? I am searching through a large set of files in python, and keep getting matches in binary files. This makes the output look incredibly messy.</p> <p>I know I could use grep -I, but I am doing more with the data than what grep allows for.</p> <p>In the past I would have just searched for characters greater than 0x7f, but utf8 and the like make that impossible on modern systems. Ideally the solution would be fast, but any solution will do.</p> http://stackoverflow.com/questions/821740/is-this-interview-question-too-hard-for-a-php-dev-job/821890#821890 4 Answer by grieve for Is this interview question too hard for a php dev. job? grieve 2009-05-04T20:26:54Z 2009-05-04T21:03:07Z <p><strong>Short Answer:</strong> No</p> <p><em>Edit: Just to clarify I don't think this is a hard question at all. Regardless of the language. As others have posted, even if they can't get the syntax correct, the should at least be able to write it out in a reasonable pseudocode.</em></p> <p><strong>Long Answer:</strong> I often ask interview questions I expect the candidate to miss. One could classify them as too (hard|vague|open-ended), but I am not really looking for an answer. I am looking to see the following:</p> <ul> <li>Do they try to answer the question? Some people just give up immediately</li> <li>How do they approach the problem? Even if they go down the wrong path are they generally making good assumptions and asking good questions?</li> <li>How well do they maintain composure under stress? The question is designed to be hard, and therefore will be stressful. Do they panic, remain calm, withdraw, talk it out, etc...?</li> <li>Are they able to find the solution if I give them hints and pointers? Or how well do they listen, and do they assimilate new information quickly?</li> </ul> <p>Occasionally I am surprised with a candidate who is whip-smart, and just codes up a quick and elegant solution. Those are definite keepers. But I also find good candidates by people who miss the final solution, but are clearly thoughtful, logical, and given enough time would eventually solve the problem.</p> http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/821980#821980 2 Answer by grieve for Expressing an integer as a series of multipliers grieve 2009-05-04T20:45:44Z 2009-05-04T20:57:26Z <p><strong>OP Wrote:</strong></p> <blockquote> <p>My goal originally was to come up with a specific method to pack 1..n large integers (aka longs) together so that their String representation is notably shorter than writing the actual number. Think multiples of ten, 10^6 and 1 000 000 are the same, however the representation's length in characters isn't.</p> </blockquote> <p>I have been down that path before, and as fun as it was to learn all the math, to save you time I will just point you to: <a href="http://en.wikipedia.org/wiki/Kolmogorov_complexity" rel="nofollow">http://en.wikipedia.org/wiki/Kolmogorov_complexity</a></p> <p>In a nutshell some strings can be easily compressed by changing your notation:</p> <pre><code>10^9 (4 characters) = 1000000000 (10 characters) </code></pre> <p>Others cannot:</p> <pre><code>7829203478 = some random number... </code></pre> <p>This is a great great simplification of the article I linked to above, so I recommend that you read it instead of taking my explanation at face value.</p> <p><strong>Edit:</strong> If you are trying to make RESTful urls for some set of unique data, why wouldn't you use a hash, such as MD5? Then include the hash as part of the URL, then look up the data based on the hash. Or am I missing something obvious? </p> http://stackoverflow.com/questions/762553/please-help-with-my-problems-retrieving-email-using-pop3-protocol/762734#762734 1 Answer by grieve for Please help with my problems retrieving email using POP3 protocol grieve 2009-04-18T01:54:47Z 2009-04-18T01:54:47Z <p>Your error may lie in using the ASCIIEncoder the way you are.</p> <p>From <a href="http://msdn.microsoft.com/en-us/library/38b953c8.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p>Data to be converted, such as data read from a stream, can be available only in sequential blocks. In this case, or if the amount of data is so large that it needs to be divided into smaller blocks, the application should use the Decoder or the Encoder provided by the GetDecoder method or the GetEncoder method, respectively.</p> </blockquote> <p>Since you are decoding a little bit at a time, it is possible it is decoding portions of the stream incorrectly.</p> <p>I would change your code to use a <a href="http://msdn.microsoft.com/en-us/library/system.text.asciiencoding.getdecoder.aspx" rel="nofollow">decoder</a>, or to read the entire message at once, then decode it with the GetString() member.</p> <p>As an additional sanity check you could use the message size that RETR &lt;index&gt; returns and see if it matches what LIST returns. If they don't match, I at least, would go with what RETR returns.</p> http://stackoverflow.com/questions/762235/how-do-web-spiders-differ-from-wgets-spider/762285#762285 4 Answer by grieve for How do web spiders differ from Wget's spider? grieve 2009-04-17T21:34:40Z 2009-04-17T21:34:40Z <p>I am not sure exactly what the original author of the comment was referring to, but I can guess that wget is slow as a spider, since it appears to only use a single thread of execution (at least by what you have shown).</p> <p>"Real" spiders such as <a href="http://crawler.archive.org/" rel="nofollow">heritrix</a> use a lot of parallelism and tricks to optimize their crawling speed, while simultaneously being nice to the website they are crawling. This typically means limiting hits to one site at a rate of 1 per second (or so), and crawling multiple websites at the same time.</p> <p>Again this is all just a guess based on what I know of spiders in general, and what you posted here.</p> http://stackoverflow.com/questions/758656/can-i-configure-codeswarm-to-only-create-the-png-files-sans-visual-display 2 Can I configure code_swarm to only create the png files sans visual display? grieve 2009-04-17T01:10:58Z 2009-04-17T06:21:34Z <p>Is there a way to configure code_swarm to only create the .png files. I think it would speed up the processing if it wasn't trying to display as it created the images.</p> <p>I've looked in the FAQ, but didn't notice anything about that in particular.</p> http://stackoverflow.com/questions/713701/force-directed-layout-in-c/759086#759086 4 Answer by grieve for Force-directed layout in C++ grieve 2009-04-17T04:59:09Z 2009-04-17T04:59:09Z <p>Have you looked at <a href="http://www.graphviz.org/pdf/neatoguide.pdf" rel="nofollow">neato</a> from <a href="http://www.graphviz.org/" rel="nofollow">graphviz</a>. This <a href="http://www.graphviz.org/pdf/libguide.pdf" rel="nofollow">guide</a> even goes into detail for using graphviz as a library. The <a href="http://www.graphviz.org/pdf/libguide.pdf" rel="nofollow">guide</a> includes using the fdp layout algorithm, which appears to be exactly what you want. All of graphviz falls under the <a href="http://www.graphviz.org/License.php" rel="nofollow">Common Public License</a>.</p> http://stackoverflow.com/questions/752047/best-whitelist-capable-http-proxy-for-windows/752158#752158 1 Answer by grieve for Best whitelist capable http proxy for Windows? grieve 2009-04-15T15:10:37Z 2009-04-15T15:10:37Z <p><a href="http://www.squid-cache.org/" rel="nofollow">Squid</a> seems to be the de facto proxy. This link describes how to set it up on a windows box: <a href="http://www.ausgamers.com/features/read/2638752" rel="nofollow">http://www.ausgamers.com/features/read/2638752</a></p> http://stackoverflow.com/questions/683278/can-pysvn-1-6-3-be-made-to-work-with-subversion-1-6-under-linux 0 Can pysvn 1.6.3 be made to work with Subversion 1.6 under linux? grieve 2009-03-25T20:19:33Z 2009-04-15T00:15:24Z <p>I see no reference on their website for this. I get pysvn to configure and build, but then it fails all the test. Has anyone had any luck getting this to work under linux?</p> http://stackoverflow.com/questions/738362/what-is-the-best-practice-for-documenting-network-protocol/738641#738641 6 Answer by grieve for What is the best practice for documenting network protocol? grieve 2009-04-10T19:34:00Z 2009-04-10T19:34:00Z <p>I have always liked the RFC style:</p> <pre> TCP Header Format 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Source Port | Destination Port | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Sequence Number | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Acknowledgment Number | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Data | |U|A|P|R|S|F| | | Offset| Reserved |R|C|S|S|Y|I| Window | | | |G|K|H|T|N|N| | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Checksum | Urgent Pointer | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Options | Padding | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | data | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ TCP Header Format Note that one tick mark represents one bit position. Figure 3. Source Port: 16 bits The source port number. Destination Port: 16 bits The destination port number. </pre> <p>From: <a href="http://www.faqs.org/rfcs/rfc793.html" rel="nofollow">http://www.faqs.org/rfcs/rfc793.html</a></p> <p>Just make sure you specify the endianess as well somewhere in the document.</p> http://stackoverflow.com/questions/732700/looking-for-an-algorithm-to-spit-out-a-sequence-of-numbers-in-a-pseudo-random-o 2 Looking for an algorithm to spit out a sequence of numbers in a (pseudo) random order grieve 2009-04-09T03:46:39Z 2009-04-09T22:44:48Z <p>Suppose I have a sequence of numbers: {n, n+1, n+2, ... n + m}</p> <p>Without storing the numbers ahead of time I want to create a function f(), which given the sequence {1,2,3,...m} will spit out the original set in a random (or at least pseudo random) order.</p> <p>For example assume my sequence is {10, 11, 12, 13, 14, 15, 16, 17}</p> <pre> f(1) could yield 14 f(2) could yield 17 f(3) could yield 13 f(4) could yield 10 f(5) could yield 16 f(6) could yield 15 f(7) could yield 11 f(8) could yield 12 </pre> <p>At one point in the past a co-worker showed me a mathematical algorithm that was able to do this, but I have since forgotten almost everything about it other than it existed. I remember that you had to have the sequence in advance, and generate some constants from the sequence which were used in the function. And for those wondering, I have sadly lost contact with that co-worker.</p> <p>This <a href="http://stackoverflow.com/questions/693880/create-random-number-sequence-with-no-repeats">question's</a> answers looks close to what I want, but I am not sure if the answers allow me to constrain the output to a specific sequence ahead of time.</p> <p><hr /></p> <p><strong>Edit:</strong></p> <p>To clarify a little more I don't want to store the original sequence, or the shuffled sequence. I want to generate a function f() from the original sequence.</p> <p>What is frustrating is that I have seen this, I just cannot remember enough about it to find it again with google.</p> <p>The Fisher-Yates algorithm is great for permuting or shuffling a deck, but it is not what I am looking for.</p> http://stackoverflow.com/questions/732852/what-pc-game-goes-nicely-with-programming/732876#732876 1 Answer by grieve for What PC game goes nicely with programming? grieve 2009-04-09T05:05:04Z 2009-04-09T05:05:04Z <p><a href="http://fantasticcontraption.com/" rel="nofollow">Fantastic Contraption</a> meets all of your requirements, but it is addictive.</p> http://stackoverflow.com/questions/732852/what-pc-game-goes-nicely-with-programming/732871#732871 0 Answer by grieve for What PC game goes nicely with programming? grieve 2009-04-09T05:04:09Z 2009-04-09T05:04:09Z <p><a href="http://www.nethack.org/" rel="nofollow">Nethack</a></p> <p>While an individual game can last a long time, it is turned based, and you can stop and save at anytime. Though it may not fulfill the last two requirements.</p> http://stackoverflow.com/questions/727551/design-ideas-for-serving-up-high-frequency-data/727683#727683 1 Answer by grieve for design ideas for serving up high-frequency data grieve 2009-04-07T21:34:46Z 2009-04-08T15:22:03Z <p>Sadly I am forbidden by NDA agreements to tell you how to do this. I worked on the team that created a non-relational database that does exactly what you are trying to do. It is called Citadel. I can however point you to the link for what is publicly available, and it should give you some ideas of how it works.</p> <p><a href="http://zone.ni.com/devzone/cda/tut/p/id/6579" rel="nofollow">http://zone.ni.com/devzone/cda/tut/p/id/6579</a></p> <p>You could just buy the product, but it is rather expensive.</p> <p>Also as <a href="http://stackoverflow.com/users/51881/karl">Karl</a> points out this is generally Used in SCADA products like <a href="http://global.wonderware.com/EN/Pages/WonderwareHMISCADA.aspx" rel="nofollow">Wonderware</a>, <a href="http://sine.ni.com/nips/cds/view/p/lang/en/nid/12511" rel="nofollow">Lookout</a>, and <a href="http://www.ni.com/labview/labviewdsc/" rel="nofollow">LabVIEW DSC</a>.</p> <p>A search for <a href="http://www.google.com/search?q=SCADA%2Bdata%2Bstorage&amp;start=0&amp;start=0&amp;ie=utf-8&amp;oe=utf-8&amp;client=mozilla&amp;rls=org.mozilla:en-US:unofficial" rel="nofollow">SCADA data storage</a> turns up some interesting reading as well.</p> <p><hr /></p> <p>As an aside a relational databases can solve this problem if the amount of data is small. What tends to happen over time is that the data grows without bounds, and the relational database gets filled beyond its capacity. A good SCADA data storage system can easily handle 50000 points being polled at once a second. Though at some point even they start to get too large to handle easily.</p> http://stackoverflow.com/questions/727690/perforce-dev-branches-sparse-branching-vs-private-branching/727765#727765 2 Answer by grieve for Perforce Dev Branches - Sparse Branching vs. Private Branching grieve 2009-04-07T22:00:46Z 2009-04-07T22:00:46Z <p>As you noted from the documentation space is not really an issue. Speed is though. Syncing down the entire development tree may take a long time. The integration back will also take a while. If you only need a branch of the tree then both of those operations are much faster. </p> <p>Human error, as you already said, can occur, but if you make a branchspec, it can help alleviate some of the potential errors.</p> http://stackoverflow.com/questions/706755/how-do-you-safely-and-efficiently-get-the-row-id-after-an-insert-with-mysql-using 2 How do you safely and efficiently get the row id after an insert with mysql using MySQLdb in python? grieve 2009-04-01T18:14:27Z 2009-04-02T18:56:02Z <p>I have a simple table in mysql with the following fields:</p> <ul> <li>id -- Primary key, int, autoincrement</li> <li>name -- varchar(50)</li> <li>description -- varchar(256)</li> </ul> <p>Using MySQLdb, a python module, I want to insert a name and description into the table, and get back the id. </p> <p>In pseudocode:</p> <pre><code>db = MySQLdb.connection(...) queryString = "INSERT into tablename (name, description) VALUES" % (a_name, a_desc);" db.execute(queryString); newID = ??? </code></pre> http://stackoverflow.com/questions/702233/is-there-an-svn-command-to-remove-files-from-the-client-only 3 Is there an svn command to remove files from the client only? grieve 2009-03-31T17:51:07Z 2009-03-31T21:57:38Z <p>In perforce you can issue a 'sync to none' command to remove files from the client, but leave them untouched in the depot (or repository in svn lingo).</p> <blockquote> <p>p4 sync ...#none</p> </blockquote> <p>Is there a similar command in svn?</p> <p><hr /></p> <p><strong>Edit:</strong></p> <p>Thanks to those that have answered so far.</p> <p>To clarify:</p> <p>I don't want to use rm -rf on the directory, since it will remove all files, even those that are local only. I also don't want to have to go through by hand deleting individual files which are on the client and in the repository.</p> <p>The 'p4 sync ...#none' command allows me to remove files from the client, which are in the depot/repository, and leaves local only files alone.</p> <p>With a small set of files, this is not a big deal, but with numerous files it is painful to do by hand.</p> http://stackoverflow.com/questions/700072/java-socket-programming-does-not-work-for-10-000-clients/700124#700124 0 Answer by grieve for Java Socket Programming does not work for 10,000 clients grieve 2009-03-31T05:24:47Z 2009-03-31T05:24:47Z <p>This is not a simple question, but for a very in depth (sorry, not in java though) answer see this: <a href="http://www.kegel.com/c10k.html" rel="nofollow">http://www.kegel.com/c10k.html</a></p> <p><hr /></p> <p><strong>EDIT</strong></p> <p>Even with nio, this is still a difficult problem. 10000 connections is a tremendous resource burden on the machine, even if you are using non-blocking sockets. This is why large web sites have server farms and load balancers.</p> http://stackoverflow.com/questions/660422/call-recv-on-the-same-blocking-socket-from-two-threads/691545#691545 1 Answer by grieve for Call recv() on the same blocking socket from two threads grieve 2009-03-27T21:34:03Z 2009-03-27T21:34:03Z <p>From the <a href="http://www.mkssoftware.com/docs/man3/recv.3.asp" rel="nofollow">man page</a> on recv</p> <blockquote> <p>A recv() on a SOCK_STREAM socket returns as much available information as the size of the buffer supplied can hold.</p> </blockquote> <p>Lets assume you are using TCP, since it was not specified in the question. So suppose you have thread A and thread B both blocking on recv() for socket s. Once s has some data to be received it will unblock one of the threads, lets say A, and return the data. The data returned will be of some random size as far as we are concerned. Thread A inspects the data received and decides if it has a complete "message", where a message is an application level concept. </p> <p>Thread A decides it does not have a complete message, so it calls recv() again. BUT in the meantime B was already blocking on the same socket, and has received the rest of the "message" that was intended for thread A. I am using intended loosely here.</p> <p>Now both thread A and thread B have an incomplete message, and will, depending on how the code is written, throw the data away as invalid, or cause weird and subtle errors.</p> <p>I wish I could say I didn't know this from experience.</p> <p>So while recv() itself is technically thread safe, it is a bad idea to have two threads calling it simultaneously if you are using it for TCP.</p> <p>As far as I know it is completely safe when you are using UDP.</p> <p>I hope this helps.</p> http://stackoverflow.com/questions/1510501/how-can-you-handle-invalid-enum-types-using-jaxb/1510708#1510708 Comment by grieve on How can you handle invalid enum types using JAXB? grieve 2009-10-05T14:42:40Z 2009-10-05T14:42:40Z Adding the link: <a href="https://jaxb.dev.java.net/nonav/jaxb20-pfd/api/javax/xml/bind/Unmarshaller.html" rel="nofollow">jaxb.dev.java.net/nonav/jaxb20-pfd/&hellip;</a> http://stackoverflow.com/questions/1510501/how-can-you-handle-invalid-enum-types-using-jaxb/1510708#1510708 Comment by grieve on How can you handle invalid enum types using JAXB? grieve 2009-10-02T18:33:18Z 2009-10-02T18:33:18Z 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. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282359#282359 Comment by grieve on What are five things you hate about your favorite language? grieve 2009-09-15T20:58:37Z 2009-09-15T20:58:37Z @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. http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/478159#478159 Comment by grieve on What's the coolest startup programmer job title? grieve 2009-09-15T20:54:01Z 2009-09-15T20:54:01Z @jcollum: I agree. That is why I always try to refer to myself as a programmer or software developer. http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list/1153959#1153959 Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-20T22:19:16Z 2009-07-20T22:19:16Z Nice! I will have to look into this further. http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-17T19:16:33Z 2009-07-17T19:16:33Z So my attempt below does work, but is extremely brittle and error prone. :( http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list/1132043#1132043 Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-16T16:02:47Z 2009-07-16T16:02:47Z 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. http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list/1132043#1132043 Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-15T21:50:44Z 2009-07-15T21:50:44Z 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. http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list/1128596#1128596 Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-15T19:09:43Z 2009-07-15T19:09:43Z 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! http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-15T15:14:51Z 2009-07-15T15:14:51Z Posted my attempt below, which appears to work. http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list/1127073#1127073 Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-14T20:13:35Z 2009-07-14T20:13:35Z 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. http://stackoverflow.com/questions/1126642/how-would-you-inherit-from-and-override-the-django-model-classes-to-create-a-list Comment by grieve on How would you inherit from and override the django model classes to create a listOfStringsField? grieve 2009-07-14T16:59:42Z 2009-07-14T16:59:42Z 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. http://stackoverflow.com/questions/1110153/what-is-the-most-efficent-way-to-store-a-list-in-the-django-models/1113039#1113039 Comment by grieve on What is the most efficent way to store a list in the Django models? grieve 2009-07-13T20:35:29Z 2009-07-13T20:35:29Z +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. http://stackoverflow.com/questions/1110153/what-is-the-most-efficent-way-to-store-a-list-in-the-django-models Comment by grieve on What is the most efficent way to store a list in the Django models? grieve 2009-07-10T20:08:53Z 2009-07-10T20:08:53Z @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... http://stackoverflow.com/questions/1110153/what-is-the-most-efficent-way-to-store-a-list-in-the-django-models/1110207#1110207 Comment by grieve on What is the most efficent way to store a list in the Django models? grieve 2009-07-10T16:11:55Z 2009-07-10T16:11:55Z 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.