User Michael Pliskin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T17:23:04Zhttp://stackoverflow.com/feeds/user/9777http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/702743/best-way-to-show-image-sequence-as-a-movie-in-adobe-air0Best way to show image sequence as a movie in Adobe AIRMichael Pliskin2009-03-31T19:49:49Z2009-12-10T16:00:12Z
<p>I need to show an image sequence as a movie in an Adobe AIR application - i.e. treat lots of images as video frames and show the result. For now I am going to try simply loading them and displaying in a movie clip but this might be too slow. Any advanced ideas how to make it work? Images are located on a hard drive or very fast network share, so the bandwidth should be enough. There can be thousands of them, so preloading everything to memory doesn't seem feasible.</p>
<p>Adobe AIR is not 100% decided, I am open to other ideas how to create a cross-platform desktop application for this purpose quickly enough.</p>
http://stackoverflow.com/questions/714656/read-tiff-file-in-air1Read TIFF file in AIR?Michael Pliskin2009-04-03T16:20:49Z2009-11-03T13:47:18Z
<p>Is there any way to read a TIFF file under AIR? Looks like Flash doesn't have native support for TIFF format, any libraries out there?</p>
http://stackoverflow.com/questions/14395/managed-source-control-hosting-and-continuous-integration-with-cvsdude-and-cruise/1577392#15773921Answer by Michael Pliskin for Managed Source Control Hosting and Continuous Integration with CVSDude and CruiseControl.netMichael Pliskin2009-10-16T10:48:35Z2009-10-16T10:48:35Z<p>Dunno if you are still interested, but we have CruiseControl (the original Java-based one, not .NET, but this shouldn't matter much) working with CVSDude - it just does <code>svn log</code> every minute to check if anything changed. We plan to switch to using their API though as unfortunately <code>svn log</code> has some lag behind the realtime update.</p>
http://stackoverflow.com/questions/805808/emulating-a-transaction-safe-sequence-in-mysql0Emulating a transaction-safe SEQUENCE in MySQLMichael Pliskin2009-04-30T07:42:40Z2009-09-16T00:07:27Z
<p>We're using MySQL with InnoDB storage engine and transactions a lot, and we've run into a problem: we need a nice way to emulate Oracle's SEQUENCEs in MySQL. The requirements are:
- concurrency support
- transaction safety
- max performance (meaning minimizing locks and deadlocks)</p>
<p>We don't care if some of the values won't be used, i.e. gaps in sequence are ok. There is an easy way to archieve that by creating a separate InnoDB table with a counter, however this means it will take part in transaction and will introduce locks and waiting. I am thinking to try a MyISAM table with manual locks, any other ideas or best practices?</p>
http://stackoverflow.com/questions/126791/best-mysql-server-monitoring-tool6Best MySQL Server Monitoring ToolMichael Pliskin2008-09-24T12:22:13Z2009-09-01T08:02:25Z
<p>I'd like some opinions about the best mysql monitoring tool available. I've tried <a href="http://www.mysql.com/products/enterprise/advisors.html" rel="nofollow">MySQL Enterprise Monitor</a>, and it is great for me except it's impossible to get MySQL sell something (<em>see comments for details</em>) - I'm ok to pay even if I find the pricing and bundling it with MySQL Enterprise only unreasonable.</p>
<p>I am also looking at <a href="http://www.webyog.com/en/monyog_feature_list.php" rel="nofollow">MONyog MySQL Monitor</a> now, gonna give it a try soon. Just wanna get some expert advice/field experience.</p>
http://stackoverflow.com/questions/1327524/custom-domain-with-joomla1Custom domain with JoomlaMichael Pliskin2009-08-25T11:03:11Z2009-08-25T14:18:03Z
<p>Is there any nice component for Joomla 1.0.x allowing to serve custom domains? What I am trying to archieve is to sell subscription to my service and to offer custom branding including custom urls like yourcompany.myservice.com and even example.myservice.com. Any pointers? I am selling subscriptions themselves already for a long time, so the question is specifically on the domain part - how to manage apache vhosts/dns settings/whatever dynamically.</p>
http://stackoverflow.com/questions/1276749/net-io-redirection-read-output-char-by-char0.NET IO redirection - read output char by charMichael Pliskin2009-08-14T08:50:01Z2009-08-16T10:35:40Z
<p>I am launching another process from by C# application, and came to a problem: is there any way to read process output char-by-char, not line-by-line? I desperately need that because the other process is a command-line engine, and I need to send a command to it, read output and somehow understand when it is done. The way it indicates that is to write a prompt WITHOUT a newline, so I have no chance to ever capture that. Using fragile timer stuff now, and looking for a better solution.</p>
<p>C# Process API as outlined in MSDN and <a href="http://stackoverflow.com/questions/1060799/c-shell-io-redirection">other places</a> only allows for line-by-line input - even in async way.</p>
http://stackoverflow.com/questions/370968/server-side-paging-with-devexpress-without-xpo1Server-side paging with DevExpress without XPOMichael Pliskin2008-12-16T10:50:03Z2009-06-10T00:51:18Z
<p>Is there any (relatively) easy way to implement server-side paging using DevExpress controls (either Win- or Web-ones) without using an XPO data source? By server-side paging I mean control retrieving only the records it needs to display from the database, not the whole table.</p>
http://stackoverflow.com/questions/797883/innodb-deadlock-with-read-uncommited-java-glassfish-ejb3-jpa-hibernate/932512#9325120Answer by Michael Pliskin for InnoDB deadlock with read-uncommited! - Java - Glassfish - EJB3 (JPA/Hibernate)Michael Pliskin2009-05-31T17:34:47Z2009-05-31T17:34:47Z<p>You should take for granted that deadlocks will happen in any transactional database no matter what you do. You just should handle them gracefully and repeat the failing transaction some fixed number of times (3 normally is ok) - there should be a parameter somewhere in Glassfish responsible for that.</p>
http://stackoverflow.com/questions/898728/document-template-engine1Document template engineMichael Pliskin2009-05-22T16:23:15Z2009-05-23T18:00:36Z
<p>I need to choose a good template engine to generate documents in our application. The requirements are:</p>
<ul>
<li>Generate Microsoft Word and PDF at least</li>
<li>Good templating capabilities including support for simple replacable parameters, arrays/lists, and hierarchies if possible</li>
<li>Allow to include custom graphics</li>
<li>Ideally templates should be editable with Microsoft applications or other user-friendly equivalent</li>
</ul>
<p>The task is to feed some data structure from the system and make a nice document from it. Examples include reports, business proposals, product visions and more. Ideas are welcome :)</p>
<p>One approach is to write one myself but maybe there is something out-of-the-box and not necessarily free. Technically best if it could be cross-platform but Windows-only is fine as well as a last resort.</p>
http://stackoverflow.com/questions/586973/what-does-i18n-safe-mean/587006#5870067Answer by Michael Pliskin for What does I18N safe mean?Michael Pliskin2009-02-25T17:33:02Z2009-05-10T10:16:13Z<p>This is most often referred to a code or construct ready for I18N - i.e easily supported by common I18N techniques. For instance, the following is ready:</p>
<pre><code>printf(loadResourceString("Result is %s"), result);
</code></pre>
<p>while the following is not:</p>
<pre><code>printf("Result is " + result);
</code></pre>
<p>because the word order may vary in different languages. Unicode support, international date-time formatting and the like also qualify.</p>
<p><strong>EDIT:</strong> added loadResourceString to make an example close to real life.</p>
http://stackoverflow.com/questions/120022/tool-to-monitor-http-tcp-etc-web-service-traffic/120110#1201103Answer by Michael Pliskin for Tool to monitor HTTP, TCP, etc. Web Service trafficMichael Pliskin2008-09-23T09:49:32Z2008-12-04T02:17:54Z<p>You might find <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f4db40af-1e08-4a21-a26b-ec2f4dc4190d&DisplayLang=en" rel="nofollow">Microsoft Network Monitor</a> helpful if you're on Windows.</p>
http://stackoverflow.com/questions/269653/autocomplete-in-mysql-under-windows2Autocomplete in MySQL under WindowsMichael Pliskin2008-11-06T18:01:52Z2008-11-07T17:02:28Z
<p>Does anybody know if there is a way to make autocompletion work in MySQL Command Line Client under Windows? It's working nicely under Linux for me, but simply moves the cursor under Windows instead.</p>
http://stackoverflow.com/questions/226445/neko-and-haxe-timer-delayed/269643#2696430Answer by Michael Pliskin for Neko and haxe.Timer.delayed()Michael Pliskin2008-11-06T17:58:48Z2008-11-06T17:58:48Z<p>Yes I don't know anything except for what you mention in your first answer. On Linux you can use SIGALARM - but this doesn't look trivial, 100% pure C code, and needs to be handled with great care to avoid crashing the VM.</p>
http://stackoverflow.com/questions/186208/latex-styles-what-do-you-use-and-where-to-find-them/186306#1863063Answer by Michael Pliskin for Latex styles - what do you use and where to find themMichael Pliskin2008-10-09T07:51:25Z2008-10-09T07:51:25Z<p>Well I think <a href="http://ctan.org/" rel="nofollow">CTAN</a> is the best resource for LaTeX and TeX-related stuff. Also lots of scientific organizations provide their own styles, it makes sense to try tracing who was the author/publisher of the paper you like and check their websites.</p>
http://stackoverflow.com/questions/126573/how-to-do-automated-ui-testing-for-flash/146726#1467260Answer by Michael Pliskin for How to do Automated UI testing for FlashMichael Pliskin2008-09-28T20:59:03Z2008-09-28T20:59:03Z<p>Another way is to use any HTML/JS autotesting tool and provide a JS api to your Flash app - at least, you can always expose functions like 'locate smth by id', 'click smth by id', 'enter some text into smth by id' or whatever.</p>
http://stackoverflow.com/questions/135047/interview-questions-for-flash-developers/146722#1467221Answer by Michael Pliskin for Interview questions for Flash developersMichael Pliskin2008-09-28T20:57:35Z2008-09-28T20:57:35Z<ul>
<li>Explain what a MovieClip in AS2/F8 is. Then go to AS3 and explain the diff between Sprite and Movieclip.</li>
<li>How to handle keyboard events in AS2? AS3?</li>
<li>Best way to embed flash into html. Static and dynamic publishing.</li>
<li>How to make a preloader? Both first-frame and separate</li>
<li>write a simple clickable button in AS2 and AS3.</li>
</ul>
<p>This list can go on of course, just some starters.</p>
http://stackoverflow.com/questions/146505/can-someone-recommend-a-reliable-cvs-or-svn-hosting-service/146635#1466351Answer by Michael Pliskin for Can someone recommend a reliable CVS or SVN hosting service?Michael Pliskin2008-09-28T20:19:09Z2008-09-28T20:19:09Z<p><a href="http://hosted-projects.com/" rel="nofollow">Hosted-projects.com</a> works fine for me for more than a year by now, no issues so far. Control panel is pretty simplistic and geeky though.</p>
http://stackoverflow.com/questions/128333/rich-text-editing-in-silverlight-21Rich Text Editing in Silverlight 2Michael Pliskin2008-09-24T16:53:18Z2008-09-25T17:47:57Z
<p>We've looked in Silverlight 2 recently and found no way to edit formatted text there. Is this really true, and are there any (maybe commercial) external rich text editors available?</p>
http://stackoverflow.com/questions/114010/create-anonymous-object-by-reflection-in-c5Create anonymous object by Reflection in C#Michael Pliskin2008-09-22T09:42:11Z2008-09-25T10:55:33Z
<p>Is there any way to create C# 3.0 anonymous object via Reflection at runtime in .NET 3.5? I'd like to support them in my serialization scheme, so I need a way to manipulate them programmatically.</p>
<p><em>edited later to clarify the use case</em></p>
<p>An extra constraint is that I will be running all of it inside a Silverlight app, so extra runtimes are not an option, and not sure how generating code on the fly will work.</p>
http://stackoverflow.com/questions/126510/swd-files-in-flash-player-90SWD files in Flash Player 9Michael Pliskin2008-09-24T11:04:30Z2008-09-25T03:12:47Z
<p>Does anybody have any pointers to what SWD files are in Flash 9, why Flash Player wants to download them sometimes, how to make ones, how to make use of them? Didn't manage to dig anything useful myself yet.</p>
<p><em>Update</em></p>
<p>I know roughly what are swd files used in Flash8, and <a href="http://livedocs.adobe.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file=00000838.htm" rel="nofollow">there is even a way to make them</a>, but Flash 9 doesn't seem to need it at first glance, but still attempts to use sometimes.</p>
http://stackoverflow.com/questions/127630/is-there-a-good-tool-for-mysql-that-will-help-me-optimise-my-queries-and-index-se/127734#1277342Answer by Michael Pliskin for Is there a good tool for MySQL that will help me optimise my queries and index settings?Michael Pliskin2008-09-24T15:08:15Z2008-09-24T15:08:15Z<p>As a simplest thing, enable Slow Query Log and see what queries are slow, then try to analyze them as suggested.</p>
http://stackoverflow.com/questions/119694/replacing-strings-inside-swf/120106#1201061Answer by Michael Pliskin for Replacing strings inside SWFMichael Pliskin2008-09-23T09:48:15Z2008-09-23T09:56:06Z<p>Well the only advice I can come up with is to fix swfmill to support international characters. You might want to ask in swfmill mailing list (swfmill@swfmill.org as far as I know) for a best way how to do it, shouldn't be too difficult if you know C/C++ a bit.</p>
http://stackoverflow.com/questions/120029/does-wpf-have-equivalent-controls-for-all-winforms-controls/120124#1201240Answer by Michael Pliskin for Does WPF have equivalent controls for all Winforms controls?Michael Pliskin2008-09-23T09:51:45Z2008-09-23T09:51:45Z<p>I know a team working on a WPF application for a couple of years by now, and their feedback is that WPF is still a no match to WinForms when it comes to complicated controls (advanced data grids, tree views and the like). Basic controls are ok though.</p>
http://stackoverflow.com/questions/114807/should-i-learn-become-proficient-in-javascript/114832#1148320Answer by Michael Pliskin for Should I learn/become proficient in Javascript?Michael Pliskin2008-09-22T13:23:06Z2008-09-22T13:23:06Z<p>I don't think a lot of deliberate learning makes sense (but of course you need some basic knowledge), but I also think after some years of web development you'll become pretty proficient in the language anyway :)</p>
http://stackoverflow.com/questions/91318/how-to-extend-default-timeout-period-in-flash-application/109530#1095301Answer by Michael Pliskin for How to extend default timeout period in flash application?Michael Pliskin2008-09-20T21:48:08Z2008-09-20T21:48:08Z<p>Another way is to link a <a href="http://swfmill.org/" rel="nofollow">swfmill</a>-based swf via -swf-lib switch and set this ScriptLimits tag there, haxe will re-use it then.</p>
http://stackoverflow.com/questions/109319/error-prj0003-error-spawning-cl-exe/109513#1095131Answer by Michael Pliskin for error PRJ0003 : Error spawning 'cl.exe'.Michael Pliskin2008-09-20T21:40:48Z2008-09-20T21:40:48Z<p>cl.exe is VS2008 (and any other VS) C/C++ compiler, so check for more detailed error message why it cannot be spawned. Be sure you've installed C++ language support when installing VS2008.</p>
http://stackoverflow.com/questions/109491/problems-with-accessing-flashvars-via-parameters-in-as3/109505#1095050Answer by Michael Pliskin for Problems with accessing FlashVars via parameters in AS3Michael Pliskin2008-09-20T21:39:03Z2008-09-20T21:39:03Z<p>I think you should extend from Sprite, but be sure to initialize it first and maybe put to the stage. Try to enable debugging and see what exactly is null as exception report says.</p>
http://stackoverflow.com/questions/109402/given-sufficient-experience-in-c-c-python-and-java-what-would-be-another-good/109443#1094436Answer by Michael Pliskin for Given sufficient experience in C/C++, Python and Java, what would be another good language to learn, and why?Michael Pliskin2008-09-20T21:17:48Z2008-09-20T21:32:37Z<p>I would say Ocaml definitely - completely different, full of usable ideas, and is the closest to the mainstream in its camp.</p>
http://stackoverflow.com/questions/109409/what-are-the-key-strengths-of-asp-net-webforms/109427#1094271Answer by Michael Pliskin for What are the key strengths of ASP.NET Webforms?Michael Pliskin2008-09-20T21:15:46Z2008-09-20T21:15:46Z<p>I think the component model is the key thing and ease to use parts of other web pages as components (via User Controls) are the key advantages.</p>
http://stackoverflow.com/questions/1850567/generate-dbf-files/1851177#1851177Comment by Michael Pliskin on generate DBF filesMichael Pliskin2009-12-07T17:24:16Z2009-12-07T17:24:16Z+1 for SQLite - it's becoming a de-facto standard for embedded DBs..http://stackoverflow.com/questions/714656/read-tiff-file-in-air/1667423#1667423Comment by Michael Pliskin on Read TIFF file in AIR?Michael Pliskin2009-11-09T08:26:46Z2009-11-09T08:26:46ZThanks a ton! This might be an option..http://stackoverflow.com/questions/371651/english-error-messages-in-german-visual-studio-2008-asp-net/374581#374581Comment by Michael Pliskin on English Error Messages in German Visual Studio 2008 / ASP.NETMichael Pliskin2009-11-02T11:49:48Z2009-11-02T11:49:48ZThanks from Russian .net developers as well - I believe Russian translation of error messages is even worse than German - you just saved me :)http://stackoverflow.com/questions/1327524/custom-domain-with-joomla/1328585#1328585Comment by Michael Pliskin on Custom domain with JoomlaMichael Pliskin2009-08-25T19:54:12Z2009-08-25T19:54:12ZThanks, unfortunately switching to 1.5 is difficult as it is basically about reimplementing the website, but this approach will help.http://stackoverflow.com/questions/1327524/custom-domain-with-joomla/1327633#1327633Comment by Michael Pliskin on Custom domain with JoomlaMichael Pliskin2009-08-25T12:02:50Z2009-08-25T12:02:50ZThanks for the pointer, but I don't think I need different sites - it is more about sending users from different domains to the same site with only minor variances. But will check more of course.http://stackoverflow.com/questions/126791/best-mysql-server-monitoring-tool/1303360#1303360Comment by Michael Pliskin on Best MySQL Server Monitoring ToolMichael Pliskin2009-08-25T10:58:54Z2009-08-25T10:58:54ZThanks for the comment, I'd like to try it but I've already purchased MonYOG and using it now. Maybe will try for other projects though.http://stackoverflow.com/questions/1276749/net-io-redirection-read-output-char-by-char/1283906#1283906Comment by Michael Pliskin on .NET IO redirection - read output char by charMichael Pliskin2009-08-17T20:06:15Z2009-08-17T20:06:15ZThanks, this is what I've finally done (incremental backoff wait loop). Launched this loop as a separate thread and it works nicely now.http://stackoverflow.com/questions/1276749/net-io-redirection-read-output-char-by-char/1276944#1276944Comment by Michael Pliskin on .NET IO redirection - read output char by charMichael Pliskin2009-08-14T16:02:14Z2009-08-14T16:02:14ZReadToEnd() will block the execution until stream is closed... which is not what I need.http://stackoverflow.com/questions/1276749/net-io-redirection-read-output-char-by-char/1276944#1276944Comment by Michael Pliskin on .NET IO redirection - read output char by charMichael Pliskin2009-08-14T09:44:20Z2009-08-14T09:44:20ZSame comment as before - I need to be calling EndOfStream all the time to check if new data arrived. Looking for a smarter way here..http://stackoverflow.com/questions/1276749/net-io-redirection-read-output-char-by-char/1276902#1276902Comment by Michael Pliskin on .NET IO redirection - read output char by charMichael Pliskin2009-08-14T09:37:13Z2009-08-14T09:37:13ZThis requires a separate thread to be checking EndOfStream property all the time which is a way to high CPU usage for nothing. I am looking for a way for stream to notify me when a new byte arrives - any ideas?http://stackoverflow.com/questions/1039853/why-is-the-c-stl-is-so-heavily-based-on-templates-and-not-on-interfaces/1039904#1039904Comment by Michael Pliskin on Why is the C++ STL is so heavily based on templates? (and not on *interfaces*)Michael Pliskin2009-06-24T18:50:25Z2009-06-24T18:50:25ZJust excellent reading!http://stackoverflow.com/questions/586973/what-does-i18n-safe-mean/587006#587006Comment by Michael Pliskin on What does I18N safe mean?Michael Pliskin2009-05-10T10:18:13Z2009-05-10T10:18:13Z@MarkJ: ok modified the answer, you & Oscar are righthttp://stackoverflow.com/questions/805808/emulating-a-transaction-safe-sequence-in-mysql/805834#805834Comment by Michael Pliskin on Emulating a transaction-safe SEQUENCE in MySQLMichael Pliskin2009-04-30T08:19:24Z2009-04-30T08:19:24ZThanks, your second approach is probably what I had in mind more or less, and the details help a lot. Any comments on what storage engine is best for such a table?http://stackoverflow.com/questions/714656/read-tiff-file-in-air/716670#716670Comment by Michael Pliskin on Read TIFF file in AIR?Michael Pliskin2009-04-04T15:02:03Z2009-04-04T15:02:03ZThanks, I found this one too - but unfortunately encoding is pretty easy compared to decoding, and I need decoding. Thanks anyway.http://stackoverflow.com/questions/714656/read-tiff-file-in-air/714703#714703Comment by Michael Pliskin on Read TIFF file in AIR?Michael Pliskin2009-04-03T16:52:44Z2009-04-03T16:52:44ZThanks for the pointer, but flash.display.Loader throws an exception when trying to open a TIFF file, and the documentation says it only supports JPEG and PNG. Maybe there is some other way?..