User Sergey Kornilov - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:56:28Zhttp://stackoverflow.com/feeds/user/10969http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845449/how-do-i-debug-a-500-internal-server-error-on-iis-6-0-managed-by-plesk-running-a/1898719#18987190Answer by Sergey Kornilov for How do I debug a 500 Internal Server Error on IIS 6.0 managed by Plesk (running ASP classic)?Sergey Kornilov2009-12-14T03:13:35Z2009-12-14T03:13:35Z<p>The following applies to Plesk only.</p>
<p>Proceed to your domain in Plesk control panel and turn off "Custom Error Documents" under "Physical hosting setup". This will send error message directly to the browser. </p>
<p>You can also find error messages in log file directory <code>yourdomain.com\statistics\logs\W3SVCXXXX</code></p>
http://stackoverflow.com/questions/1674222/error-using-excel-odbc-driver-in-classic-asp/1674337#16743370Answer by Sergey Kornilov for Error using excel ODBC driver in classic aspSergey Kornilov2009-11-04T14:59:22Z2009-11-04T14:59:22Z<p>As a first step use forward slashes in MapPath i.e. /Resources/uploads/filername.XLS</p>
<p>Then verify path is correct.</p>
<p>Try the following to see if it points to the right file:</p>
<pre><code>Response.Write server.MapPath("/Resources/uploads/filername.XLS")
</code></pre>
http://stackoverflow.com/questions/1670047/automatically-transfer-blog-post-rss-in-facebook-twitter/1670072#16700720Answer by Sergey Kornilov for Automatically transfer Blog post (rss) in Facebook, Twitter...Sergey Kornilov2009-11-03T20:53:40Z2009-11-03T20:53:40Z<p>Check TweetMiner that does the job for <a href="http://tweetminer.net/" rel="nofollow">Twitter</a>. </p>
http://stackoverflow.com/questions/1665214/version-control-for-non-programmers/1665292#16652920Answer by Sergey Kornilov for Version Control for non-programmersSergey Kornilov2009-11-03T04:41:02Z2009-11-03T04:41:02Z<p>I recommend to check <a href="http://www.neveroverwrite.com/" rel="nofollow">NeverOverwrite</a>.</p>
<p>It keeps all versions of your files automatically. Sounds like an an ideal solution for non-developer. </p>
http://stackoverflow.com/questions/1632406/where-else-can-ms-access-get-a-dsn/1648236#16482360Answer by Sergey Kornilov for Where else can MS Access get a DSN?Sergey Kornilov2009-10-30T05:59:08Z2009-10-30T05:59:08Z<p>Apparently MS Access stores the whole connection string, not just DSN name. Here is what I see opening .mdb file in Notepad:</p>
<pre><code>DSN=SQL-Northwind;APP=Microsoft Office 2003;WSID=DELLNOTEBOOK;DATABASE=Northwind;Network=DBMSSOCN;Address=LOCALHOST;Trusted_Connection=Yes
</code></pre>
<p>MS Access comes with Linked Table Manager however it won't update DSN once it's changed (at least not for me). </p>
<p>I guess your only choice is to delete a link and create a new one.</p>
http://stackoverflow.com/questions/1644930/merge-msaccess-tables/1648036#16480360Answer by Sergey Kornilov for merge msaccess tablesSergey Kornilov2009-10-30T04:43:34Z2009-10-30T04:43:34Z<p>If this is a one time operation simple copy-n-paste will work.</p>
<p>Open both databases in MS Access. Open both tables. Select values to copy (right-click on Column header and Ctrl+C). </p>
<p>Proceed to target table. Make Name field selected in the last row (new record). For this purpose mouse over Name column left edge (cursor becomes a plus sign) and click to select the cell. Ctrl+V. Done.</p>
http://stackoverflow.com/questions/924081/free-swf-obfuscator/1415945#14159450Answer by Sergey Kornilov for Free SWF ObfuscatorSergey Kornilov2009-09-12T19:44:59Z2009-09-12T19:44:59Z<p><a href="http://tech.motion-twin.com/obfu.html" rel="nofollow">OBFU</a> - 1500 euros!</p>
<p><a href="http://www.amayeta.com/shop/" rel="nofollow">Amayeta SWF Encrypt Pro 5.0</a> - $125 USD. <a href="http://www.asvguy.com/2007/02/swf%5Fencrypt%5Fswc.html" rel="nofollow">gets "bypassed" too</a></p>
<p><a href="http://www.kindisoft.com/secureSWF/" rel="nofollow">SecureSWF</a> - Looks like the most promising right now.</p>
<p><a href="http://www.bestflashanimationsite.com/resources/decompilers/" rel="nofollow">A list of decompilers and obfuscators</a></p>
<p>Found at <a href="http://www.balsamiq.com/blog/2008/10/19/my-views-on-software-piracy/" rel="nofollow">http://www.balsamiq.com/blog/2008/10/19/my-views-on-software-piracy/</a></p>
http://stackoverflow.com/questions/275037/is-it-safe-and-acceptable-to-install-vs-net-on-your-production-server/275058#2750582Answer by Sergey Kornilov for Is it safe and acceptable to install VS.NET on your production server?Sergey Kornilov2008-11-08T19:05:43Z2008-11-08T19:05:43Z<p>The recommended way is to have a mirror of production server for testing/debugging purposes. To keep the mirror current you need to install all application updates on both servers at the same time and backup/restore production database on mirror nightly or on demand.</p>
<p>There are still some downsides like error that only happens under a heavy load. In this case you need some kind of logging to trace errors. Also you might need to purchase an additional license of third-party components to install on production mirror. </p>
http://stackoverflow.com/questions/261004/accessing-sql-on-a-different-port-number-classic-asp-connection-string/261077#2610770Answer by Sergey Kornilov for Accessing SQL on a different port number (classic ASP connection string)Sergey Kornilov2008-11-04T06:33:12Z2008-11-04T06:33:12Z<pre><code>cst = "Provider=SQLOLEDB;" & _
"Data Source=<x.x.x.x>,<port number>;" & _
"Initial Catalog=<dbname>;" & _
"Network=DBMSSOCN;" & _
"User Id=<uid>;" & _
"Password=<pwd>"
set conn = CreateObject("ADODB.Connection")
conn.open cst
</code></pre>
<p><a href="http://sqlserver2000.databases.aspfaq.com/how-do-i-connect-to-sql-server-on-a-port-other-than-1433.html" rel="nofollow">More info</a></p>
http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php/189894#1898943Answer by Sergey Kornilov for Reading/Writing a MS Word file in PHPSergey Kornilov2008-10-10T02:17:08Z2008-10-10T15:18:33Z<p>Most probably you won't be able to read Word documents without COM.</p>
<p>Writing was covered in this <a href="http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux">topic</a></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185803#185803540Answer by Sergey Kornilov for What is the best comment in source code you have ever encountered?Sergey Kornilov2008-10-09T03:12:39Z2008-10-09T03:12:39Z<pre><code>// sometimes I believe compiler ignores all my comments
</code></pre>
http://stackoverflow.com/questions/175507/c-c-web-server-library/175789#1757890Answer by Sergey Kornilov for C/C++ Web Server Library?Sergey Kornilov2008-10-06T19:24:35Z2008-10-06T19:24:35Z<p>You may want to check <a href="http://www.pablosoftwaresolutions.com/html/baby_web_server.html" rel="nofollow">Baby Web Server</a></p>
http://stackoverflow.com/questions/170466/what-is-the-simplest-most-maintainable-way-to-create-a-sql-server-odbc-data-sour/170495#1704954Answer by Sergey Kornilov for What is the simplest, most maintainable way to create a SQL Server ODBC Data Source?Sergey Kornilov2008-10-04T15:15:21Z2008-10-05T01:01:27Z<p>SQLConfigDataSource() does the job.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ck4z6wwt.aspx?ppud=4" rel="nofollow">MSDN article</a></p>
<p>Just in case here is a VB6 example:</p>
<pre><code>Const ODBC_ADD_DSN = 1 'user data source
Const ODBC_ADD_SYS_DSN = 4 'system data source
Private Declare Function SQLConfigDataSource Lib "ODBCCP32.DLL" (ByVal
hwndParent As Long, ByVal fRequest As Long, ByVal lpszDriver As String, ByVal
lpszAttributes As String) As Long
strDriver = "SQL Server"
strAttributes = "DSN=Sample" & Chr$(0) _
& "Database=Northwind" & Chr$(0) _
& "Description= Sample Data Source" & Chr$(0) _
& "Server=(local)" & Chr$(0) _
& "Trusted_Connection=No" & Chr$(0)
SQLConfigDataSource(0, ODBC_ADD_SYS_DSN, strDriver, strAttributes)
</code></pre>
http://stackoverflow.com/questions/144583/windows-c-dialog-resizer-class/144945#1449450Answer by Sergey Kornilov for Windows C++ dialog resizer classSergey Kornilov2008-09-28T01:29:01Z2008-09-28T01:29:01Z<p>We use CResize class from CodeGuru to resize all controls automatically. You tell how you want each control to be resized and it does the job for you.</p>
<p>The resize paradigm is to specify how much each side of a control will move when the dialog is resized.</p>
<pre><code>SetResize(IDC_EDIT1, 0, 0, 0.5, 1);
SetResize(IDC_EDIT2, 0.5, 0, 1, 1);
</code></pre>
<p>Very handy when you have a large number of dialog controls. </p>
<p><a href="http://www.codeguru.com/cpp/w-d/dislog/resizabledialogs/article.php/c1925/" rel="nofollow">Source code</a></p>
http://stackoverflow.com/questions/135946/i18n-able-way-to-get-number-ordinal-in-c-mfc-on-windows-1-1st-2-2nd-etc/137808#137808-1Answer by Sergey Kornilov for i18n-able way to get number ordinal in C++/MFC on Windows? (1->1st, 2->2nd, etc.)Sergey Kornilov2008-09-26T04:41:39Z2008-09-26T04:41:39Z<p><a href="http://www.codeproject.com/KB/cpp/number_to_text_converter.aspx" rel="nofollow">Here</a> is the piece of code on CodeProject that does the job. Haven't tried it on my own.</p>
http://stackoverflow.com/questions/127514/resizing-controls-in-mfc/130069#1300690Answer by Sergey Kornilov for Resizing Controls in MFCSergey Kornilov2008-09-24T21:23:25Z2008-09-24T21:23:25Z<p>I use CResize class from CodeGuru to resize all controls automatically. You tell how you want each control to be resized and it does the job for you.</p>
<p>The resize paradigm is to specify how much each side of a control will move when the dialog is resized.</p>
<pre><code>SetResize(IDC_EDIT1, 0, 0, 0.5, 1);
SetResize(IDC_EDIT2, 0.5, 0, 1, 1);
</code></pre>
<p>Very handy when you have a large number of dialog controls. </p>
<p><a href="http://www.codeguru.com/cpp/w-d/dislog/resizabledialogs/article.php/c1925/" rel="nofollow">Source code</a></p>
http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux/125009#1250096Answer by Sergey Kornilov for Create Word Document using PHP in LinuxSergey Kornilov2008-09-24T02:07:48Z2008-09-24T12:41:32Z<p>Add header and output HTML as you usually do. </p>
<pre><code>header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");
echo "<html>";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">";
echo "<body>";
echo "<b>My first document</b>";
echo "</body>";
echo "</html>";
</code></pre>
<p>Make sure you don't use external stylesheets. Everything should be in the same file.</p>
<p>If you need to produce "real" Word documents you need a Windows-based web server and COM automation. I highly recommend <a href="http://www.joelonsoftware.com/items/2008/02/19.html" rel="nofollow">Joel's article</a> on this subject.</p>
http://stackoverflow.com/questions/118547/creating-a-zip-file-on-windows-xp-2003-in-c-c/118943#1189433Answer by Sergey Kornilov for Creating a ZIP file on Windows (XP/2003) in C/C++ Sergey Kornilov2008-09-23T03:26:56Z2008-09-23T03:26:56Z<p>We use XZip for this purpose. It's free, comes as C++ source code and works nicely. </p>
<p><a href="http://www.codeproject.com/KB/cpp/xzipunzip.aspx" rel="nofollow">http://www.codeproject.com/KB/cpp/xzipunzip.aspx</a></p>
http://stackoverflow.com/questions/112169/google-chrome-broke-shellexecute/112213#1122133Answer by Sergey Kornilov for Google Chrome broke ShellExecute() ?Sergey Kornilov2008-09-21T21:17:31Z2008-09-21T21:17:31Z<p>Here is the code that works across all browsers. The trick is to call WinExec if ShellExecute fails.</p>
<pre><code>HINSTANCE GotoURL(LPCTSTR url, int showcmd)
{
TCHAR key[MAX_PATH + MAX_PATH];
// First try ShellExecute()
HINSTANCE result = 0;
CString strURL = url;
if ( strURL.Find(".htm") <0 && strURL.Find("http") <0 )
result = ShellExecute(NULL, _T("open"), url, NULL, NULL, showcmd);
// If it failed, get the .htm regkey and lookup the program
if ((UINT)result <= HINSTANCE_ERROR) {
if (GetRegKey(HKEY_CLASSES_ROOT, _T(".htm"), key) == ERROR_SUCCESS) {
lstrcat(key, _T("\\shell\\open\\command"));
if (GetRegKey(HKEY_CLASSES_ROOT,key,key) == ERROR_SUCCESS) {
TCHAR *pos;
pos = _tcsstr(key, _T("\"%1\""));
if (pos == NULL) { // No quotes found
pos = strstr(key, _T("%1")); // Check for %1, without quotes
if (pos == NULL) // No parameter at all...
pos = key+lstrlen(key)-1;
else
*pos = '\0'; // Remove the parameter
}
else
*pos = '\0'; // Remove the parameter
lstrcat(pos, _T(" \""));
lstrcat(pos, url);
lstrcat(pos, _T("\""));
result = (HINSTANCE) WinExec(key,showcmd);
}
}
}
return result;
}
</code></pre>
http://stackoverflow.com/questions/103158/iis-asp-caching/103327#1033272Answer by Sergey Kornilov for IIS ASP CachingSergey Kornilov2008-09-19T16:11:19Z2008-09-19T16:11:19Z<p>Right click on "Web sites" in IIS manager. Choose Properties->Home directory->Configuration and you'll see "Cache options" tab.</p>
<p>The trick is to click on "Web sites" as opposed to proceeding to specific web site.</p>
http://stackoverflow.com/questions/79733/best-automated-testing-tool-for-web-applications/101732#1017324Answer by Sergey Kornilov for Best automated testing tool for web applications?Sergey Kornilov2008-09-19T13:16:52Z2008-09-19T13:16:52Z<p>Check <a href="http://wtr.rubyforge.org/" rel="nofollow">Watir</a>. It's free and fun to use. It's Ruby-based browser scripting package. Requires some technical knowledge though all basic functions are self-explanatory.</p>
<p>Example:</p>
<pre><code>require 'watir'
require 'test/unit'
class TC_article_example < Test::Unit::TestCase
def test_search
ie = Watir::IE.new
ie.goto("http://www.google.com/ncr")
ie.text_field(:name, "q").set("pickaxe")
ie.button(:value, "Google Search").click
assert(ie.text.include?("Programming Ruby: The Pragmatic Programmer's Guide"))
end
end
</code></pre>
http://stackoverflow.com/questions/69128/saas-database-design-multiple-databases-split/69366#693667Answer by Sergey Kornilov for SaaS database design - Multiple Databases? Split?Sergey Kornilov2008-09-16T04:22:59Z2008-09-16T04:22:59Z<p>Start with one database. Split data/functionality when project requires it.</p>
<p>Here is what we can learn from LinkedIn:</p>
<ul>
<li>A single database does not work</li>
<li>Referential integrity will not be possible</li>
<li>Any data loss is a problem</li>
<li>Caching is good even when it's modestly effective</li>
<li>Never underestimate growth trajectory</li>
</ul>
<p>Source:</p>
<p><a href="http://www.slideshare.net/linkedin/linkedins-communication-architecture" rel="nofollow">LinkedIn architecture</a></p>
<p><a href="http://www.slideshare.net/linkedin/linked-in-javaone-2008-tech-session-comm" rel="nofollow">LinkedIn communication architecture</a></p>
http://stackoverflow.com/questions/1674222/error-using-excel-odbc-driver-in-classic-aspComment by Sergey Kornilov on Error using excel ODBC driver in classic aspSergey Kornilov2009-11-04T14:49:22Z2009-11-04T14:49:22ZMost probably this is a problem with connection string. What's your connection string?http://stackoverflow.com/questions/124959/create-word-document-using-php-in-linux/125009#125009Comment by Sergey Kornilov on Create Word Document using PHP in LinuxSergey Kornilov2008-09-24T12:38:49Z2008-09-24T12:38:49ZIf you need to produce "real" Word documents you need a Windows-based web server. I highly recommend Joel's article on this subject: <a href="http://www.joelonsoftware.com/items/2008/02/19.html" rel="nofollow">joelonsoftware.com/items/2008/…</a> http://stackoverflow.com/questions/103158/iis-asp-caching/103349#103349Comment by Sergey Kornilov on IIS ASP CachingSergey Kornilov2008-09-19T20:04:32Z2008-09-19T20:04:32ZAs far as I can see this option is global. Unless there is some other trick that enables caching tab for each website or virtual directory.