User dbrien - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:55:32Z http://stackoverflow.com/feeds/user/12529 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1527450/can-i-handle-the-killing-of-my-windows-process-through-the-task-manager/1527499#1527499 0 Answer by dbrien for Can I handle the killing of my windows process through the Task Manager? dbrien 2009-10-06T19:12:25Z 2009-10-06T19:12:25Z <p>I found a similar question <a href="http://stackoverflow.com/questions/1331954/is-it-possible-to-kill-a-c-application-on-windows-xp-without-unwinding-the-call">here</a></p> http://stackoverflow.com/questions/1520769/mfc-get-folders/1520802#1520802 1 Answer by dbrien for MFC Get Folders dbrien 2009-10-05T15:32:07Z 2009-10-05T15:32:07Z <p>Look for FindFirstFile in the MFC documentation</p> http://stackoverflow.com/questions/1493310/how-can-you-force-a-floating-div-to-be-the-height-of-its-parent/1493384#1493384 0 Answer by dbrien for How can you force a floating div to be the height of its parent? dbrien 2009-09-29T15:42:32Z 2009-09-29T15:42:32Z <p>I think this question is asked a lot. I found <a href="http://stackoverflow.com/questions/1230354/how-to-get-a-div-to-resize-its-height-to-fit-container">this</a> on searching.</p> http://stackoverflow.com/questions/1493288/how-to-display-info-from-a-mysql-database-using-php/1493313#1493313 3 Answer by dbrien for How to display info from a MySQL database using PHP? dbrien 2009-09-29T15:28:43Z 2009-09-29T15:28:43Z <p>Assuming you have the mysql database extension available, you should start by looking the <a href="http://www.php.net/manual/en/book.mysql.php" rel="nofollow">documentation for PHP mysql commands</a>. There are a lot of code examples in there to get you started.</p> http://stackoverflow.com/questions/1467919/static-const-string-wont-get-initialized/1467961#1467961 2 Answer by dbrien for Static const string won't get initialized dbrien 2009-09-23T18:57:31Z 2009-09-23T19:02:15Z <p>Are you defining it as such?</p> <pre><code>class X { public: static string i; }; string X::i = "blah"; // definition outside class declaration </code></pre> <p>See: <a href="http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?topic=/com.ibm.xlcpp8a.doc/language/ref/cplr038.htm" rel="nofollow">Static data members (C++ only)</a></p> http://stackoverflow.com/questions/1467846/how-do-you-execute-sql-from-within-a-bash-script/1467880#1467880 1 Answer by dbrien for How do you execute SQL from within a bash script? dbrien 2009-09-23T18:41:40Z 2009-09-23T18:41:40Z <p>Why can't you just use something like a small Java program and pass in the arguments you need?</p> http://stackoverflow.com/questions/285442/css-cleaner/285470#285470 9 Answer by dbrien for CSS cleaner dbrien 2008-11-12T21:38:15Z 2008-11-12T21:38:15Z <p>Try the <a href="http://www.sitepoint.com/dustmeselectors/" rel="nofollow">Dust me Selectors</a> plug in for Firefox.</p> http://stackoverflow.com/questions/102720/css-organization-and-colours 4 css organization and colours dbrien 2008-09-19T15:19:25Z 2008-09-26T20:10:34Z <p>I just finished a medium sized web site and one thing I noticed about my css organization was that I have a lot of hard coded colour values throughout. This obviously isn't great for maintainability. Generally, when I design a site I pick 3-5 main colours for a theme. I end up setting some default values for paragraphs, links, etc... at the beginning of my main css, but some components will change the colour (like the legend tag for example) and require me to restyle with the colour I wanted. How do you avoid this? I was thinking of creating separate rules for each colour and just use those when I need to restyle.</p> <p>i.e.</p> <pre><code>.color1 { color: #3d444d; } </code></pre> http://stackoverflow.com/questions/133596/setting-radio-button-enabled-disabled-via-css/133617#133617 4 Answer by dbrien for setting Radio Button enabled/disabled via CSS dbrien 2008-09-25T14:19:22Z 2008-09-25T14:19:22Z <p>Disabled is a html attribute, not a css attribute.</p> <p>Why can't you just use some jQuery</p> <pre><code>$('#radiobuttonname').attr('disabled', 'true'); </code></pre> <p>or plain old javascript</p> <pre><code>document.getElementById(id).disabled = true; </code></pre> http://stackoverflow.com/questions/127638/prevent-mime-faking-on-php-uploads 0 prevent mime faking on php uploads dbrien 2008-09-24T14:51:52Z 2008-09-24T16:09:23Z <p>Is there a way to prevent someone from faking a mime type on a file upload and then running a php/exe/etc...</p> <p>I have to make the file upload directory writeable and executable so that the files can be stored, but this allows anyone to run a script after. One thing I can do is add random data to the file name so they can't guess the file name after (since they still can't read from the directory to get a listing).</p> <p>I'm using file upload with php for the first time and I'm trying to cover all of the security issues.</p> http://stackoverflow.com/questions/123401/using-jquery-to-find-the-next-table-row/123518#123518 4 Answer by dbrien for Using JQuery to find the next table row dbrien 2008-09-23T20:07:41Z 2008-09-23T20:36:56Z <p>You don't need the show and hide tags:</p> <pre><code>$(document).ready(function(){ $('.expand').click(function() { if( $(this).hasClass('hidden') ) $('img', this).attr("src", "plus.jpg"); else $('img', this).attr("src", "minus.jpg"); $(this).toggleClass('hidden'); $(this).parent().next().toggle(); }); }); </code></pre> <p>edit: Okay, I added the code for changing the image. That's just one way to do it. I added a class to the expand attribute as a tag when the row that follows is hidden and removed it when the row was shown.</p> http://stackoverflow.com/questions/122362/how-to-empty-flush-windows-read-disk-cache-in-c/122397#122397 0 Answer by dbrien for How to empty/flush Windows READ disk cache in C#? dbrien 2008-09-23T17:17:36Z 2008-09-23T17:17:36Z <p>I found <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3127219&amp;SiteID=1" rel="nofollow">this</a> article and it seems that this is a complicated program because you also have to flush other caches.</p> http://stackoverflow.com/questions/121981/mmorpg-vr-architecture/122037#122037 -1 Answer by dbrien for MMORPG / VR Architecture dbrien 2008-09-23T16:10:56Z 2008-09-23T16:10:56Z <p>I found <a href="http://portal.acm.org/citation.cfm?id=771339&amp;dl=ACM&amp;coll=portal&amp;CFID=11111111&amp;CFTOKEN=2222222" rel="nofollow">this journal article</a></p> <p>through <a href="http://www.gamedev.net/community/forums/topic.asp?topic_id=410490" rel="nofollow">http://www.gamedev.net/community/forums/topic.asp?topic_id=410490</a>. Gamedev.net has a forum on multiplayer and network programming. I suggest doing a search on that forum.</p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121928#121928 1 Answer by dbrien for What is the one programming skill you have always wanted to master but haven't had time? dbrien 2008-09-23T15:56:27Z 2008-09-23T15:56:27Z <p>I would like to fully understand the standard library in C++.</p> http://stackoverflow.com/questions/117346/c-timing-milliseconds-since-last-whole-second/117359#117359 0 Answer by dbrien for C++ timing, milliseconds since last whole second dbrien 2008-09-22T20:21:57Z 2008-09-22T20:21:57Z <p>Look into the QueryPerformanceCounter methods if this is for Windows.</p> http://stackoverflow.com/questions/117078/what-is-the-standard-format-for-documenting-functions-in-php/117109#117109 2 Answer by dbrien for What is the standard format for documenting functions in php? dbrien 2008-09-22T19:50:33Z 2008-09-22T19:50:33Z <p>I am not aware of a standard, but you can use <a href="http://www.phpdoc.org/" rel="nofollow">phpDocumentor</a> for auto-documentation.</p> http://stackoverflow.com/questions/116423/how-can-my-application-benefit-from-temporary-tables/116443#116443 1 Answer by dbrien for How can my application benefit from temporary tables? dbrien 2008-09-22T18:03:13Z 2008-09-22T18:03:13Z <p>I've used them in the past when I needed to create evaluated data. That was before the time of views and sub selects in MySQL though and I generally use those now where I would have needed a temporary table. The only time I might use them is if the evaluated data took a long time to create.</p> http://stackoverflow.com/questions/116292/what-is-the-best-ide-for-php/116330#116330 0 Answer by dbrien for What is the best IDE for PHP ? dbrien 2008-09-22T17:44:05Z 2008-09-22T17:44:05Z <p>Aptana supports this and I use it for all of my web development now.</p> http://stackoverflow.com/questions/116221/how-do-you-handle-browser-specific-js-and-css/116251#116251 0 Answer by dbrien for How do you handle browser specific .js and .css dbrien 2008-09-22T17:28:26Z 2008-09-22T17:28:26Z <p>I use the built in functions of jQuery for the actual detection:</p> <pre><code>jQuery.each(jQuery.browser, function(i, val) {}); </code></pre> <p>As for organization, that would depend on your application. I think putting this in an initialization code and then using the detection where you need it would be best. I still have issues where I have to detect Explorer on occasion. For example, when using jQuery, I have found that the parent() and next() functions will sometimes have different meanings in Explorer compared to Firefox.</p> http://stackoverflow.com/questions/116121/do-you-keep-your-project-files-under-version-control/116130#116130 0 Answer by dbrien for Do you keep your project files under version control? dbrien 2008-09-22T17:06:31Z 2008-09-22T17:06:31Z <p>It seems like these project files can change over time as you work on a project so yes, I place them under version control.</p> http://stackoverflow.com/questions/116050/location-of-my-pictures/116057#116057 2 Answer by dbrien for Location of My Pictures dbrien 2008-09-22T16:52:43Z 2008-09-22T16:52:43Z <p>Environment.GetFolderPath(Environment.SpecialFolder.MyPictures);</p> http://stackoverflow.com/questions/115818/which-format-for-small-website-images-gif-or-png/115828#115828 -5 Answer by dbrien for Which format for small website images? GIF or PNG? dbrien 2008-09-22T16:16:49Z 2008-09-22T16:16:49Z <p>I use jpg for all non-transparent images. You can control the compression, which I like. I found <a href="http://www.wfu.edu/~matthews/misc/jpg_vs_gif/JpgVsGif.html" rel="nofollow">this</a> web site that compares the two. jpg is smaller and looks better.</p> http://stackoverflow.com/questions/104230/how-do-i-query-multiple-sql-tables-for-a-specific-key-value-pair/104278#104278 0 Answer by dbrien for how do I query multiple SQL tables for a specific key-value pair? dbrien 2008-09-19T18:22:23Z 2008-09-19T18:43:43Z <p>I was going to suggest the same think as borjab. The only problem with that is that you will have to update all of these queries if you add another table. The only other option I see is a stored procedure.</p> <p>I did think of another option here, or at least an easier way to present this. You can also use a view to these multiple tables to make them appear as one, and then your query would look cleaner, be easier to understand and you wouldn't have to rewrite a long union query when you wanted to do other queries on these multiple tables.</p> http://stackoverflow.com/questions/102720/css-organization-and-colours/104205#104205 0 Answer by dbrien for css organization and colours dbrien 2008-09-19T18:15:00Z 2008-09-19T18:15:00Z <p>I like the idea of separating the colour information into a separate file, no matter how I do it. I would accept multiple answers here if I could, because I like Josh Millard's as well. I like the idea of having separate colour rules though because a particular tag might have different colours depending on where it occurs. Maybe a combination of both of these techniques would be good:</p> <pre><code>h1, p, code { color: #ff0000; } </code></pre> <p>and then also have</p> <pre><code>.color1 { color: #ff0000; } </code></pre> <p>for when you need to restyle.</p> http://stackoverflow.com/questions/79541/forms-and-jquery 2 forms and jquery dbrien 2008-09-17T03:06:19Z 2008-09-17T05:21:30Z <p>I'm creating a simple form for a site I manage. I use JQuery for my javascript. I noticed a large amount of plugins for JQuery and forms. Does anybody have any favorites that they find especially useful? In particular, plugins to help with validation would be the most useful.</p> http://stackoverflow.com/questions/53132/mouse-for-programmer/79580#79580 1 Answer by dbrien for Mouse for programmer dbrien 2008-09-17T03:14:24Z 2008-09-17T03:14:24Z <p>I use the Habu Razer by Microsoft:</p> <p><img src="http://www.microsoft.com/hardware/gaming/images/signature/gm_po_habu_detail1.jpg" alt="alt text" /></p> <p>I like the high resolution and controls for changing the speed.</p> http://stackoverflow.com/questions/79476/whats-the-correct-term-for-number-of-std-deviations-away-from-a-mean/79484#79484 1 Answer by dbrien for What's the correct term for "number of std deviations" away from a mean dbrien 2008-09-17T02:58:13Z 2008-09-17T02:58:13Z <p>That is normalizing your values. You could just refer to it as the normalized value. Maybe norm_val would be more appropriate.</p> http://stackoverflow.com/questions/79210/best-c-ide-for-nix/79354#79354 0 Answer by dbrien for Best C++ IDE for *nix dbrien 2008-09-17T02:38:03Z 2008-09-17T02:38:03Z <p>I asked this question before to experience Linux users and they always say Vim and automake. I use Vim as my default editor in Linux and after a while it becomes intuitive. I learned it by working through some small examples while learning C++ so I could learn both at the same time.</p> http://stackoverflow.com/questions/73086/three-column-web-design-with-variable-sides 1 three column web design with variable sides dbrien 2008-09-16T14:42:29Z 2008-09-16T22:08:48Z <p>I've been trying to come up with a way to create a 3 column web design where the center column has a constant width and is always centered. The columns to the left and right are variable. This is trivial in tables, but not correct semantically. I haven't been able to get this working properly in all current browsers. Any tips on this?</p> http://stackoverflow.com/questions/75891/algorithm-for-finding-similar-images/75990#75990 0 Answer by dbrien for Algorithm for finding similar images dbrien 2008-09-16T19:26:26Z 2008-09-16T19:26:26Z <p>There are some good answers in the other thread on this, but I wonder if something involving a spectral analysis would work? I.e., break the image down to it's phase and amplitude information and compare those. This may avoid some of the issues with cropping, transformation and intensity differences. Anyway, that's just me speculating since this seems like an interesting problem. If you searched <a href="http://scholar.google.com" rel="nofollow">http://scholar.google.com</a> I'm sure you could come up with several papers on this.</p> http://stackoverflow.com/questions/1527730/where-to-put-javascript-configuration-functions Comment by dbrien on Where to put JavaScript configuration functions? dbrien 2009-10-06T20:00:58Z 2009-10-06T20:00:58Z Isn't this a maintainability question? Duplicating the code in different spots doesn't sound like a great idea. http://stackoverflow.com/questions/1527719/php-denying-use-of-short-hand Comment by dbrien on PHP denying use of short hand "<?" dbrien 2009-10-06T19:54:48Z 2009-10-06T19:54:48Z <a href="http://stackoverflow.com/questions/880150/why-would-shorthand-php-opening-statements-not-be-working" rel="nofollow" title="why would shorthand php opening statements not be working">stackoverflow.com/questions/880150/&hellip;</a> http://stackoverflow.com/questions/1527450/can-i-handle-the-killing-of-my-windows-process-through-the-task-manager/1527499#1527499 Comment by dbrien on Can I handle the killing of my windows process through the Task Manager? dbrien 2009-10-06T19:23:41Z 2009-10-06T19:23:41Z The answers to that question address some of the questions he's asking here actually. http://stackoverflow.com/questions/1520825/vertical-align-image/1520841#1520841 Comment by dbrien on Vertical-align image dbrien 2009-10-05T15:42:26Z 2009-10-05T15:42:26Z Will this not just keep in the top left? http://stackoverflow.com/questions/472048/jquery-how-to-select-every-cell-in-a-table-except-the-last-in-each-row/472183#472183 Comment by dbrien on jQuery: how to select every cell in a table except the last in each row? dbrien 2009-01-23T07:28:29Z 2009-01-23T07:28:29Z From the documentation: While :last matches only a single element, this matches more then one: One for each parent. http://stackoverflow.com/questions/127638/prevent-mime-faking-on-php-uploads/127658#127658 Comment by dbrien on prevent mime faking on php uploads dbrien 2008-09-24T14:57:24Z 2008-09-24T14:57:24Z So as long as I don't allow anything with .php and obfuscate the file name I should be okay. http://stackoverflow.com/questions/123401/using-jquery-to-find-the-next-table-row/123518#123518 Comment by dbrien on Using JQuery to find the next table row dbrien 2008-09-23T20:37:07Z 2008-09-23T20:37:07Z Thanks, I made those changes. http://stackoverflow.com/questions/115818/which-format-for-small-website-images-gif-or-png/115828#115828 Comment by dbrien on Which format for small website images? GIF or PNG? dbrien 2008-09-22T16:59:18Z 2008-09-22T16:59:18Z Oops. Thanks for pointing this out. http://stackoverflow.com/questions/75891/algorithm-for-finding-similar-images/75990#75990 Comment by dbrien on Algorithm for finding similar images dbrien 2008-09-16T20:59:52Z 2008-09-16T20:59:52Z Yes, a Fourier Transform is what I meant. http://stackoverflow.com/questions/76724/get-list-of-records-with-multiple-entries-on-the-same-date/76783#76783 Comment by dbrien on Get list of records with multiple entries on the same date dbrien 2008-09-16T20:46:59Z 2008-09-16T20:46:59Z This is returning all records that have a date that is shared by other records. I think he wants only those records that have multiple entries with the same date. http://stackoverflow.com/questions/73086/three-column-web-design-with-variable-sides/73094#73094 Comment by dbrien on three column web design with variable sides dbrien 2008-09-16T15:13:40Z 2008-09-16T15:13:40Z Thanks, that seems to do it. Now I'm going to figure out why you need so many nested divs. http://stackoverflow.com/questions/73086/three-column-web-design-with-variable-sides/73140#73140 Comment by dbrien on three column web design with variable sides dbrien 2008-09-16T14:57:07Z 2008-09-16T14:57:07Z I guess this would depend on whether or not you want your site to display the same when people turn javascript off. That's another question though.