User MaxVT - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:35:57Zhttp://stackoverflow.com/feeds/user/19530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1820069/public-operator-new-private-operator-delete-getting-c2248-can-not-access-priva10Public operator new, private operator delete: getting C2248 "can not access private member" when using newMaxVT2009-11-30T14:12:25Z2009-11-30T14:49:03Z
<p>A class has overloaded operators <code>new</code> and <code>delete</code>. <code>new</code> is public, <code>delete</code> is private.</p>
<p>When constructing an instance of this class, I get the following error:</p>
<pre><code>pFoo = new Foo(bar)
</code></pre>
<p><strong>example.cpp(1): error C2248: 'Foo:operator delete': cannot access private member declared in class 'Foo'</strong></p>
<p>But there's no call to <code>delete</code> here, so what is going on in the twisted mind of the compiler? :)</p>
<ol>
<li>What is the reason for the error? </li>
<li>Is it possible to resolve the problem without resorting to a member <code>CreateInstance</code> function?</li>
</ol>
http://stackoverflow.com/questions/1803701/cygwin-tab-completion/1803716#18037160Answer by MaxVT for cygwin tab completionMaxVT2009-11-26T13:39:12Z2009-11-26T13:39:12Z<p>Cygwin is just an environment; the program you're interacting with is called the shell. There are many shells - bash, zsh, and others.</p>
<p>For bash, I've found <a href="http://hem.bredband.net/richardc/Cygwin.html" rel="nofollow">this set of instructions</a> to modify your .inputrc file.</p>
http://stackoverflow.com/questions/1796068/list-dates-in-months-from-database/1796269#17962692Answer by MaxVT for List dates in months from databaseMaxVT2009-11-25T11:15:44Z2009-11-25T11:15:44Z<p>Something along the lines of this, perhaps?</p>
<pre><code>SELECT * FROM table GROUP BY MONTH(dateColumn)
SELECT * FROM table WHERE MONTH(dateColumn) = 9
</code></pre>
http://stackoverflow.com/questions/1796025/re-utf-8-php-and-xml-mysql/1796250#17962501Answer by MaxVT for re: UTF-8, PHP and XML MysqlMaxVT2009-11-25T11:12:37Z2009-11-25T11:12:37Z<ol>
<li><p>Vim supports UTF-8 <a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html" rel="nofollow">from version 6.0</a>. Your system is likely not using UTF-8 by default - you're likely seeing UTF-8 text displayed in ASCII (or another 8-bit fixed encoding).</p></li>
<li><p>It should. Set the encoding on the file to UTF-8 when you serve it.</p></li>
<li><p>Any file writing function would accept this - UTF-8 is just a sequence of bytes.</p></li>
</ol>
http://stackoverflow.com/questions/1796100/what-is-faster-many-ifs-or-else-if/1796190#17961900Answer by MaxVT for what is faster many ifs or else ifMaxVT2009-11-25T11:01:58Z2009-11-25T11:01:58Z<p>In general, "else if" style can be faster because in the series of ifs, every condition is checked one after the other; in an "else if" chain, once one condition is matched, the rest are bypassed.</p>
<p>The fastest would be a table dispatch, which is what a switch statement gets optimized into when there are enough cases in it (if there are few cases in a switch, it gets translated into a series of if-else checks in the resulting machine code).</p>
http://stackoverflow.com/questions/1796114/what-is-the-current-scheme-for-naming-variables-and-functions/1796159#17961595Answer by MaxVT for What is the current scheme for naming variables and functions?MaxVT2009-11-25T10:55:47Z2009-11-25T10:55:47Z<p>Use your company's coding guidelines; challenge them if they are outdated (i.e. keep a list of changes at the top of the file despite using version control).</p>
<p>If you're the first programmer or doing it for yourself, decide on a set of coding guidelines that works for you, document it, and stick with it.</p>
http://stackoverflow.com/questions/1788241/how-to-create-pathauto-same-stackoverflow-com/1789748#17897480Answer by MaxVT for How to create pathauto same stackoverflow.comMaxVT2009-11-24T12:21:44Z2009-11-24T12:21:44Z<p>By the way, StackOverflow doesn't use Drupal - it's based on ASP.NET MVC framework.</p>
http://stackoverflow.com/questions/1714172/adobe-pdf-links-problem-in-ie8/1763661#17636611Answer by MaxVT for Adobe PDF Links Problem in IE8MaxVT2009-11-19T14:27:59Z2009-11-19T14:27:59Z<p><a href="http://help.adobe.com/de%5FDE/Acrobat/9.0/Standard/WS981E9B4B-F8E4-4511-ADE4-2D7380472979.html" rel="nofollow">http://help.adobe.com/de%5FDE/Acrobat/9.0/Standard/WS981E9B4B-F8E4-4511-ADE4-2D7380472979.html</a></p>
<p>It looks like an Acrobat warning, not an Internet Explorer one... Do other browsers on your system open this document in Acrobat as well?</p>
http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo2Does a destructor always get called for a delete operator, even when it is overloaded?MaxVT2009-11-16T15:01:16Z2009-11-17T17:14:10Z
<p>I'm porting a bit of an old code from C to C++. The old code uses object-like semantics, and at one point separates object destruction from freeing the now-unused memory, with <em>stuff</em> happening in between:</p>
<pre><code>Object_Destructor(Object *me) { free(me->member1), free(me->member2) }
ObjectManager_FreeObject(ObjectManager *me, Object *obj) { free(obj) }
</code></pre>
<p>Is the above functionality possible in C++ using the standard destructor (<code>~Object</code>) and a subsequent call to <code>delete obj</code>? Or, as I fear, doing that would call the destructor twice?</p>
<p>In the particular case, the <code>operator delete</code> of <code>Object</code> is overridden as well. Is the definition I've read elsewhere ("when operator delete is used, and the object has a destructor, the destructor is always called) correct in the overridden operator case?</p>
http://stackoverflow.com/questions/1668731/software-project-time-estimation/1668831#16688311Answer by MaxVT for Software Project - Time EstimationMaxVT2009-11-03T17:15:58Z2009-11-03T17:15:58Z<p>There is no "latest and best" technique; if you can, use several different methods and compare.</p>
<p>As a primer, I suggest to you chapter 28.3 of "Code Complete", 2nd edition - "Estimating a construction schedule".</p>
<p>The major techniques of estimation listed are:</p>
<ul>
<li>Algorithmic approaches (Cocomo, Boehm's model etc)</li>
<li>Use outside experts</li>
<li>Have a project walkthrough meeting </li>
<li>Estimate pieces of the project and add the estimates</li>
<li>Have people estimate their tasks and add together</li>
<li>Refer to your previous projects</li>
</ul>
<p>One of the most important tips that come out from agile methods is <em>estimating at low level of detail</em>. When the tasks are a few hours long, you can accurately estimate the job by adding the small, clear tasks together. When you have a single estimate of "6 to 8 weeks" for the entire project...</p>
<p>well, we know what happens then :)</p>
http://stackoverflow.com/questions/1630871/what-is-input-typeimage-typically-used-for/1630902#16309020Answer by MaxVT for What is <input type="image" /> typically used for?MaxVT2009-10-27T13:45:25Z2009-10-27T13:45:25Z<p>Those are the coordinates that you clicked on an image, a property of the "image" type of input control. You can ignore those if you don't need them.</p>
http://stackoverflow.com/questions/1630787/suggestions-for-making-pixel-perfect-css-layouts/1630829#16308291Answer by MaxVT for Suggestions for making pixel-perfect CSS layouts?MaxVT2009-10-27T13:34:24Z2009-10-27T13:34:24Z<p>First, abandon pixels. What you're looking for is a print stylesheet, with everything specified using physical units (cm/inches), font size in pt, etc. What is displayed on the screen, in what font size, and whether it is pixel-perfect or not doesn't seem relevant to your requirement of <em>producing a scannable copy</em>.</p>
<p>The question is now, is IE6 support for physical units and print stylesheets complete enough for that? Given my experience with making print stylesheets for clients, where IE would simply crash during the print process if you looked at it wrong, I'd say not too likely -- not with the complexity of the forms you're dealing with.</p>
http://stackoverflow.com/questions/1607947/practicality-of-compiling-another-language-to-javascript/1608037#16080370Answer by MaxVT for Practicality of compiling another language to Javascript?MaxVT2009-10-22T15:29:25Z2009-10-22T15:29:25Z<p><a href="http://code.google.com/webtoolkit/" rel="nofollow">Google Web Toolkit</a> does it (Java to Javascript compiling), and GWT is used widely by Google (duh) and many others, so it definitely is practical.</p>
<p>Since the code is autogenerated, you <a href="http://code.google.com/webtoolkit/tutorials/1.6/debug.html" rel="nofollow">debug problems in Java</a> - assumption that the problem is in your code, and not in the compiler code, is true in 99% of all cases.</p>
http://stackoverflow.com/questions/1605600/internet-explorer-problem/1605660#16056601Answer by MaxVT for internet explorer problemMaxVT2009-10-22T08:03:43Z2009-10-22T08:03:43Z<pre><code>Nome modulo con errori: fsaddin-0.78.dll_unloaded
</code></pre>
<p>I would try and locate / remove the plugin that contains this file. Maybe move or rename this .dll to see what happens.</p>
http://stackoverflow.com/questions/1564653/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-php/1564744#15647440Answer by MaxVT for How do you get a directory listing sorted by creation date in PHP?MaxVT2009-10-14T07:21:35Z2009-10-14T07:21:35Z<p>Get results you need into an array and sort it... I'm not aware of a scandir option that can do this directly.</p>
http://stackoverflow.com/questions/1556921/google-map-api-v3-set-bounds-and-and-center/1558684#15586840Answer by MaxVT for Google Map API v3 - set bounds and and centerMaxVT2009-10-13T07:27:51Z2009-10-13T07:27:51Z<p><a href="http://www.soulcast.com/post/show/65110/google-maps-api---dynamically-selecting-zoom-and-center-point" rel="nofollow">Here's</a> a solution by a guy called Jay. It uses the <code>GLatLngBounds</code> object and <code>map.getBoundsZoomLevel</code>.</p>
<pre><code> var bounds = new GLatLngBounds();
map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(0,0),0);
marker = new GMarker(new GLatLng(34.04818, -118.25321));
map.addOverlay(marker);
bounds.extend(marker.getPoint());
marker = new GMarker(new GLatLng(34.05818, -118.25261));
map.addOverlay(marker);
bounds.extend(marker.getPoint());
marker = new GMarker(new GLatLng(34.04898, -118.25421));
map.addOverlay(marker);
bounds.extend(marker.getPoint());
map.setZoom(map.getBoundsZoomLevel(bounds));
map.setCenter(bounds.getCenter());
</code></pre>
http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1011285#1011285353Answer by MaxVT for What are common UI misconceptions and annoyances?MaxVT2009-06-18T07:35:27Z2009-09-27T11:32:14Z<p><strong>Splash screens</strong></p>
<p>Every application, and especially a background service such as a backup application or antivirus software, must display a splash screen that can not be turned off in settings.</p>
http://stackoverflow.com/questions/1417896/if-i-have-a-full-unit-test-suite-for-an-application-must-i-still-apply-the-open/1417929#14179290Answer by MaxVT for If I have a full unit test suite for an application, must I still apply the Open/Closed Principle (OCP)?MaxVT2009-09-13T14:57:34Z2009-09-13T14:57:34Z<p>Unit tests help in upholding the open/closed principle: the necessary changes (refactoring of bad code) are validated by a unit test suite to check that no externally visible behavior changes have occurred.</p>
http://stackoverflow.com/questions/1392871/imagemagick-are-fonts-platform-independent/1392916#13929162Answer by MaxVT for ImageMagick: are fonts platform independentMaxVT2009-09-08T09:17:59Z2009-09-08T09:17:59Z<p>The fonts that are available on a particular system are system-dependent (for example, on Windows you're likely to have many .ttf (TrueType) and .otf (Open TrueType) fonts; on Mac, you're likely to also have PostScript fonts; and on Linux, you'll have X11 fonts).</p>
<p>But some types of fonts can be copied from system to system and will be supported - read on...</p>
<p>You can list all the fonts currently available to Imagemagick with <code>-list font</code> option (for versions prior to 6.3.6, use 'type' instead of 'font').</p>
<p>Different font types have varying levels of support in operating systems - even if the file itself is not OS-specific, the OS must have support for rendering the font. TTF and OTF are reasonably universally supported now; PostScript (as far as I know) require special tools for Windows and not all applications can use them; and X11 fonts' support is limited to various flavors of Unix.</p>
<p>Even if a font is supported, the way to render it can differ between operating systems and even between different libraries. When Safari 3 for Windows came out, the difference in antialiased rendering between Windows' ClearType and Apple's method was very visible.</p>
http://stackoverflow.com/questions/1373478/has-crashing-or-fast-tracking-a-project-schedule-ever-worked/1373556#13735562Answer by MaxVT for Has Crashing or Fast-Tracking a project schedule ever worked?MaxVT2009-09-03T13:58:20Z2009-09-03T13:58:20Z<p>It can work. But there's a price to be paid: lower quality (more bugs, less testing) and turnover of burned-out programmers.</p>
<p>And in many cases, a fast-tracked project will both fail to deliver on time and will still pay the full negative price, for the reasons stated in <em>Mythical man-month</em>.</p>
http://stackoverflow.com/questions/1366277/c-confusing-declaration-semantics/1366296#13662967Answer by MaxVT for C++: Confusing declaration semanticsMaxVT2009-09-02T07:37:12Z2009-09-02T07:37:12Z<p>First, in real world you should use neither because it is confusing, and even a few seconds for understanding this fine point is too much waste.</p>
<p>Scrap the rest of my answer - Abhay already got it right, and in far more detail :)</p>
http://stackoverflow.com/questions/1353860/using-doxygen-with-php-in-ubuntu/1356114#13561142Answer by MaxVT for Using Doxygen with PHP in UbuntuMaxVT2009-08-31T06:42:33Z2009-08-31T06:42:33Z<p>There isn't a complete answer I could find either, but the state of PHP support is probably gradually improving. Here are some issues I've found, some of which may already be solved:</p>
<ul>
<li><a href="http://www.nabble.com/Support-for-PHP-namespaces-td19508377.html" rel="nofollow">lack of namespace support</a></li>
<li><a href="http://www.nabble.com/PHP-and-arbitrary-class-properties-td24080652.html#a24080652" rel="nofollow">issues with magic methods</a></li>
<li><a href="http://www.nabble.com/Two-PHP-related-questions%3A-using-%40var-and-handling-varargs-td14221842.html#a14221842" rel="nofollow">problems documenting functions with variable number of arguments</a></li>
</ul>
http://stackoverflow.com/questions/1353688/what-is-web-services-in-simple-terms/1353697#13536970Answer by MaxVT for What is Web services in simple terms MaxVT2009-08-30T11:40:04Z2009-08-30T11:40:04Z<p>Duplicate: <a href="http://stackoverflow.com/questions/226108/what-is-a-web-service-in-plain-english">http://stackoverflow.com/questions/226108/what-is-a-web-service-in-plain-english</a></p>
<p>REST and SOAP duplicate: <a href="http://stackoverflow.com/questions/209905/rest-and-soap">http://stackoverflow.com/questions/209905/rest-and-soap</a></p>
http://stackoverflow.com/questions/1353209/how-to-increase-decrease-an-unsigned-char/1353216#13532160Answer by MaxVT for How to increase/decrease an Unsigned Char?MaxVT2009-08-30T06:16:36Z2009-08-30T06:16:36Z<p>Hmm... What's <code>rawdata</code>? Maybe it's a <code>const</code> type which you can not modify?</p>
http://stackoverflow.com/questions/1328567/php-regular-expression/1328777#13287773Answer by MaxVT for PHP Regular expressionMaxVT2009-08-25T14:46:21Z2009-08-25T14:46:21Z<p>The problem is here: \|(.+)</p>
<p>Regular expressions, by default, match as many characters as possible. Since . is any character, other instances of | are happily matched too, which is not what you would like.</p>
<p>To prevent this, you should exclude | from the expression, saying "match anything except |", resulting in \|([^\|]+).</p>
http://stackoverflow.com/questions/1322578/win32-api-for-getting-the-languagelocalization-info-of-the-os/1322772#13227724Answer by MaxVT for Win32 API for getting the language(localization info) of the OS??MaxVT2009-08-24T14:34:05Z2009-08-24T14:34:05Z<p>If you're asking about "Which language the OS menus and dialogs are dispalyed in" (i.e. which MUI - Multilingual User Interface kit - is installed), use the following:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/goglobal/bb688164.aspx#E3B" rel="nofollow">GetSystemDefaultUILanguage</a> to get the original language of the system,</li>
<li><a href="http://GetUserDefaultUILanguage" rel="nofollow">GetUserDefaultUILanguage</a> to get the current user's selection,</li>
<li><a href="http://EnumUILanguages" rel="nofollow">EnumUILanguages</a> to see which languages are available.</li>
</ul>
<p>More info: </p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/goglobal/bb688164.aspx" rel="nofollow">Windows 2000/XP language specific APIs</a></li>
<li><a href="http://msdn.microsoft.com/en-us/goglobal/bb688178.aspx" rel="nofollow">FAQ Windows 2000/XP/2003 MUI</a></li>
<li>Some <a href="http://www.microsoft.com/globaldev/reference/win2k/setup/concepts.mspx" rel="nofollow">concepts of multi-language support in Windows</a> (language groups, locales, MUIs)</li>
</ul>
http://stackoverflow.com/questions/1322661/parse-family-names-into-people-last-name-with-regex/1322693#13226930Answer by MaxVT for Parse 'family' names into people + last name with regexMaxVT2009-08-24T14:16:10Z2009-08-24T14:23:32Z<p>Assuming a first name can not be two words with a space (otherwise Peter Paul Van der Winkel is not automatically parsable), then the following set of rules applies:</p>
<ul>
<li>(first name), then any number of (, first name) or (& first name)</li>
<li><p>Everything left is the last name.</p>
<pre><code>^([-\w]+)(?:(?:\s?[,|&]\s)([-\w]+)\s?)*(.*)
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1320531/optimize-a-web-page-for-palm-pre/1320603#13206030Answer by MaxVT for Optimize a web page for Palm PreMaxVT2009-08-24T05:23:55Z2009-08-24T05:23:55Z<p>Posting a URL of a problem page would be a big help here.</p>
<p>In general, to show nicely on smartphones, the design of the page has to be "fluid" (taking 100% of the width in percent - not specified in pixels) to use the most space in differing screen resolutions. The minimal width supported by the design should be about 300 pixels, to fit without zooming on 320x480 screens.</p>
http://stackoverflow.com/questions/1318367/best-way-to-input-mailing-property-address/1318388#13183881Answer by MaxVT for Best way to input mailing/property address?MaxVT2009-08-23T11:51:24Z2009-08-23T11:51:24Z<p>I would choose a single multi-line input field. Addresses in different countries are formatted differently and have different components: for example, there's no State in many countries (expressed as N/A). The ZIP code may be 5 or 9 digits, or can be 2 groups of 3 alphanumerics, etc., so taking that into account can be complex. </p>
<p>But everyone can enter their address in a natural form given a multiline textbox.</p>
http://stackoverflow.com/questions/1311368/which-is-better-on-performance-double-quoted-strings-with-variables-or-single-qu/1311392#13113920Answer by MaxVT for Which is better on performance: double quoted strings with variables or single quoted strings with concatenations?MaxVT2009-08-21T11:20:15Z2009-08-21T11:20:15Z<p>Without testing (which is the only proper way to resolve such issues) I'd say single quoted strings with concatenation, because the strings don't have to be parsed. But it's very implementation-dependent.</p>
<p>And double-quoted strings have less visual clutter and cruft. So I'd side with Jonathan in saying that the performance difference is likely not that significant that you should be worried about it; rather, go with the way that is easier to maintain and consistent within your project.</p>
http://stackoverflow.com/questions/615355/is-there-any-reason-to-check-for-a-null-pointer-before-deleting/615410#615410Comment by MaxVT on Is there any reason to check for a NULL pointer before deleting ?MaxVT2009-12-16T12:06:06Z2009-12-16T12:06:06ZShort and wrong. See other upvoted answers for details.http://stackoverflow.com/questions/1193309/common-cms-roles-and-access-levels/1193731#1193731Comment by MaxVT on Common CMS roles and access levelsMaxVT2009-12-14T07:31:28Z2009-12-14T07:31:28ZJon Skeet? ;) .http://stackoverflow.com/questions/1011231/html-div-height-problem/1011240#1011240Comment by MaxVT on HTML Div height problemMaxVT2009-11-30T13:57:00Z2009-11-30T13:57:00ZAaron: I still have to support IE6, because that's what some clients have, and can not upgrade. We'll enter 2010 in a month, yes. <i>sigh</i>http://stackoverflow.com/questions/1803701/cygwin-tab-completion/1803716#1803716Comment by MaxVT on cygwin tab completionMaxVT2009-11-27T20:47:28Z2009-11-27T20:47:28ZHi Michelle, you should create an empty file and add commands to it as instructed. When there is no such file in your home directory, default settings are used. You will find that this is a common pattern in UNIX -- using hidden (starting with .) configuration files placed in your home dir.http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo/1742905#1742905Comment by MaxVT on Does a destructor always get called for a delete operator, even when it is overloaded?MaxVT2009-11-17T07:37:14Z2009-11-17T07:37:14ZThanks for the explanation.http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo/1742732#1742732Comment by MaxVT on Does a destructor always get called for a delete operator, even when it is overloaded?MaxVT2009-11-16T15:10:04Z2009-11-16T15:10:04ZThank you, but it isn't what I asked. Can the functionality seen in the C code (a destructor being separate from memory deletion) be implemented in C++ using a C++ destructor and operator delete (normal or overloaded)? Or the operator delete is always coupled with a call to the destructor?http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo/1742736#1742736Comment by MaxVT on Does a destructor always get called for a delete operator, even when it is overloaded?MaxVT2009-11-16T15:06:44Z2009-11-16T15:06:44ZTry reading the question before answering, please. The delete operator is overloaded, and a default destructor is used.http://stackoverflow.com/questions/1740680/website-to-come-first-on-search-enginesComment by MaxVT on website to come first on search enginesMaxVT2009-11-16T07:49:37Z2009-11-16T07:49:37ZArguably, creating link farms and generating random keyword-including articles is programming-related... :)http://stackoverflow.com/questions/1630764/is-there-a-way-to-fake-a-dual-second-monitorComment by MaxVT on Is there a way to fake a dual (second) monitorMaxVT2009-10-27T13:42:09Z2009-10-27T13:42:09ZActually it could be useful for programmers, exactly as in this use case. ("Programmers that still have only one monitor? Yeah, right...")http://stackoverflow.com/questions/1630412/is-using-underscore-suffix-for-members-beneficial/1630772#1630772Comment by MaxVT on Is using underscore suffix for members beneficial?MaxVT2009-10-27T13:39:23Z2009-10-27T13:39:23ZThe difference between m_value and value_ is a single keystroke... Does this really add up to enough time savings to wage battles over it? :-)http://stackoverflow.com/questions/1417848/create-an-application-that-will-expire-after-a-trial-period/1417872#1417872Comment by MaxVT on Create an application that will expire after a trial period.MaxVT2009-09-13T15:00:18Z2009-09-13T15:00:18Z"Just after a month of using it, a save/load already takes 5 minutes? And they want money for <b>that</b>?" ;-)http://stackoverflow.com/questions/1392751/webservice-development/1392761#1392761Comment by MaxVT on Webservice developmentMaxVT2009-09-08T09:27:03Z2009-09-08T09:27:03ZIt is simple, and therefore used far more widely on the Internet. The enterprise solutions usually go with more complex ways of achieving same results :)http://stackoverflow.com/questions/1392820/why-use-i-instead-of-i-in-cases-where-the-value-is-not-used-anywhere-else-in/1392850#1392850Comment by MaxVT on Why use ++i instead of i++ in cases where the value is not used anywhere else in the statement?MaxVT2009-09-08T09:23:20Z2009-09-08T09:23:20ZBecause C++ is standard, but who has heard of ++C?http://stackoverflow.com/questions/613233/is-it-secure-to-store-passwords-in-web-application-source-code/619837#619837Comment by MaxVT on Is It Secure To Store Passwords In Web Application Source Code?MaxVT2009-09-05T10:42:59Z2009-09-05T10:42:59ZIf you have access to the source code, you can just print out the password from the array, or put it into a file, or e-mail it once the code is put into production.http://stackoverflow.com/questions/1380066/is-there-a-proper-place-for-a-staging-database/1380077#1380077Comment by MaxVT on Is there a proper place for a staging database?MaxVT2009-09-04T15:54:59Z2009-09-04T15:54:59ZOne powerful machine with several virtual servers can do a good approximation for less $$$.