User davidg - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:46:40Z http://stackoverflow.com/feeds/user/2384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1262865/ranking-students-by-grade-in-sql/1262876#1262876 1 Answer by davidg for Ranking Students by Grade in SQL davidg 2009-08-11T20:59:21Z 2009-08-11T20:59:21Z <p>You should use "ORDER BY":</p> <p>SELECT * FROM Students ORDER BY Date,Rank</p> <p>That will order the data by date, then rank. You can add as many fields as you want, as long as they are comparable (you can't compare BLOBs or long text fields).</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/247538/which-standard-c-classes-cannot-be-reimplemented-in-c/247580#247580 2 Answer by davidg for Which standard c++ classes cannot be reimplemented in c++? davidg 2008-10-29T16:58:10Z 2008-10-29T16:58:10Z <p>All classes in the standard library, by definition, <strong><em>must</em></strong> be implemented in C++. Some of them hide some obscure language/compiler constructs, but still are just wrappers around that complexity, not language features.</p> http://stackoverflow.com/questions/197461/what-is-the-difference-between-vc-and-c/197473#197473 1 Answer by davidg for What is the difference between "VC++" and "C++" ? davidg 2008-10-13T12:47:25Z 2008-10-13T12:47:25Z <p>Well, Visual C++ used to stand for the Microsoft C++ compiler plus the MFC library. Basically there's no difference in the language itself, but VC++ includes a library, and some IDE support, for easily building GUIs.</p> http://stackoverflow.com/questions/24109/c-ide-for-linux/24240#24240 2 Answer by davidg for C++ IDE for Linux? davidg 2008-08-23T13:52:25Z 2008-10-11T17:50:12Z <p>I quite like <a href="http://www.ultimatepp.org/" rel="nofollow">Ultimate++</a>'s IDE. It has some features that were designed to use with their own library (which, BTW, is quite a nice toolkit if you don't want to buy on either GTK+ or QT) but it works perfectly well with general C++ projects. It provides decent code completion, good syntax colouring, integrated debugging, and all other features most modern IDEs support.</p> http://stackoverflow.com/questions/191536/converting-xml-to-json-using-python/191591#191591 0 Answer by davidg for Converting XML to JSON using Python? davidg 2008-10-10T14:30:59Z 2008-10-10T14:30:59Z <p>Well, probably the simplest way is just parse the XML into dictionaries and then serialize that with simplejson. </p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190900#190900 1 Answer by davidg for Order of tags in <head></head> davidg 2008-10-10T11:28:43Z 2008-10-10T11:28:43Z <p>It would only matter if one of the linked files (CSS/Javascript) depended on another. In that case, all dependencies must be loaded first.</p> <p>Say, for example, you are loading a jQuery plugin, you'd then need to first load jQuery itself. Same when you have a CSS file with some rules extending other rules.</p> http://stackoverflow.com/questions/178734/what-do-you-consider-to-be-the-most-promising-open-source-project-in-the-long-ter/178774#178774 3 Answer by davidg for What do you consider to be the most promising Open Source project in the long term? davidg 2008-10-07T14:41:14Z 2008-10-07T14:41:14Z <p>I think the various web frameworks out there. Be it RoR, Django, Cake, Symfony, Catalyst, or something else.</p> <p>Like it or not, we are moving to a "cloud" centric paradigm, and web frameworks are helping developers move into that area.</p> http://stackoverflow.com/questions/177993/listview-multiple-selection-behavior/178327#178327 0 Answer by davidg for ListView multiple selection behavior davidg 2008-10-07T13:04:29Z 2008-10-07T13:04:29Z <p>Do you mean that you want to make a rectangular selection, rather than a sequential selection?</p> http://stackoverflow.com/questions/178262/what-should-be-oo-and-what-shouldnt/178291#178291 -2 Answer by davidg for What should be OO and what shouldn't? davidg 2008-10-07T12:53:54Z 2008-10-07T12:53:54Z <p>Just a tip: you should tag this question as "subjective" as everyone seems to have a different opinion on things like this.</p> http://stackoverflow.com/questions/175323/should-you-display-whats-happening-in-the-unit-test-as-it-runs/175340#175340 0 Answer by davidg for Should you display what's happening in the unit test as it runs? davidg 2008-10-06T17:39:43Z 2008-10-06T17:39:43Z <p>Well, you should only know when a test failed and why it failed. It's no use to know what's going on, unless, for example, you have a loop and you want to know exactly where in the loop the test died.</p> http://stackoverflow.com/questions/175116/are-there-shortcut-keys-for-resharpers-unit-test-runner/175196#175196 1 Answer by davidg for Are there shortcut keys for ReSharper's Unit Test Runner? davidg 2008-10-06T16:59:29Z 2008-10-06T16:59:29Z <p>You might want to check <a href="http://www.jetbrains.com/resharper/documentation/ReSharper30DefaultKeymap.pdf" rel="nofollow">this</a> short-cut cheatsheet.</p> <p>BTW, even if there's no default key, you can probably bind one by going to the menu Tools->Options, and then to the sub-category General->Keyboard, and typing ReSharper in the search line.</p> http://stackoverflow.com/questions/175044/django-development-ide/175175#175175 1 Answer by davidg for django development IDE davidg 2008-10-06T16:56:22Z 2008-10-06T16:56:22Z <p>I really like <a href="http://www.e-texteditor.com/" rel="nofollow">E Texteditor</a> as it's pretty much a "port" of Textmate to Windows. Obviously Django being based on Python the support for auto-completion is limited (there's nothing like intellisense that would require a dedicated IDE with knowledge of the intricacies of each library), but the use of snippets and "word-completion" helps a lot. Also, it has support for both Django Python files and the template files, and CSS, HTML, etc.</p> <p>I've been using E for a long time now, and I can tell you that it beats both PyDev and Komodo Edit hands down when it comes to working with Django. For other kinds of projects, PyDev and Komodo might be more adequate though.</p> http://stackoverflow.com/questions/174289/techniques-for-dynamic-algorithmic-graphics/174332#174332 8 Answer by davidg for Techniques for dynamic (algorithmic) graphics davidg 2008-10-06T13:41:14Z 2008-10-06T13:41:14Z <p>In a way, you are in pretty much the same situation game developers where at the time of the Tandys, Spectrums and early PCs. So, here's my recommendation:</p> <p>You should read Michael Abrash writings on computer graphics. They were written in a time where a floating point co-processor was an optional piece of hardware, and they describe a lot of the basic techniques (Bresenham lines, etc.) used in the old (supposedly 'bad') software-rendered days.</p> <p>You can read most of his "Black Book" <a href="http://www.byte.com/abrash/" rel="nofollow">here</a>.</p> <p>Additionaly, you can probably find a lot of the old BBS files that most people used back in the day to learn graphics programming <a href="http://www.textfiles.com/directory.html" rel="nofollow">here</a>. Just search for Graphics, Lines, and what not.</p> <p>Hope that helps!</p> <p><strong>Update:</strong> I also recall using <a href="http://tfpsly.free.fr/Docs/3dIca/3dica.htm" rel="nofollow">this</a> in my first attempts at drawing things on the screen. Can't tell how much time I spent trying to understand the maths behind it (well, to be fair I was like 15 at the time). Very good (and simple) introduction to 3D, and a very nice premier on transformations, polygon-fillers and interpolation.</p> http://stackoverflow.com/questions/166544/reuse-edit-control-as-command-window/166593#166593 3 Answer by davidg for Reuse Edit Control as Command Window davidg 2008-10-03T12:36:15Z 2008-10-03T12:50:33Z <p>I think you'd be better off creating a subclass of CEdit and limiting filtering key-presses. I suppose the hard part is not letting the user move the caret to the prompt area, but you can probably write some code to make sure the caret always get sent back to where it belongs (the input part).</p> <p>Anyway, if you really, really want to implement your own control (it's not that difficult after all) I recommend you read Jacob Navia's "technical documentation" on how he built the LCC compiler and environment. Actually, it seems the docs are not online anymore, but I'm sure you can get them through his e-mail (jacob@jacob.remcomp.fr).</p> <p><strong>Edit</strong>: I liked your previous example better. Keep it classy, LOL :)</p> http://stackoverflow.com/questions/166493/how-can-i-wrap-a-call-to-an-exe-with-arguments-with-another-exe/166510#166510 0 Answer by davidg for How can I wrap a call to an .exe (with arguments) with another .exe? davidg 2008-10-03T12:04:41Z 2008-10-03T12:04:41Z <p>You might try this: <a href="http://www.abyssmedia.com/quickbfc/" rel="nofollow">http://www.abyssmedia.com/quickbfc/</a></p> <p>If you want something really, really small, you'd probably need to make your own Pascal/C program. I suggest Pascal because there is a very <a href="http://www.freepascal.org/" rel="nofollow">nice free compiler</a> that produces really small .EXEs without the need to used a tweaked library (that would be the <em>only</em> C shortcoming in this case).</p> <p>Cheers.</p> http://stackoverflow.com/questions/164284/how-do-i-transfer-a-file-using-wininet-that-is-readable-by-a-php-script/164299#164299 0 Answer by davidg for How do I transfer a file using wininet that is readable by a php script? davidg 2008-10-02T20:04:06Z 2008-10-02T20:04:06Z <p><a href="http://msdn.microsoft.com/en-us/library/aa384322(VS.85).aspx#Posting_data_to_the_" rel="nofollow">Here</a>'s a general description of the things involved in that. Basically, you have to create an HTTP request to a web address, attach information to the request and then send it. The request must be a POST request in your case.</p> http://stackoverflow.com/questions/164022/getting-input-c/164089#164089 0 Answer by davidg for Getting Input C++ davidg 2008-10-02T19:22:29Z 2008-10-02T19:22:29Z <p>Can you please paste the code where you read the integers? Also, what compiler are you using, and on which platform?</p> http://stackoverflow.com/questions/163294/textarea-overflow-x-when-a-user-copy-pastes-into-it/163368#163368 0 Answer by davidg for Textarea overflow-x when a user copy-pastes into it? davidg 2008-10-02T16:41:43Z 2008-10-02T16:41:43Z <p>From the looks of it, it would seem that the text comes pre-wordwrapped from the editor. What editor are you using, and on which platform are you experiencing this behaviour?</p> http://stackoverflow.com/questions/163236/where-can-i-find-a-list-of-standard-http-header-values/163263#163263 7 Answer by davidg for Where can I find a List of Standard HTTP Header Values? davidg 2008-10-02T16:15:27Z 2008-10-02T16:15:27Z <p>Did you try the <a href="http://www.faqs.org/rfcs/rfc2616.html" rel="nofollow">RFC</a>? It has all that information.</p> <p>Actually, when searching for information on any protocol or standard, try to search for the RFC first.</p> <p>Cheers.</p> http://stackoverflow.com/questions/162064/adjusting-the-auto-complete-dropdown-width-on-a-textbox/162222#162222 0 Answer by davidg for Adjusting the auto-complete dropdown width on a textbox davidg 2008-10-02T13:20:50Z 2008-10-02T13:20:50Z <p>Hmmm, there's no direct way really. You'd probably have to resort to subclassing (in the Windows API sense) the TextBox to do that, and even then there'd be a lot of guessing to do.</p> http://stackoverflow.com/questions/162123/xmltextreader-in-net-1-1/162201#162201 1 Answer by davidg for XMLTextReader in .NET 1.1 davidg 2008-10-02T13:15:29Z 2008-10-02T13:15:29Z <p><a href="http://sourceforge.net/project/showfiles.php?group_id=95340" rel="nofollow">SAXExpat</a> used to be really good. Expat is <em>the</em> XML parser, almost a reference implementation. I remember using it to read some synchronization XML files sent over a TCP connection, sometimes really big files (around 50mb) without any kind of problem. And that was 3/4 years ago, in .NET 1.1 and really crappy computers.</p> http://stackoverflow.com/questions/161993/visual-studio-2008-make-ctrl-k-ctrl-n-next-bookmark-stay-within-the-same-file/162038#162038 9 Answer by davidg for Visual Studio 2008: make ctrl-k, ctrl-n (next bookmark) stay within the same file davidg 2008-10-02T12:37:33Z 2008-10-02T12:37:33Z <p>Actually, you have two other commands that by default are not assigned a shortcut:</p> <ul> <li>Previous Bookmark In Document</li> <li>Next Bookmark In Document</li> </ul> <p>You'll see them if you go to the Edit->Bookmarks menu. You can bind them to a shortcut if you go to Options->Preferences->Environment->Keyboard and look them up as Edit.PreviousBookmarkInDocument and Edit.NextBookmarkInDocument.</p> <p>Cheers!</p> http://stackoverflow.com/questions/160467/how-do-i-create-a-jet-odbc-link-to-a-sql-server-view-with-periods-in-the-field-na/160487#160487 1 Answer by davidg for How do I create a Jet ODBC link to a SQL Server view with periods in the field names? davidg 2008-10-02T01:30:59Z 2008-10-02T01:30:59Z <p>Just guessing here: did you try escaping the dot? Something like "[Seq\.Group]"?</p> http://stackoverflow.com/questions/160040/finding-the-time-taken-to-send-messages-with-wcf-net-tcp/160367#160367 2 Answer by davidg for Finding the time taken to send messages with WCF net.tcp davidg 2008-10-02T00:26:58Z 2008-10-02T00:26:58Z <p>Hmmm... that's a difficult one. The problem here is you can't even make sure both the client and the server timers are in sync.</p> <p>If what you want to do is send some out-of-band data, so that you don't need to modify your methods, you can use the method suggested <a href="http://microsoft.apress.com/asptodayarchive/73677/using-aspnet-soap-headers-in-web-services-for-orthogonal-interception-services-part-1" rel="nofollow">here</a>. I think it should be enough.</p> http://stackoverflow.com/questions/160077/how-do-you-decide-which-api-function-documentations-to-read-and-how-seriously/160361#160361 2 Answer by davidg for How do you decide which API function documentations to read and how seriously? davidg 2008-10-02T00:21:14Z 2008-10-02T00:21:14Z <p>Ideally you should read <em>all</em> of it, but we know that's a pain in the... you know. What I normally do on those cases (and I did that a lot while I worked as a freelancer) is weight some factors and depending on the result, I read the docs.</p> <p>Factors that tell me I shouldn't read the docs:</p> <ul> <li>What the function does is easy to guess from the name.</li> <li>It isn't relevant to the code I'm maintaining: for example, you are checking how some code deletes files, and you have some function that obviously does some UI update. You don't care about that for now.</li> <li>If debugging: the function didn't change the program state in a way meaningful to the task at hand. As before, you don't want to learn what SetOverlayIcon does, if you are debugging the deletion code because it's dying with a file system error.</li> <li>The API is just a special case of an API you already know and you can guess what the special case is, and what the special arguments (if any) do. For example, let's say you have WriteToFile(string filename) and WriteToFile(string filename, boolean overwrite).</li> </ul> <p>Of course, everything depends on the context, so even those rules have exceptions.</p> http://stackoverflow.com/questions/160106/how-to-implement-find-as-you-type-on-a-tcombobox-descendant/160310#160310 0 Answer by davidg for How to implement find as you type on a TComboBox descendant davidg 2008-10-02T00:05:48Z 2008-10-02T00:05:48Z <p>Depends, do you only want to implement the "search as you type" part, without displaying any feedback to the user (the way Firefox does it on long lists, for example), or do you want to show an small sub-control displaying the current search string?</p> http://stackoverflow.com/questions/160290/should-i-free-pointer-returned-by-getpwuid-in-linux/160303#160303 1 Answer by davidg for should I free pointer returned by getpwuid() in Linux? davidg 2008-10-02T00:03:33Z 2008-10-02T00:03:33Z <p>Actually it returns a pointer to an already existing structure, so you should <strong>not</strong> free it.</p> http://stackoverflow.com/questions/160214/what-does-a-listviewsubtemcollection-use-for-its-keys/160235#160235 0 Answer by davidg for What does a ListViewSubtemCollection use for its keys? davidg 2008-10-01T23:33:37Z 2008-10-01T23:33:37Z <p>Subitems are only ordered by column index unluckily. So you'd have to access them like:</p> <pre><code>protected override void OnItemDrag(ItemDragEventArgs e) { base.OnItemDrag(e); ListViewItem item = e.Item as ListViewItem; string val = item.SubItems[0].ToString(); } </code></pre> http://stackoverflow.com/questions/159039/wasabi-like-web-programming-language/159665#159665 0 Answer by davidg for Wasabi like web programming language davidg 2008-10-01T20:50:38Z 2008-10-01T20:50:38Z <p>As far as I know, Fog Creek had to develop Wasabi because there wasn't such a tool. There are a few toolkits trying to be portable, but none that compiled to ASP or PHP that I know of (besides Wasabi, that is).</p> http://stackoverflow.com/questions/159391/reportviewer-control-and-ajax-updatepanel/159542#159542 0 Answer by davidg for ReportViewer Control and Ajax UpdatePanel davidg 2008-10-01T20:26:13Z 2008-10-01T20:26:13Z <p>Never tried really, but I'm sure that control wouldn't work straight away. I'm pretty sure it needs to load some extra Javascript, because it adds so much complexity, so you might need to load those before updating the panel.</p> http://stackoverflow.com/questions/21449/types-of-endianness/21531#21531 Comment by davidg on Types of endianness davidg 2009-11-15T22:18:02Z 2009-11-15T22:18:02Z Yup, you are absolutely right, I was just feeling lazy, LOL. Thanks for pointing out though :) http://stackoverflow.com/questions/178734/what-do-you-consider-to-be-the-most-promising-open-source-project-in-the-long-ter Comment by davidg on What do you consider to be the most promising Open Source project in the long term? davidg 2008-10-07T14:37:21Z 2008-10-07T14:37:21Z You should tag this as &quot;subjective&quot; http://stackoverflow.com/questions/175116/are-there-shortcut-keys-for-resharpers-unit-test-runner/175196#175196 Comment by davidg on Are there shortcut keys for ReSharper's Unit Test Runner? davidg 2008-10-06T17:00:05Z 2008-10-06T17:00:05Z OK, Ben Scheirman pointed out exactly what options you are looking for. http://stackoverflow.com/questions/166493/how-can-i-wrap-a-call-to-an-exe-with-arguments-with-another-exe/166507#166507 Comment by davidg on How can I wrap a call to an .exe (with arguments) with another .exe? davidg 2008-10-03T12:05:36Z 2008-10-03T12:05:36Z Well, I don't think that requiring the full .NET framework to just load another program (which might not depend on it) is cool :P http://stackoverflow.com/questions/149491/pascal-casing-or-camel-casing-for-c-code/149539#149539 Comment by davidg on Pascal casing or Camel Casing for C# code? davidg 2008-10-01T20:56:34Z 2008-10-01T20:56:34Z Yup, didn't know about that tool. Thanks. http://stackoverflow.com/questions/150638/ruby-off-the-rails/151665#151665 Comment by davidg on Ruby off the rails davidg 2008-09-30T18:38:58Z 2008-09-30T18:38:58Z Yup, but the Python group had better Py! (lame joke, I know, I know...) http://stackoverflow.com/questions/151199/how-do-i-calculate-number-of-days-betwen-two-dates-using-python/151212#151212 Comment by davidg on How do I calculate number of days betwen two dates using Python? davidg 2008-09-29T23:42:54Z 2008-09-29T23:42:54Z LOL, someone posted almost <i>exactly</i> the same, but using date instead of datetime http://stackoverflow.com/questions/149491/pascal-casing-or-camel-casing-for-c-code/149619#149619 Comment by davidg on Pascal casing or Camel Casing for C# code? davidg 2008-09-29T17:14:43Z 2008-09-29T17:14:43Z Wow! Neat, didn't know that one.