User Mike Ivanov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T16:57:57Zhttp://stackoverflow.com/feeds/user/5126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/867788/compile-flex-application-without-debug-optimisation-options-for-flex-compiler/1580380#15803801Answer by Mike Ivanov for Compile Flex application without debug? Optimisation options for flex compiler?Mike Ivanov2009-10-16T20:59:08Z2009-10-16T20:59:08Z<p>There are two compiler options that you should set: <code>-debug=false -optimize=true</code>. In Flex Builder or Eclipse, look under Project->Properties->Flex Compiler and fill in the box labeled "Additional compiler arguments."</p>
http://stackoverflow.com/questions/819554/problem-with-rss-feed-and-cdata/842078#842078-1Answer by Mike Ivanov for problem with rss feed and cdataMike Ivanov2009-05-08T22:26:07Z2009-05-08T22:26:07Z<p><a href="http://www.cs.tut.fi/~jkorpela/html/euro.html" rel="nofollow">This article</a> may be helpful for information about the euro sign and support in various contexts. Some of the suggestions from that article include using <code>&#8364;</code> or <code>&euro;</code> or just replacing the sign with the word "euro." Good luck!</p>
http://stackoverflow.com/questions/742730/encoding-php-tags-for-security/742771#7427711Answer by Mike Ivanov for Encoding PHP Tags for Security?Mike Ivanov2009-04-13T01:17:05Z2009-04-13T01:17:05Z<p>This ensures that any PHP code in user input will not be executed if, for example, the application writes the input to a file or passes it to <code>eval()</code>. Or if you just want to write out some PHP code to show the browser.</p>
http://stackoverflow.com/questions/164927/how-to-find-out-if-a-certain-value-exists-as-a-primary-key-in-mysql/164946#1649461Answer by Mike Ivanov for How to find out if a certain value exists as a primary key in mySql?Mike Ivanov2008-10-02T22:49:07Z2008-10-02T22:49:07Z<p>Do the first and count the results (always 0 or 1). Easy and fast.</p>
http://stackoverflow.com/questions/164858/does-the-assign-then-evaluate-of-each-parameter-pattern-have-a-name/164912#1649120Answer by Mike Ivanov for Does the assign then evaluate of each parameter "pattern" have a name?Mike Ivanov2008-10-02T22:37:11Z2008-10-02T22:37:11Z<p>The arguments of a function are evaluated <a href="http://msdn.microsoft.com/en-us/library/aa691335.aspx" rel="nofollow">left-to-right in C#</a>. This is not the case in C/C++, where the standard says the order of evaluation is undefined.</p>
http://stackoverflow.com/questions/155065/brokenimageskin-dimensions-in-flex0brokenImageSkin dimensions in FlexMike Ivanov2008-09-30T20:57:30Z2008-09-30T22:22:11Z
<p>I am trying to implement a custom "broken image" icon to appear if I cannot load an image. To accomplish this, I used the brokenImageSkin parameter, but it renders the image at its true resolution, which ends up cutting off the image if the size of the control is constrained.</p>
<pre><code> <mx:Image brokenImageSkin="@Embed('/assets/placeholder.png')" source="http://www.example.com/bad_url.png"/>
</code></pre>
<p>How can I scale the brokenImageSkin to a custom width and height?</p>
http://stackoverflow.com/questions/96840/real-world-problems-with-naive-shuffling/96874#968745Answer by Mike Ivanov for Real-world problems with naive shufflingMike Ivanov2008-09-18T20:57:14Z2008-09-18T21:08:42Z<p>It turns out the advantage is quite significant. <a href="http://www.cigital.com/papers/download/developer_gambling.php" rel="nofollow">Check out this article</a></p>
<p>Part of the problem is the flawed algorithm, but another part is the assumption that you can get "random" numbers from a computer.</p>
http://stackoverflow.com/questions/90246/how-would-i-store-a-date-that-can-be-partial-i-e-just-the-year-maybe-the-month/90267#902670Answer by Mike Ivanov for How would I store a date that can be partial (i.e. just the year, maybe the month too) and output it later with the same specifity?Mike Ivanov2008-09-18T05:24:40Z2008-09-18T05:24:40Z<p>I'd probably store the datetime and an additional "precision" column to determine how to output it. For output, the precision column can map to a column that contains the corresponding formatting string ("YYYY-mm", etc) or it can contain the formatting string itself.</p>
http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all/88385#883850Answer by Mike Ivanov for Which is better: shipping a buggy feature or not shipping the feature at all?Mike Ivanov2008-09-17T22:34:50Z2008-09-17T22:34:50Z<p>If it doesn't break anything else, why not ship it? It sounds like you have a good relationship with your customers, so those who want the feature will be happy to get it even if it's not all the way there, and those who don't want it won't care. Plus you'll get lots of feedback to improve it in the next release!</p>
http://stackoverflow.com/questions/74892/is-there-a-quality-file-size-or-other-benefit-to-jpeg-sizes-being-multiples-of/75106#751060Answer by Mike Ivanov for Is there a quality, file-size, or other benefit to JPEG sizes being multiples of 8px or 16px?Mike Ivanov2008-09-16T17:57:56Z2008-09-16T17:57:56Z<p>The image dimensions being multiples of 8 or 16 is not going to affect the size on disk very much, but you can get dramatic savings if you can line up the visual contents to the 8x8 pixel grid, such as if there is a repeating pattern or texture in the image.</p>