User Dmitry Shechtman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:17:26Z http://stackoverflow.com/feeds/user/3583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35785/xml-serialization-in-java 9 XML serialization in Java? Dmitry Shechtman 2008-08-30T08:33:01Z 2009-05-29T17:02:14Z <p>Is there a (preferably free) Java analogue of .NET's XML serialization?</p> http://stackoverflow.com/questions/721171/intercepting-the-nokia-ctrl-chr-key-press-in-java 1 Intercepting the Nokia Ctrl/Chr key press in Java Dmitry Shechtman 2009-04-06T12:16:38Z 2009-04-08T19:33:37Z <p>I'm trying to intercept the Ctrl/Chr key on a full QWERTY Nokia device (E71). It seems like the keyPress event isn't generated for this particular key.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/697676/how-do-i-pop-up-the-keyboard-in-windows-mobile 0 How do I pop up the keyboard in Windows Mobile? Dmitry Shechtman 2009-03-30T15:23:48Z 2009-03-30T20:24:19Z <p>I'm trying to duplicate the following behavior (WM6).</p> <p>Go to Settings -> About -> Device ID. The Device Name textbox gets the focus, causing the onscreen keyboard to pop up.</p> <p>I'd like to be able to do the same in my application, preferably in managed code.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/38953#38953 1 Answer by Dmitry Shechtman for Computer Language puns and jokes Dmitry Shechtman 2008-09-02T07:05:30Z 2009-03-16T18:03:59Z <p>There's an old Russian joke right on the topic.</p> <blockquote> <p>The teacher asks a 1st-grader's father:</p> <p>-- What kind of an education are you providing your child with? When I asked him what you did for a living, he replied that his father was a pianist in a whorehouse!</p> <p>-- Well, I'm a UNIX system expert. Go explain it to him.</p> </blockquote> http://stackoverflow.com/questions/342862/refactoring-a-massive-function-into-many-files/343157#343157 1 Answer by Dmitry Shechtman for Refactoring a massive function into many files. Dmitry Shechtman 2008-12-05T07:58:37Z 2008-12-05T07:58:37Z <p>Learn XSLT.</p> http://stackoverflow.com/questions/169695/persisting-printer-settings/170030#170030 1 Answer by Dmitry Shechtman for Persisting Printer Settings Dmitry Shechtman 2008-10-04T09:17:32Z 2008-10-04T09:17:32Z <p>You should use the class <code>PrinterSettings</code>.</p> http://stackoverflow.com/questions/36890/changing-a-corba-interface-without-recompiling 1 Changing a CORBA interface without recompiling Dmitry Shechtman 2008-08-31T14:44:18Z 2008-09-18T20:24:40Z <p>I'd like to add a method to my existing server's CORBA interface. Will that require recompiling all clients?</p> <p>I'm using TAO.</p> http://stackoverflow.com/questions/56867/interface-vs-base-class/60341#60341 0 Answer by Dmitry Shechtman for Interface vs Base class Dmitry Shechtman 2008-09-13T05:11:58Z 2008-09-13T05:11:58Z <p>That's an easy one. If you're programming in C++ always use base classes ;)</p> http://stackoverflow.com/questions/50518/designing-a-new-ui-for-a-legacy-winforms-mdi-application/50563#50563 0 Answer by Dmitry Shechtman for Designing a new UI for a legacy WinForms MDI application Dmitry Shechtman 2008-09-08T20:13:11Z 2008-09-08T20:13:11Z <p>Did you try <a href="http://www.netikatech.com/products/default.aspx" rel="nofollow">GOA WinForms</a>?</p> http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta/50510#50510 0 Answer by Dmitry Shechtman for The Definitive Guide To Website Authentication (beta) Dmitry Shechtman 2008-09-08T19:46:44Z 2008-09-08T19:55:43Z <p>@[Michiel de Mare]:</p> <blockquote> <p>The only practical way to send credentials 100% securely is by using SSL.</p> </blockquote> <p>No practical way to send credentials is 100% secure.</p> http://stackoverflow.com/questions/39564/login-integration-in-php/39608#39608 0 Answer by Dmitry Shechtman for Login Integration in PHP Dmitry Shechtman 2008-09-02T14:09:47Z 2008-09-04T12:18:21Z <p>I once did a phpBB/MediaWiki login integration from the phpBB end.</p> <p><a href="https://damnian.svn.sourceforge.net/svnroot/damnian/phpBB3/MediaWiki/" rel="nofollow">Check it out</a>.</p> http://stackoverflow.com/questions/15828/reading-excel-files-from-c/43534#43534 6 Answer by Dmitry Shechtman for Reading Excel files from C# Dmitry Shechtman 2008-09-04T11:39:19Z 2008-09-04T11:39:19Z <p>This is what I used for Excel 2003:</p> <pre><code>Dictionary&lt;string, string&gt; props = new Dictionary&lt;string, string&gt;(); props["Provider"] = "Microsoft.Jet.OLEDB.4.0"; props["Data Source"] = repFile; props["Extended Properties"] = "Excel 8.0"; StringBuilder sb = new StringBuilder(); foreach (KeyValuePair&lt;string, string&gt; prop in props) { sb.Append(prop.Key); sb.Append('='); sb.Append(prop.Value); sb.Append(';'); } string properties = sb.ToString(); using (OleDbConnection conn = new OleDbConnection(properties)) { conn.Open(); DataSet ds = new DataSet(); string columns = String.Join(",", columnNames.ToArray()); using (OleDbDataAdapter da = new OleDbDataAdapter( "SELECT " + columns + " FROM [" + worksheet + "$]", conn)) { DataTable dt = new DataTable(tableName); da.Fill(dt); ds.Tables.Add(dt); } } </code></pre> http://stackoverflow.com/questions/35842/process-id-in-java 8 Process ID in Java Dmitry Shechtman 2008-08-30T09:53:25Z 2008-09-04T01:07:49Z <p>How do I get the id of my Java process? I know there are several platform-dependent hacks, but I'm after a generic solution.</p> http://stackoverflow.com/questions/39119/how-can-i-control-checkboxes-in-a-net-forms-treeview/40442#40442 0 Answer by Dmitry Shechtman for How can I control checkboxes in a .Net Forms.TreeView? Dmitry Shechtman 2008-09-02T19:59:24Z 2008-09-02T19:59:24Z <p><a href="http://www.codeproject.com/KB/tree/Multiselect_Treeview.aspx" rel="nofollow">MultiSelectTreeView</a>:</p> <blockquote> <p>Why doesn't .NET have a multiselect treeview? There are so many uses for one and turning on checkboxes in the treeview is a pretty lousy alternative.</p> </blockquote> http://stackoverflow.com/questions/39772/encrypt-data-from-users-in-web-applications/39806#39806 -1 Answer by Dmitry Shechtman for Encrypt data from users in web applications Dmitry Shechtman 2008-09-02T15:29:08Z 2008-09-02T15:29:08Z <p>No, you can't use passwords, but you could use password hashes. However, Google Docs are all about sharing, so such a method would require storing a copy of the document for each user.</p> http://stackoverflow.com/questions/13/how-can-i-determine-a-web-users-time-zone/35819#35819 0 Answer by Dmitry Shechtman for How can I determine a web user's time zone? Dmitry Shechtman 2008-08-30T09:29:39Z 2008-09-02T15:14:02Z <p>If you happen to be using <a href="http://openid.net/" rel="nofollow">OpenID</a> for authentication, <a href="http://openid.net/specs/openid-simple-registration-extension-1_0.html" rel="nofollow">Simple Registration Extension</a> would solve the problem for authenticated users (You'll need to convert from tz to numeric).</p> <p>Another option would be to infer the time zone from the user agent's country preference. This is a somewhat crude method (won't work for en-US), but makes a good approximation.</p> http://stackoverflow.com/questions/38144/how-can-i-convince-skeptical-management-and-colleagues-to-allow-refactoring-of-aw/39670#39670 11 Answer by Dmitry Shechtman for How can I convince skeptical management and colleagues to allow refactoring of awful code? Dmitry Shechtman 2008-09-02T14:32:47Z 2008-09-02T14:32:47Z <p>Quote from <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring</a>, Chapter 2:</p> <blockquote> <h1>What Do I Tell My Manager?</h1> <p>How to tell a manager about refactoring is one of the most common questions I've been asked. If the manager is technically savvy, introducing the subject may not be that hard. If the manager is genuinely quality oriented, then the thing to stress is the quality aspects. Here using refactoring in the review process is a good way to work things.</p> <p>Tons of studies show that technical reviews are an important way to reduce bugs and thus speed up development. Take a look at any book on reviews, inspections, or the software development process for the latest citations. These should convince most managers of the value of reviews. It is then a short step to introduce refactoring as a way of getting review comments into the code.</p> <p>Of course, many people say they are driven by quality but are more driven by schedule. In these cases I give my more controversial advice: Don't tell!</p> <p>Subversive? I don't think so. Software developers are professionals. Our job is to build effective software as rapidly as we can. My experience is that refactoring is a big aid to building software quickly. If I need to add a new function and the design does not suit the change, I find it's quicker to refactor first and then add the function. If I need to fix a bug, I need to understand how the software works—and I find refactoring is the fastest way to do this. A schedule-driven manager wants me to do things the fastest way I can; how I do it is my business. The fastest way is to refactor; therefore I refactor.</p> </blockquote> http://stackoverflow.com/questions/39395/how-do-i-calculate-pi-in-c/39505#39505 1 Answer by Dmitry Shechtman for How do I calculate PI in C#? Dmitry Shechtman 2008-09-02T13:27:15Z 2008-09-02T13:27:15Z <pre><code>double PI = Math.PI; </code></pre> http://stackoverflow.com/questions/39365/developing-and-testing-a-facebook-application/39500#39500 4 Answer by Dmitry Shechtman for Developing and Testing a Facebook application Dmitry Shechtman 2008-09-02T13:25:15Z 2008-09-02T13:25:15Z <p>You'll have to add both trunk and test versions as different applications and test them using <a href="http://developers.facebook.com/news.php?blog=1&amp;story=35" rel="nofollow">test accounts</a>. You may also use a single application and switch its target URL between cycles.</p> http://stackoverflow.com/questions/39229/can-i-use-other-ides-other-than-visual-studio-for-coding-in-net/39234#39234 0 Answer by Dmitry Shechtman for Can I use other IDEs other than Visual Studio for coding in .net? Dmitry Shechtman 2008-09-02T11:10:00Z 2008-09-02T11:10:00Z <p><a href="http://www.monodevelop.com/" rel="nofollow">MonoDevelop</a></p> http://stackoverflow.com/questions/35853/p-invoke-in-mono 10 P/Invoke in Mono Dmitry Shechtman 2008-08-30T10:04:55Z 2008-08-31T19:49:13Z <p>What's the current status of <a href="http://www.mono-project.com/" rel="nofollow">Mono</a>'s Platform Invoke implementation on Linux? And on Solaris?</p> http://stackoverflow.com/questions/36820/version-control-for-word-documents/36849#36849 0 Answer by Dmitry Shechtman for Version Control for word documents Dmitry Shechtman 2008-08-31T13:00:56Z 2008-08-31T13:00:56Z <p>SharePoint is definitely the way to document version control in the enterprise.</p> http://stackoverflow.com/questions/36831/how-do-you-parse-an-ip-address-string-in-c/36845#36845 1 Answer by Dmitry Shechtman for How do you parse an IP address string in C#? Dmitry Shechtman 2008-08-31T12:59:35Z 2008-08-31T12:59:35Z <p>Byte arithmetic is discouraged, as it relies on all IPs being 4-octet ones.</p> http://stackoverflow.com/questions/6988/how-can-i-explain-to-a-non-technical-person-what-i-do-for-a-living/35806#35806 21 Answer by Dmitry Shechtman for How can I explain to a non-technical person what I do for a living? Dmitry Shechtman 2008-08-30T09:14:23Z 2008-08-31T10:58:09Z <p>There's an old Russian joke right on the topic.</p> <blockquote> <p>The teacher asks a 1st-grader's father:</p> <p>-- What kind of an education are you providing your child with? When I asked him what you did for a living, he replied that his father was a pianist in a whorehouse!</p> <p>-- Well, I'm a UNIX system expert. Go explain it to him.</p> </blockquote> http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/35813#35813 0 Answer by Dmitry Shechtman for Why are Vi and Emacs popular ? Dmitry Shechtman 2008-08-30T09:21:43Z 2008-08-30T09:21:43Z <p>Up to this day, many environments simply have no other tools installed by default -- no X, no pico, just plain old vi. Most people are just too lazy to change the default configurations, so I guess we're stuck with vi...</p> http://stackoverflow.com/questions/1705/found-a-critical-bug-but-the-company-doesnt-care/35794#35794 4 Answer by Dmitry Shechtman for Found a critical bug, but the company doesn't care Dmitry Shechtman 2008-08-30T08:52:39Z 2008-08-30T08:52:39Z <p>I once found myself in a similar situation. I emailed the company behind the site about the vulnerability, but got no response for several days. A few hours after going public (on my blog and forum) <strong>without disclosing the nature of the vulnerability</strong> it got fixed. The company went on to deny anything had ever went wrong.</p> <p>Was it worth it? I'm certain it was, especially given the nature of the service that site has been providing (chances are you're a user).</p> http://stackoverflow.com/questions/697676/how-do-i-pop-up-the-keyboard-in-windows-mobile/697907#697907 Comment by Dmitry Shechtman on How do I pop up the keyboard in Windows Mobile? Dmitry Shechtman 2009-03-31T09:05:50Z 2009-03-31T09:05:50Z Thanks, works like a charm. Who could imagine the keyboard was called InputPanel? :) http://stackoverflow.com/questions/57154/problems-with-migrating-cardspace-cards-between-computers Comment by Dmitry Shechtman on Problems with migrating Cardspace cards between computers Dmitry Shechtman 2008-09-13T04:35:36Z 2008-09-13T04:35:36Z What exactly makes this a programming question?