User Vitaly Sharovatov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T17:31:42Zhttp://stackoverflow.com/feeds/user/6647http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61088/hidden-features-of-javascript/64912#649120Answer by Vitaly Sharovatov for Hidden Features of JavaScript?Vitaly Sharovatov2008-09-15T17:27:08Z2009-09-22T23:20:32Z<p>As Marius already pointed, you can have public static variables in functions. </p>
<p>I usually use them to create functions that are executed only once, or to cache some complex calculation results.</p>
<p>Here's the example of my old "singleton" approach:</p>
<pre><code>var singleton = function(){
if (typeof arguments.callee.__instance__ == 'undefined') {
arguments.callee.__instance__ = new function(){
//this creates a random private variable.
//this could be a complicated calculation or DOM traversing that takes long
//or anything that needs to be "cached"
var rnd = Math.random();
//just a "public" function showing the private variable value
this.smth = function(){ alert('it is an object with a rand num=' + rnd); };
};
}
return arguments.callee.__instance__;
};
var a = new singleton;
var b = new singleton;
a.smth();
b.smth();
</code></pre>
<p>As you may see, in both cases the constructor is run only once.</p>
<p>For example, I used this approach back in 2004 when I had to
create a modal dialog box with a gray background that
covered the whole page (something like <a href="http://en.wikipedia.org/wiki/Lightbox%5F%28JavaScript%29" rel="nofollow">Lightbox</a>). Internet
Explorer 5.5 and 6 have the highest stacking context for
<select> or <iframe> elements due to their
"windowed" nature; so if the page contained select elements,
the only way to cover them was to create an iframe and
position it "on top" of the page. So the whole script was
quite complex and a little bit slow (it used filter:
expressions to set opacity for the covering iframe). The
"shim" script had only one ".show()" method, which created
the shim only once and cached it in the static variable :)</p>
http://stackoverflow.com/questions/178530/php-pdo-and-sql-server-connection-and-i18n-issues3PHP/PDO and SQL Server connection and i18n issuesVitaly Sharovatov2008-10-07T13:50:32Z2009-08-12T02:02:42Z
<p>In our web-app we use PHP5.2.6 + PDO to connect to a SQL Server 2005 database and store Russian texts.</p>
<p>Database collation is <code>Cyrillic_General_CI_AS</code>, table collation is <code>Cyrillic_General_CI_AS</code>, column type is <code>NVARCHAR(MAX)</code>.</p>
<p>We tried connecting to a database using two following schemes, both causing different problems.</p>
<ol>
<li><p><em>PDO mssql:</em></p>
<pre><code>$dbh = new PDO ('mssql:host='.$mssql_server.';dbname='.$mssql_db, $mssql_login, $mssql_pwd);
</code></pre>
<p>in which case a result of a simple query like that:</p>
<pre><code>SELECT field1 FROM tbl1 WHERE id=1
</code></pre>
<p>shows <code>field1</code> data truncated to 255 bytes.</p></li>
<li><p><em>PDO odbc:</em> </p>
<pre><code>$dbh = new PDO ('odbc:DSN=myDSN;UID='.$mssql_login.';PWD='.$mssql_pwd);
</code></pre>
<p>in which case a result of the same query shows full not truncated data but with question marks instead of Russian symbols. </p></li>
</ol>
<p><hr /></p>
<p>Notes:</p>
<ul>
<li>In the SQL Management Studio data is not truncated and Russian symbols are displayed properly as well.</li>
<li>We have Windows 2003 Enterprise Edition SP2</li>
</ul>
<p>So what should we choose as a connection method and how to fix corresponding issues?</p>
http://stackoverflow.com/questions/151994/clone-a-disk-to-virtual-pc2clone a disk to virtual PC [closed]Vitaly Sharovatov2008-09-30T06:45:01Z2009-03-08T06:48:44Z
<p>What's the best way to clone a disk with Windows 2003 to a Virtual PC? </p>
<p>We have a running Windows 2003 server with Exchange Server on it. I want to test backup software for the Exchange Server but I'm afraid to do it on the live server. That's why I want to take an image of the Windows partition and run it in Virtual PC on my machine. </p>
<p>If it's possible, what's the best way to do it?</p>
http://stackoverflow.com/questions/157271/whats-the-difference-between-rapidssl-and-geotrust-certificates2What's the difference between rapidSSL and geotrust certificates?Vitaly Sharovatov2008-10-01T12:02:17Z2008-10-09T11:43:07Z
<p>I want to buy a 128bit SSL certificate for a website selling services. I checked <a href="http://www.rapidssl.com/ssl-certificate-products/ssl-certificate.htm" rel="nofollow">http://www.rapidssl.com/ssl-certificate-products/ssl-certificate.htm</a> and <a href="http://www.geotrust.com/ssl/compare-ssl-certificates.html" rel="nofollow">http://www.geotrust.com/ssl/compare-ssl-certificates.html</a>. Why are the prices for QuickSSL (Geotrust, $249) and RapidSSL (rapidSSL, $69) so different? Is there any particular reason for this or it's just marketing?</p>
<p>RapidSSL says the following: </p>
<blockquote>
<p>However it is our opinion that sites conducting more than 50 transactions will require a Professional Level SSL certificate due to the increased likelihood that the website's customers will expect SSL from a highly credible and established SSL provider and well
known internationally accepted SSL brand.</p>
</blockquote>
<p>(by "professional level SSL" they mean Geotrust certs)</p>
<p>P.S. will users really pay attention to the SSL issuing authority brand name?</p>
http://stackoverflow.com/questions/68312/does-anyone-have-a-good-resource-for-mobile-css-templates-that-work-on-most-phone/73101#731011Answer by Vitaly Sharovatov for Does anyone have a good resource for mobile CSS templates that work on most phones/devices?Vitaly Sharovatov2008-09-16T14:44:00Z2008-09-16T14:44:00Z<p>I've got a PSP, it has a browser that's based on WebKit (also Google Chrome and Safari use WebKit engine), so pretty any site that works fine on Safari/Chrome will work fine on PSP. However, PSP has a 480×272 resolution so if you want to target PSP platform, you have to keep this small resolution in mind. </p>
<p>You will probably find these resources interesting:</p>
<ol>
<li>IEMobile Blog - <a href="http://www.microsoft.com/windowsmobile/en-us/downloads/microsoft/internet-explorer-mobile.mspx" rel="nofollow">http://www.microsoft.com/windowsmobile/en-us/downloads/microsoft/internet-explorer-mobile.mspx</a></li>
<li>Web design for the Sony PSP - <a href="http://www.brothercake.com/site/resources/reference/psp/" rel="nofollow">http://www.brothercake.com/site/resources/reference/psp/</a></li>
<li>Web-development for iPhone - <a href="http://www.evotech.net/blog/2007/07/web-development-for-the-iphone/" rel="nofollow">http://www.evotech.net/blog/2007/07/web-development-for-the-iphone/</a></li>
</ol>
<p>So generally if you want to target mobile devices, you will have to make sure your eCommerce website works fine in small resolutions, it doesn't use activeX (since it won't work on iPhone Safari, Opera Mini and PSP browser) etc. Just keep it simple :)</p>
http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/71251#7125110Answer by Vitaly Sharovatov for How to remove Firefox's dotted outline on BUTTONS as well as links?Vitaly Sharovatov2008-09-16T11:06:36Z2008-09-16T11:06:36Z<p>There's no way to remove these dotted focus in Firefox using CSS.</p>
<p>If you have access to the computers where your webapplication works, go to about:config in Firefox and set browser.display.focus_ring_width to 0. Then Firefox won't show any dotted borders at all.</p>
<p>The following bug explains the topic: https://bugzilla.mozilla.org/show_bug.cgi?id=74225</p>
http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div/69803#698030Answer by Vitaly Sharovatov for JavaScript to scroll long page to DIVVitaly Sharovatov2008-09-16T06:27:25Z2008-09-16T06:27:25Z<p>Correct me if I'm wrong but I'm reading the question again and again and still think that Angus McCoteup was asking how to set an element to be position: fixed. </p>
<p>Angus McCoteup, check out <a href="http://www.cssplay.co.uk/layouts/fixed.html" rel="nofollow">http://www.cssplay.co.uk/layouts/fixed.html</a> - if you want your DIV to behave like a menu there, have a look at a CSS there</p>
http://stackoverflow.com/questions/63011/valid-javascript-endless-loop/64762#647620Answer by Vitaly Sharovatov for valid javascript endless loopVitaly Sharovatov2008-09-15T17:07:27Z2008-09-15T17:07:27Z<p>Thevs, browsers will prompt you if <em>any</em> operation is taking too long. Your loop is not an exclusion. The only way is to use setInterval/setTimeout (as it has been already noted).</p>
http://stackoverflow.com/questions/63743/innerhtml-manipulation-in-javascript/64740#647400Answer by Vitaly Sharovatov for innerHTML manipulation in JavaScriptVitaly Sharovatov2008-09-15T17:04:16Z2008-09-15T17:04:16Z<p>I would try doing container.innerHTML = ''; container.innerHTML = content; </p>
http://stackoverflow.com/questions/60590/best-way-to-initiate-a-download/62495#624950Answer by Vitaly Sharovatov for Best way to initiate a download?Vitaly Sharovatov2008-09-15T12:49:01Z2008-09-15T12:49:01Z<p>Just to summarise, you have 2 goals: </p>
<ol>
<li>start download process</li>
<li>show user a page with a donate options</li>
</ol>
<p>To achieve this I would do the following:</p>
<p>When your user submits the form, he gets the resulting page with a donate options and a text saying that his download will start in 5 seconds. And in the head section of this page you put the META code as Soldarnal said:
<meta http-equiv="refresh" content="5;url=/download.php?doc=123.zip></p>
<p>And that's all.</p>
http://stackoverflow.com/questions/61655/are-there-any-javascript-live-syntax-highlighters/62411#624110Answer by Vitaly Sharovatov for Are there any JavaScript live syntax highlighters?Vitaly Sharovatov2008-09-15T12:40:22Z2008-09-15T12:40:22Z<p>You can also try <a href="http://softwaremaniacs.org/soft/highlight/en/" rel="nofollow">http://softwaremaniacs.org/soft/highlight/en/</a> - it's fast, it supports not only javascript but many other languages. And if you need a live preview of how the highlighting will work, you can use setInterval to run the highlighting and show it in a separate box.</p>
http://stackoverflow.com/questions/61470/which-text-editor-has-the-most-useful-autocomplete-for-web-page-editing/62393#623931Answer by Vitaly Sharovatov for Which text editor has the most useful autocomplete for web page editing?Vitaly Sharovatov2008-09-15T12:36:29Z2008-09-15T12:36:29Z<p>I tried many editors and I prefer MS Visual Studio 2005. On my machine it runs much faster than Eclipse and supports autocomplete for both html, css and javascript. There are free versions (e.g. Visual Web Developer - <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">http://www.microsoft.com/express/vwd/</a>) and it's really worthy to give a try. </p>
http://stackoverflow.com/questions/178530/php-pdo-and-sql-server-connection-and-i18n-issues/178581#178581Comment by Vitaly Sharovatov on PHP/PDO and SQL Server connection and i18n issuesVitaly Sharovatov2008-10-08T06:15:40Z2008-10-08T06:15:40ZThanks for your reply, but the problem is definetely in PHP/PDO - because when we connect to the same database in .NET, everything works fine. http://stackoverflow.com/questions/157271/whats-the-difference-between-rapidssl-and-geotrust-certificates/157378#157378Comment by Vitaly Sharovatov on What's the difference between rapidSSL and geotrust certificates?Vitaly Sharovatov2008-10-01T13:03:13Z2008-10-01T13:03:13Zthanks for the detailed and good answer!http://stackoverflow.com/questions/157271/whats-the-difference-between-rapidssl-and-geotrust-certificates/157289#157289Comment by Vitaly Sharovatov on What's the difference between rapidSSL and geotrust certificates?Vitaly Sharovatov2008-10-01T13:02:34Z2008-10-01T13:02:34Zthanks a lot for your reply, I was also thinking that clients wouldn't even check who issued the certificate if their browsers trust the CA.http://stackoverflow.com/questions/7937/solve-the-ie-select-overlap-bug/13197#13197Comment by Vitaly Sharovatov on Solve the IE select overlap bugVitaly Sharovatov2008-10-01T12:24:00Z2008-10-01T12:24:00Zand there may also be issues with the SRC of the iframe, please have a look here: <a href="http://weblogs.asp.net/bleroy/archive/2005/08/09/how-to-put-a-div-over-a-select-in-ie.aspx" rel="nofollow">weblogs.asp.net/bleroy/archive/…</a>http://stackoverflow.com/questions/7937/solve-the-ie-select-overlap-bug/13197#13197Comment by Vitaly Sharovatov on Solve the IE select overlap bugVitaly Sharovatov2008-10-01T12:19:32Z2008-10-01T12:19:32Zcorrect, that's the best way, all windowed controls in IE 5.5 and 6.0 have higher z-index than anything on the page, therefore you can only cover one such control with another. Iframe is the best option since it can be transparent. <a href="http://www.dotnetjunkies.com/WebLog/jking/archive/category/28.aspx" rel="nofollow">dotnetjunkies.com/WebLog/jking/…</a>http://stackoverflow.com/questions/151994/clone-a-disk-to-virtual-pc/152004#152004Comment by Vitaly Sharovatov on clone a disk to virtual PCVitaly Sharovatov2008-09-30T07:10:10Z2008-09-30T07:10:10ZThanks for your answer, but I'm afraid it's gonna be easier for me to use windows-based solutions (as like Aleksander proposed) since I never had any experience with Linux.http://stackoverflow.com/questions/151994/clone-a-disk-to-virtual-pc/152002#152002Comment by Vitaly Sharovatov on clone a disk to virtual PCVitaly Sharovatov2008-09-30T07:07:34Z2008-09-30T07:07:34ZThanks a lot, I'm familiar with Windows systems and this seems to be the simplest solution!