Top Questions - Stack Overflow most recent 30 from stackoverflow.com 2009-07-04T03:50:05Z http://stackoverflow.com/feeds http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself C# - How to xml deserialize object itself? david.healed 2009-07-04T02:05:55Z 2009-07-04T03:48:31Z <pre><code>public class Options { public FolderOption FolderOption { set; get; } public Options() { FolderOption = new FolderOption(); } public void Save() { XmlSerializer serializer = new XmlSerializer(typeof(Options)); TextWriter textWriter = new StreamWriter(@"C:\Options.xml"); serializer.Serialize(textWriter, this); textWriter.Close(); } public void Read() { XmlSerializer deserializer = new XmlSerializer(typeof(Options)); TextReader textReader = new StreamReader(@"C:\Options.xml"); //this = (Options)deserializer.Deserialize(textReader); textReader.Close(); } } } </code></pre> <p>I managed to Save without problem, all members of FolderOption are deserialized. But the problem is how to read it back? The line - //this = (Options)deserializer.Deserialize(textReader); won't work. </p> <p>Edit: Any solution to this problem? Can we achieve the same purpose without assigning to this? That is deserialize Options object back into Option. I am lazy to do it property by property. Performing on the highest level would save of lot of effort.</p> 5 http://stackoverflow.com/questions/1081445/how-to-document-a-method-that-overrides-another-method How to document a method that overrides another method? Janusz 2009-07-04T03:46:30Z 2009-07-04T03:46:30Z <p>I always wondered how to document a method that overrides a message from a base class. Normally I add a java doc to each public method and to some private, protected methods. </p> <p>But autogenerating a documentation block for an override method in eclipse produces something like this: </p> <pre><code>/* * (non-Javadoc) * * @see javax.swing.JComponent#paintComponent(java.awt.Graphics) */ </code></pre> <p>Is this a good way to document the override? Should I inherit/copy the documentation from the base class? </p> <p>What are you doing as a documentation for this special case?</p> 0 http://stackoverflow.com/questions/1080872/formatting-a-float-to-two-decimals Formatting a float to ###.## (two decimals) volvox 2009-07-03T21:19:04Z 2009-07-04T03:46:29Z <p>Having :</p> <pre><code>var Difference: DWORD // difference shows in milliseconds // List.Items.Count can be any 0 to ######## [...] sb.panels[2].Text := FloatToStr((((List.Items.Count) / difference) / 1000)); </code></pre> <p>I want to format the resulting text to any ###.## (two decimals). Using FloatToStrF is no success (does'nt seem to work with DWORD). </p> <p>Thanks</p> 3 http://stackoverflow.com/questions/1081436/adding-controls-dynamically-at-design-time-vb-net Adding controls dynamically at design time vb.net chris 2009-07-04T03:39:55Z 2009-07-04T03:46:19Z <p>I have been developing some custom smart tags. I am using a DesignerActionMethodItem which gets me to a fired method in code. When I try to hit the controls.Add the control is added but it seems the designer is unaware of it. It is never serialized and it goes away when the form is refreshed in the designer. Any help would be greatly appreciated. I am sort of stuck and google hasn't helped me. Please don't send me anything about smart tags that has nothing to do with adding controls dynamically at design time, I have already read so many looking for this.</p> 0 http://stackoverflow.com/questions/780741/where-is-visual-studio-2005-express-at Where is Visual Studio 2005 Express at? Spoike 2009-04-23T08:04:06Z 2009-07-04T03:45:38Z <p>I'm working on a project that requires Visual Studio 2005 and I've been trying to find a legitimate download site for Visual Studio 2005 Express, but it seems like Microsoft only wants people to download the 2008 version instead.</p> <p>Anyone knows why it's like this and if there is some link somewhere where Visual Studio 2005 Express is available?</p> 7 http://stackoverflow.com/questions/556255/how-to-throw-good-exceptions How to throw good exceptions? acidzombie24 2009-02-17T10:39:25Z 2009-07-04T03:45:11Z <p>I heard you should never throw a string because there is a lack of information and you'll catch exceptions you dont expect to catch. What are good practice for throwing exceptions? do you inherit a base exception class? Do you have many exceptions or few? do you do MyExceptionClass&amp; or const MyExceptionClass&amp; ? etc. Also i know exceptions should never been thrown in destructors </p> <p>i'll add that i understand design by contract and when to throw exception. I am asking how i should throw exceptions.</p> 11 http://stackoverflow.com/questions/1081409/why-should-i-use-asserts Why should I use asserts? jan 2009-07-04T03:13:28Z 2009-07-04T03:44:32Z <p>I never got the idea of asserts -- why should U ever use them? </p> <p>I mean, let's say I were a formula driver and all the asserts were things like security belt, helmet, etc.</p> <p>The tests (in debug) were all okay, but now we want to do racing (release)! Should we drop all security, because there were no issues while testing? </p> <p>I will never ever remove them. I think most of the guys that claim that removing something comparable to asserts never profiled their code or the asserts were absolute displaced. I've never seen any real performance advantage especially regarding the 80 / 20 rule.</p> <p>So, am I missing the point somehow, or could anybody tell me, why I should use asserts? Btw, I'm using unit tests.</p> <p>cheers jan</p> 6 http://stackoverflow.com/questions/1081340/how-do-you-do-something-after-you-render-the-view-django How do you do something after you render the view? (Django) rick 2009-07-04T02:16:36Z 2009-07-04T03:44:31Z <p>I want to do something after I have rendered the view using </p> <pre><code>return render_to_response() </code></pre> <p>Are signals the only way to do this? Do I need to write a custom signal or does request_finished give me enough information? Basically I need to know what page was rendered, and then do an action in response to that.</p> <p>Thanks.</p> <p>UPDATE FROM COMMENTS: I don't want to hold up the rendering of the page, so I want to render the page first and then do the action.</p> 3 http://stackoverflow.com/questions/1081408/java-documentation-override-method-does-not-inheritdoc Java Documentation Override Method does not InheritDoc karmic 2009-07-04T03:13:28Z 2009-07-04T03:44:07Z <p>A method that overrides another method does not inherit documentation of the method it is overriding. Is there any way to explicitly tell it to inherit the documentation?</p> <pre><code>/** * {@inheritDoc} * * This implementation uses a dynamic programming approach. */ @Override public int[] a(int b) { return null; } </code></pre> 1 http://stackoverflow.com/questions/1081430/is-it-ok-to-use-get-urls-in-confirmation-or-verification-emails-for-user-accounts Is it ok to use GET urls in confirmation or verification emails for user accounts? MrYertle 2009-07-04T03:30:43Z 2009-07-04T03:43:05Z <p>I read that some webmail services prefetch url links in emails. The GET request would then trigger my server to verify the account, regardless of whether the user did anything. </p> <p>Is this true and if so, how can I work around this? I have seen a lot of websites with one-click solutions for confirming user accounts. </p> 0 http://stackoverflow.com/questions/1081342/iterating-over-a-data-structure-with-51-million-primes-quickly Iterating over a data structure with 51 million primes quickly. dmindreader 2009-07-04T02:20:02Z 2009-07-04T03:42:34Z <p>What's the best data structure (in java) for the task of loading 51 million primes and then iterating over them? </p> <p>I need to know, for example, the primes that are between 1000000000 and that same number minus 100000.</p> 5 http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job Creating a FileName as a Timestamp in a Batch Job... Eoin Campbell 2009-06-30T16:03:02Z 2009-07-04T03:41:59Z <p>Hey Guys,</p> <p>We have a batch job that runs every day and copies a file to a pickup folder. I want to also take a copy of that file and drop it into an archive folder with the filename</p> <pre><code> yyyy-MM-dd.log </code></pre> <p>Whats the easiest way to do this in a Dos Batch Job...</p> <p>I'm basically looking for an equivalent of the unix command</p> <pre><code>cp source.log `date +%F`.log </code></pre> 5 http://stackoverflow.com/questions/1081437/microsoft-access-2007-connection Microsoft Access 2007 Connection Alan 2009-07-04T03:41:17Z 2009-07-04T03:41:17Z <p>I wrote a program that connected to a Microsoft Access 2000/2003 mdb file and accesses the data. It works fine, but I'm wondering if there is a way to connect to Access 2007? If I change my connection string, will my program work with access 2007 or is it more complicated then that? And if it will work, can someone provide an example of an Access 2007 database?</p> 0 http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python Inheriting from instance in Python Alexandra 2009-07-04T01:02:45Z 2009-07-04T03:39:35Z <p>Hello, </p> <p>In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example:</p> <pre><code>A = Parent(x, y, z) B = Child(A) </code></pre> <p>This is a hack that I thought might work:</p> <pre><code>class Parent(object): def __init__(self, x, y, z): print "INITILIZING PARENT" self.x = x self.y = y self.z = z class Child(Parent): def __new__(cls, *args, **kwds): print "NEW'ING CHILD" if len(args) == 1 and str(type(args[0])) == "&lt;class '__main__.Parent'&gt;": new_args = [] new_args.extend([args[0].x, args[0].y, args[0].z]) print "HIJACKING" return Child(*new_args) print "RETURNING FROM NEW IN CHILD" return object.__new__(cls, *args, **kwds) </code></pre> <p>But when I run </p> <pre><code>B = Child(A) </code></pre> <p>I get:</p> <pre><code>NEW'ING CHILD HIJACKING NEW'ING CHILD RETURNING FROM NEW IN CHILD INITILIZING PARENT Traceback (most recent call last): File "classes.py", line 52, in &lt;module&gt; B = Child(A) TypeError: __init__() takes exactly 4 arguments (2 given) </code></pre> <p>It seems the hack works just as I expected but the compiler throws a TypeError at the end. I was wondering if I could overload TypeError to make it ignore the B = Child(A) idiom but I wasn't sure how to do that. In any case, would you please give me your solutions for inheriting from instances?</p> <p>Thanks!</p> 4 http://stackoverflow.com/questions/567222/simple-prime-generator-in-python Simple Prime Generator in Python marc lincoln 2009-02-19T21:22:24Z 2009-07-04T03:38:20Z <p>Hi, could someone please tell me what I'm doing wrong with this code. It is just printing 'count' anyway. I just want a very simple prime generator (nothing fancy). Thanks a lot. lincoln.</p> <pre><code>import math def main(): count = 3 one = 1 while one == 1: for x in range(2, int(math.sqrt(count) + 1)): if count % x == 0: continue if count % x != 0: print count count += 1 </code></pre> 11 http://stackoverflow.com/questions/1081434/multi-database-problem Multi Database Problem JayGlynn 2009-07-04T03:37:29Z 2009-07-04T03:37:29Z <p>Using SubSonic v2.3 in a web app. Each client (200+) will have their own database. We have been putting in the connect string for the client when we create the repository for the database call. What we're seeing now is that client A may make a request at about the same time as client B. Client A may get client B's data. This seems to happen when each client is requesting the same page. I know SubSonic is built for a single db but I've read several posts about switching the connect string in the default provider to get multi database support. Any insights on whatI may need to check would be helpful.</p> 0 http://stackoverflow.com/questions/1081399/reading-mysql-manuals-in-mysql-monitor Reading MySQL manuals in MYSQL monitor? SimpleThings 2009-07-04T03:06:18Z 2009-07-04T03:34:37Z <p>Suppose I made a mistake like:</p> <pre><code>mysql&gt; create database plastronics -&gt; ; ERROR 1007 (HY000): Can't create database 'plastronics'; database exists mysql&gt; </code></pre> <p>I am looking something like ":h 1007" in Vim.</p> <blockquote> <p>How can I quickly read the manual entry for the error 1007?</p> </blockquote> <p><strong>Ps.</strong></p> <p>I am particularly interested in the error because of the different to the <a href="http://code.google.com/edu/tools101/mysql.html#Audience" rel="nofollow">Introduction Material</a>:</p> <pre><code>mysql&gt; create database plastronics -&gt; ; Query OK, 1 row affected (0.00 sec) mysql&gt; </code></pre> 1 http://stackoverflow.com/questions/1081392/how-can-i-report-the-api-of-a-class-programmatically How can I report the API of a class programmatically? roder 2009-07-04T02:59:38Z 2009-07-04T03:34:01Z <p>Dear stackoverflow-</p> <p>My goal is to parse a class and return a data-structure (object, dictionary, etc) that is descriptive of the methods and the related parameters contained within the class. Bonus points for types and returns...</p> <p>Requirements: Must be Python</p> <p>For example, the below class:</p> <pre><code>class Foo: def bar(hello=None): return hello def baz(world=None): return baz </code></pre> <p>Would be parsed to return</p> <pre><code>result = {class:"Foo", methods: [{name: "bar", params:["hello"]}, {name: "baz", params:["world"]}]} </code></pre> <p>So that's just an example of what I'm thinking... I'm really flexible on the data-structure.</p> <p>Any ideas/examples on how to achieve this?</p> 1 http://stackoverflow.com/questions/1081389/performance-between-select-maxcolname-and-rownum-1 Performance between SELECT MAX(col_name) and ROWNUM = 1 Sambath 2009-07-04T02:55:35Z 2009-07-04T03:30:27Z <p>Dear all,</p> <p>I doubt on the speed and result of below queries. Could anyone give me the explanation on them? (These queries written for Oracle database)</p> <p>Let say I have a table <strong>table1(ID, itemID, trnx_date, balance, ...)</strong>. I want to get the latest balance of an item.</p> <p>Query 1:</p> <p><strong>SELECT balance FROM table1 WHERE ID = (SELECT MAX(ID) from table1 WHERE itemID = *item_id*);</strong></p> <p>Query 2:</p> <p><strong>SELECT balance FROM table1 WHERE itemID = *item_id* AND rownum = 1 ORDER BY ID DESC;</strong></p> <p>where <strong>*item_id*</strong> is the variable.</p> <p>Thus, do these two queries give the same result? And which one is faster or is there any other query that is faster than them?</p> <p>Thanks</p> 1 http://stackoverflow.com/questions/1081394/what-xpath-selects-odd-trs-from-a-table-starting-with-the-third What XPath selects odd TRs from a table, starting with the third? Gordon 2009-07-04T03:01:17Z 2009-07-04T03:29:29Z <p>I have a table:</p> <p>&lt;table&gt;<br /> &lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;6&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;7&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt;<br /> &lt;/table&gt;</p> <p>I need an XPath to select odd rows, starting on the third row (3, 5, 7, 9, etc.).</p> 2 http://stackoverflow.com/questions/1081088/how-can-i-represent-a-coordinate-grid-in-delphi How can I represent a coordinate grid in Delphi? Mason Wheeler 2009-07-03T23:00:45Z 2009-07-04T03:27:50Z <p>I'm trying to represent a two-dimensional coordinate grid with a two-dimensional array. Problem is, declaring the array flips the X and Y coordinates because of the way Delphi allocates the array. For example, if I declare a 5x5 grid and place a value in grid[1, 4], I'd expect it to look something like this, if I were to output the contents of the grid:</p> <pre><code>...X. ..... ..... ..... ..... </code></pre> <p>Instead, I get</p> <pre><code>..... ..... ..... X.... ..... </code></pre> <p>with the value displaying at (4, 1).</p> <p>Does anyone know any tricks to make the coordinate order work intuitively?</p> 3 http://stackoverflow.com/questions/1055032/how-to-delete-a-part-of-the-file-with-awk How to delete a part of the file with awk Bartek 2009-06-28T14:38:14Z 2009-07-04T03:27:32Z <p>Hi</p> <p>I'm writing a shell script, which at some point has to take a file, search for a particular word in it and delete the whole text that comes after this word (including the word itself) - awk is the right tool I suppose, but I don't really know much about programming in it.</p> <p>Could anyone help me?</p> 5 http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric SQL: how do I find if the contents of a varchar column are numeric ? Leonel 2009-07-03T17:07:01Z 2009-07-04T03:26:30Z <p>One of the columns in my table is a varchar that is supposed to contain only numeric values (I can't change the definition to a number column). Thus my SQL query:</p> <pre><code>select to_number(col1) from tbl1 where ... </code></pre> <p>fails because for some row the contents of the column are not numeric.</p> <p>What's a <code>select</code> query I can use to find these rows ?</p> <p>I'm using an Oracle database</p> <p>I'm looking for something like a <code>is_number</code> function.</p> 4 http://stackoverflow.com/questions/1081379/what-are-the-things-to-avoid-when-using-a-ioc-container What are the things to avoid when using a IoC container? Sly 2009-07-04T02:44:00Z 2009-07-04T03:25:58Z <p>I'm introducing an IoC Container in an architecture for the first time. I'm looking for things that one <strong>should not</strong> do with an IoC Container. I want to avoid the pitfalls of using an IoC container. I don't want to misuse or overuse it.</p> <p>Can you help me put up a list of things to avoid when using a IoC container?</p> <p>I have on item on my list so far:</p> <ul> <li>Don't let every class access the container (don't make it a public Singleton). Only a few top level classes should access the container.</li> </ul> 2 http://stackoverflow.com/questions/1081422/flex-button-style-messing-up-flexchrome Flex: Button style messing up FlexChrome John Isaacks 2009-07-04T03:25:56Z 2009-07-04T03:25:56Z <p>My air app is using the FlexChrome instead of the system chrome. The problem is I also have a .CSS for skinning that sets the skins for the Button class. This is also changing the 3 buttons (minimize, maximize, close) in the flex chrome which is undesired. Is there a way to make it not effect the Flex chrome buttons?</p> <p>Also the css file is in a central location and I use it for many apps so I would like not to have to change the css file but change something in my app only so I do not effect other projects. If that is doable.</p> <p>Thanks!</p> 0 http://stackoverflow.com/questions/262504/google-maps-bubble-templates Google Maps Bubble Templates Wilco 2008-11-04T17:00:24Z 2009-07-04T03:24:49Z <p>Googling has been difficult because I can't get results specific enough - wondering if my fellow SO-ers have any insight. Are there any handy CSS/HTML templates out there to make inserting content into a google maps bubble easy? I'm throwning together a quick-n-dirty mashup and wanted to avoid spending time styling manually if I can avoid it.</p> <p>For reference, this post is somewhat related and could prove helpful:</p> <ul> <li><a href="http://stackoverflow.com/questions/203477/how-does-css-formatting-in-a-google-maps-bubble-work" rel="nofollow">how-does-css-formatting-in-a-google-maps-bubble-work</a></li> </ul> 1 http://stackoverflow.com/questions/1078897/storing-file-content-in-db storing file content in DB ha22109 2009-07-03T11:15:13Z 2009-07-04T03:24:22Z <p>I am making a model in which i have a filefield.I wan to store file content in the DB column instead of file path.ANy suggestions</p> 3 http://stackoverflow.com/questions/1079635/microsoft-excel-if-statements Microsoft Excel If Statements Rachael Rayner 2009-07-03T14:35:37Z 2009-07-04T03:24:20Z <p>I have altered a statement I got from <a href="http://stackoverflow.com/questions/1079228/microsoft-excel-2007-if-statements" rel="nofollow">a previous answer</a> a bit and it now looks like this:</p> <p>=IF(C6=$R$3,IF(D6&lt;=0.99,$U$2,IF(AND(D6>0.99,D6&lt;=4.99),$U$3,IF(AND(D6>4.99,D6&lt;=14.99),$U$4,IF(AND(D6>14.99,D3&lt;=29.99),$U$5,IF(AND(D6>29.99,D6&lt;99.99),$U$6,""))))),$S$8)</p> <p>It all works fine until you change the value in cell D6 to say £45 when it still picks up the figure in cell U5.</p> <p>Can you or anyone else help me tweak this so that it works? I need a statement to do the following:</p> <p>If C2=R2 and D2 is &lt; T2 then U2, if D2 is >T but T3 but &lt; T4 then U4 if D2 is > T4 but &lt; T5 then U5, if D2 is > T5 but &lt; T6 then U6 BUT if C2 does not equal R2 then S8</p> 1 http://stackoverflow.com/questions/1081420/audio-recording-error-kaudioqueueerrcannotstart-on-iphone-os-3-0 Audio recording error kAudioQueueErr_CannotStart on iPhone OS 3.0 Jeremy Borden 2009-07-04T03:22:14Z 2009-07-04T03:22:14Z <p>I'm working on a couple different iphone apps that both record and play sounds concurrently. Think multitrack mixing... play one sound a save it then listen to that sound while recording the next sound to another file. My mechanism for this has been to start up two different audio queues, one for recording, and one for playing.</p> <p>This was working A-OK until the release of OS 3.0... Since then, however, the following happens:</p> <p>If I start the recording queue first, it supposedly starts fine, but the call to AudioQueueStart for the playback queue returns kAudioQueueErr_CannotStart.</p> <p>If I start the playback queue first, it also supposedly starts fine, but the call to AudioQueueStart for the record queue returns the same error, kAudioQueueErr_CannotStart.</p> <p>Anyone have any luck debugging this error? Seems like maybe the two queues are stomping on each other's memory or something? The official description is: "The audio queue has encountered a problem and cannot start." Not super helpful...</p> <p>Jeremy</p> 0 http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java Compressing array of integers in java pdeva 2009-07-03T22:46:34Z 2009-07-04T03:22:04Z <p>I have some extremely large array of integers which i would like to compress.<br /> However the way to do it in java is to use something like this -</p> <pre><code>int[] myIntArray; ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(1024); ObjectOutputStream objectOutputStream = new ObjectOutputStream(new DeflaterOutputStream(byteArrayOutputStream)); objectOutputStream.writeObject(myIntArray); </code></pre> <p>Note that the int array first needs to be converted to bytes by java. Now I know that is fast but it still needs to create a whole new byte array and scan through the entire original int array converting it to bytes and copying the value to the new byte array. </p> <p>Is there any way to skip the byte conversion and make it compress the integers right away?</p> 6