User Dmitry Shechtman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:17:26Zhttp://stackoverflow.com/feeds/user/3583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35785/xml-serialization-in-java9XML serialization in Java?Dmitry Shechtman2008-08-30T08:33:01Z2009-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-java1Intercepting the Nokia Ctrl/Chr key press in JavaDmitry Shechtman2009-04-06T12:16:38Z2009-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-mobile0How do I pop up the keyboard in Windows Mobile?Dmitry Shechtman2009-03-30T15:23:48Z2009-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#389531Answer by Dmitry Shechtman for Computer Language puns and jokesDmitry Shechtman2008-09-02T07:05:30Z2009-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#3431571Answer by Dmitry Shechtman for Refactoring a massive function into many files.Dmitry Shechtman2008-12-05T07:58:37Z2008-12-05T07:58:37Z<p>Learn XSLT.</p>
http://stackoverflow.com/questions/169695/persisting-printer-settings/170030#1700301Answer by Dmitry Shechtman for Persisting Printer SettingsDmitry Shechtman2008-10-04T09:17:32Z2008-10-04T09:17:32Z<p>You should use the class <code>PrinterSettings</code>.</p>
http://stackoverflow.com/questions/36890/changing-a-corba-interface-without-recompiling1Changing a CORBA interface without recompilingDmitry Shechtman2008-08-31T14:44:18Z2008-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#603410Answer by Dmitry Shechtman for Interface vs Base classDmitry Shechtman2008-09-13T05:11:58Z2008-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#505630Answer by Dmitry Shechtman for Designing a new UI for a legacy WinForms MDI applicationDmitry Shechtman2008-09-08T20:13:11Z2008-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#505100Answer by Dmitry Shechtman for The Definitive Guide To Website Authentication (beta)Dmitry Shechtman2008-09-08T19:46:44Z2008-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#396080Answer by Dmitry Shechtman for Login Integration in PHPDmitry Shechtman2008-09-02T14:09:47Z2008-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#435346Answer by Dmitry Shechtman for Reading Excel files from C#Dmitry Shechtman2008-09-04T11:39:19Z2008-09-04T11:39:19Z<p>This is what I used for Excel 2003:</p>
<pre><code>Dictionary<string, string> props = new Dictionary<string, string>();
props["Provider"] = "Microsoft.Jet.OLEDB.4.0";
props["Data Source"] = repFile;
props["Extended Properties"] = "Excel 8.0";
StringBuilder sb = new StringBuilder();
foreach (KeyValuePair<string, string> 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-java8Process ID in JavaDmitry Shechtman2008-08-30T09:53:25Z2008-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#404420Answer by Dmitry Shechtman for How can I control checkboxes in a .Net Forms.TreeView?Dmitry Shechtman2008-09-02T19:59:24Z2008-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-1Answer by Dmitry Shechtman for Encrypt data from users in web applicationsDmitry Shechtman2008-09-02T15:29:08Z2008-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#358190Answer by Dmitry Shechtman for How can I determine a web user's time zone?Dmitry Shechtman2008-08-30T09:29:39Z2008-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#3967011Answer by Dmitry Shechtman for How can I convince skeptical management and colleagues to allow refactoring of awful code?Dmitry Shechtman2008-09-02T14:32:47Z2008-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#395051Answer by Dmitry Shechtman for How do I calculate PI in C#?Dmitry Shechtman2008-09-02T13:27:15Z2008-09-02T13:27:15Z<pre><code>double PI = Math.PI;
</code></pre>
http://stackoverflow.com/questions/39365/developing-and-testing-a-facebook-application/39500#395004Answer by Dmitry Shechtman for Developing and Testing a Facebook applicationDmitry Shechtman2008-09-02T13:25:15Z2008-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&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#392340Answer by Dmitry Shechtman for Can I use other IDEs other than Visual Studio for coding in .net?Dmitry Shechtman2008-09-02T11:10:00Z2008-09-02T11:10:00Z<p><a href="http://www.monodevelop.com/" rel="nofollow">MonoDevelop</a></p>
http://stackoverflow.com/questions/35853/p-invoke-in-mono10P/Invoke in MonoDmitry Shechtman2008-08-30T10:04:55Z2008-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#368490Answer by Dmitry Shechtman for Version Control for word documentsDmitry Shechtman2008-08-31T13:00:56Z2008-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#368451Answer by Dmitry Shechtman for How do you parse an IP address string in C#?Dmitry Shechtman2008-08-31T12:59:35Z2008-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#3580621Answer by Dmitry Shechtman for How can I explain to a non-technical person what I do for a living?Dmitry Shechtman2008-08-30T09:14:23Z2008-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#358130Answer by Dmitry Shechtman for Why are Vi and Emacs popular ?Dmitry Shechtman2008-08-30T09:21:43Z2008-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#357944Answer by Dmitry Shechtman for Found a critical bug, but the company doesn't careDmitry Shechtman2008-08-30T08:52:39Z2008-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#697907Comment by Dmitry Shechtman on How do I pop up the keyboard in Windows Mobile?Dmitry Shechtman2009-03-31T09:05:50Z2009-03-31T09:05:50ZThanks, works like a charm. Who could imagine the keyboard was called InputPanel? :)http://stackoverflow.com/questions/57154/problems-with-migrating-cardspace-cards-between-computersComment by Dmitry Shechtman on Problems with migrating Cardspace cards between computersDmitry Shechtman2008-09-13T04:35:36Z2008-09-13T04:35:36ZWhat exactly makes this a programming question?