User Kishork - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T18:39:19Zhttp://stackoverflow.com/feeds/user/4718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not1DB: To use identity column or not?Kishork2008-10-09T08:14:42Z2009-11-23T10:37:24Z
<p>While designing a table my colleague here says that I should avoid identity column as it is specific to SQL Server and MS Access, But I differ with his views as it makes my coding simpler. </p>
<p>Should I use identity column or not? If not what is best way to create the identity columns from application code?</p>
http://stackoverflow.com/questions/114068/best-javascript-calendar-control3Best JavaScript Calendar controlKishork2008-09-22T09:57:09Z2009-09-18T04:29:06Z
<p>Is their any JavaScript Calendar control which can handle the difference Date Time Formats easily? </p>
http://stackoverflow.com/questions/1169345/net-micro-framework-tutorials/1170944#11709442Answer by Kishork for .NET Micro Framework Tutorials?Kishork2009-07-23T10:42:59Z2009-07-23T10:42:59Z<p>Check Scott's Hanselminutes Session at <a href="http://www.hanselman.com/blog/HanselminutesOn9TheNETMicroFrameworkWithColinMiller.aspx" rel="nofollow">http://www.hanselman.com/blog/HanselminutesOn9TheNETMicroFrameworkWithColinMiller.aspx</a></p>
http://stackoverflow.com/questions/1120259/right-click-in-silverlight-3-out-of-browser/1143492#11434920Answer by Kishork for Right click in Silverlight 3 out of browserKishork2009-07-17T14:03:57Z2009-07-17T14:03:57Z<p>Does <a href="http://www.sharpgis.net/post/2009/05/09/Adding-rightclick-to-Silverlight.aspx" rel="nofollow">http://www.sharpgis.net/post/2009/05/09/Adding-rightclick-to-Silverlight.aspx</a> help you?</p>
<p>Also check <a href="http://silverlight.pastebin.com/f5a2e59cd" rel="nofollow">http://silverlight.pastebin.com/f5a2e59cd</a></p>
http://stackoverflow.com/questions/1143286/can-parameter-be-greyed-out-in-ssrs-2005/1143342#11433420Answer by Kishork for Can parameter be greyed out in SSRS 2005?Kishork2009-07-17T13:39:24Z2009-07-17T13:39:24Z<p>Does this post help you <a href="http://odetocode.com/Blogs/scott/archive/2004/12/12/720.aspx" rel="nofollow">http://odetocode.com/Blogs/scott/archive/2004/12/12/720.aspx</a> ?</p>
http://stackoverflow.com/questions/1143114/getting-local-ip-address-in-delphi/1143167#11431673Answer by Kishork for Getting local IP address in DelphiKishork2009-07-17T13:09:58Z2009-07-17T13:09:58Z<p>From: <a href="http://www.scalabium.com/faq/dct0037.htm" rel="nofollow">http://www.scalabium.com/faq/dct0037.htm</a></p>
<pre><code>Function GetIPAddress():String;
type
pu_long = ^u_long;
var
varTWSAData : TWSAData;
varPHostEnt : PHostEnt;
varTInAddr : TInAddr;
namebuf : Array[0..255] of char;
begin
If WSAStartup($101,varTWSAData) <> 0 Then
Result := 'No. IP Address'
Else Begin
gethostname(namebuf,sizeof(namebuf));
varPHostEnt := gethostbyname(namebuf);
varTInAddr.S_addr := u_long(pu_long(varPHostEnt^.h_addr_list^)^);
Result := 'IP Address: '+inet_ntoa(varTInAddr);
End;
WSACleanup;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Label1.Caption := GetIPAddress;
end;
end.
</code></pre>
<p>Inlcudes:</p>
<p>uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Winsock;</p>
http://stackoverflow.com/questions/339671/should-new-programmers-learn-asp-first-or-asp-net8Should new programmers learn ASP first or ASP.Net?Kishork2008-12-04T05:48:25Z2009-07-17T08:45:10Z
<p>My colleague here argues that new programmers must learn ASP first, before they learn ASP.Net. </p>
<p>I seem to agree with him as most new programmers who start with ASP.Net do not understand web get, post and state management :(</p>
<p>Which is best to learn web programming Classic ASP or ASP.Net?</p>
http://stackoverflow.com/questions/999437/asp-net-tight-loop-in-presentation-layer0ASP.Net: Tight loop In presentation layerKishork2009-06-16T03:03:32Z2009-06-16T04:11:44Z
<p>For a single web request, We fetch more than 1000 rows of data from an <em>external system</em> and we need to re-format the data into much better presentation format before we display it to the end user on the web page. </p>
<p>When we loop through the data in ASPX pages, it is creating a hard loop (or tight loop?) which is consuming more than 95% of the CPU. </p>
<p>How do we avoid CPU spikes and also have the process completed as fast as possible? TIA</p>
http://stackoverflow.com/questions/973911/compare-and-evaluate-cots-products0Compare and Evaluate COTS ProductsKishork2009-06-10T06:02:02Z2009-06-10T06:02:02Z
<p>Hi, </p>
<p>I have been tasked to compare more than 5 insurance products technically and make a recommendation; I am wondering what are my options to compare these products?</p>
<p>As of now now I have created a simple excel with </p>
<p>(1) Criteria (Captured during requirements gathering)<br />
(2) Weight (1-10)<br />
(3) Product 1 Rating (0-4)<br />
(4) Product 1 Score (=Rating * Weight)<br />
...<br />
(n-1) Product N Rating (0-4)<br />
(n) Product N Score (=Rating * Weight) </p>
<p>Please let me know if there are any better ways of comparing products?</p>
http://stackoverflow.com/questions/806621/loading-html-fragments-asynchronous-in-a-web-page-that-is-generated-using-xslt0Loading HTML fragments asynchronous in a web page that is generated using XSLT & XMLKishork2009-04-30T12:17:19Z2009-05-20T19:11:13Z
<p>Technology: Dot Net, ASP.Net</p>
<ul>
<li><p>We have articles stored in XML repository and article contains multiple sections. </p></li>
<li><p>These XML files are transformed to HTML using XSLT for browser rendering.</p></li>
<li><p>New requirement is to allow users to comment on each section (not on the article!) and when the article is shown we also show the comments (but based his role/rights and in a collapsible/expandable widget)</p></li>
<li><p>Since comments are not directly related to article and also the same article can be shown in multiple sites; we will not be able to store comments along with article XML.</p></li>
<li><p>We plan to solve this by storing comments in a separate database with references and when transforming article XML using XSLT we will embedded a URLs to the comments in the generated html.</p></li>
<li><p>When user clicks on the comments widget, we use the embedded URL to fetch the comments using Asynchronous calls from the web server and show it in the expanded div area</p></li>
</ul>
<p>This sounds very complex to us and not sure if this will work.</p>
<p>Please let me know if this can be archived? or suggest a better way to archive this. THX</p>
http://stackoverflow.com/questions/90075/how-to-compare-two-word-documents3How to compare two word documents?Kishork2008-09-18T04:40:10Z2009-05-06T13:23:23Z
<p>Businesses Analyst from my team keeps sending us the updated Requirements documents often and I end up hunting the recent changes by comparing the old version. Is their a good way of comparing the Word documents? </p>
<p>Note: We have the track changes option ON, but now the documents looks like a blood bath, complicating it much more :(</p>
http://stackoverflow.com/questions/377058/days-unavailable2Days UnavailableKishork2008-12-18T06:35:45Z2008-12-18T07:38:43Z
<p>I need a simple SQL to accomplish the below:</p>
<p>Problem:</p>
<p>When a petrol bunk runs out of fuel, the admin makes note of the DateTime (RunOutDate) when it ran out of fuel and notes also the DateTime (ResupplyDate) when the fuel supply was back on.</p>
<p>I need to create a report on how many <em>days</em> the bunk ran out of fuel.</p>
<p>eg.</p>
<p>1/1/1 10:10 to 1/1/1 10:50 should be counted as 1 </p>
<p>1/1/1 10:10 to 2/1/1 07:20 should be counted as 2 </p>
<p>1/1/1 23:55 to 2/1/1 00:10 should be counted as 2 </p>
<p>I can not bank using hours using DateDiff as 24 hours could have spanned across 2 days.</p>
<p>TIA</p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/232657#2326572Answer by Kishork for What's the next thing on your list to learn?Kishork2008-10-24T06:37:50Z2008-10-24T06:37:50Z<p>iPhone Programming !</p>
http://stackoverflow.com/questions/208183/how-do-you-make-time-to-read-technical-books/208245#2082452Answer by Kishork for How do you make time to read technical books?Kishork2008-10-16T11:57:15Z2008-10-16T11:57:15Z<p>I have a habit of reading early in the morning from my schooling days...I found it to be most distraction free :)</p>
http://stackoverflow.com/questions/200212/richly-formatted-excel-reports-in-an-asp-net-application1Richly Formatted excel reports in an ASP.Net applicationKishork2008-10-14T07:01:14Z2008-10-15T08:52:21Z
<p>How do I generate excel reports with rich formatting including charts with a ASP.Net application?</p>
<p>As per <a href="http://support.microsoft.com/kb/257757" rel="nofollow">http://support.microsoft.com/kb/257757</a> server-side automation of office is advisable and also our admin does not allow installation of office on the server</p>
<p>Customer is not ready to spend a lot on 3rd party components</p>
<p>A must requirement is to retain the formatting used by the end user already and also use ONLY excel 2003.</p>
<p>Thanks</p>
<p><strong>Update:</strong> We are using ExcelXmlWriter from <a href="http://www.carlosag.net/Tools/ExcelXmlWriter/Generator.aspx" rel="nofollow">http://www.carlosag.net/Tools/ExcelXmlWriter/Generator.aspx</a> as it was the most fit.</p>
http://stackoverflow.com/questions/122404/how-to-copy-and-paste-code-without-rich-text-formatting/132767#1327670Answer by Kishork for How to copy and paste code without rich text formatting?Kishork2008-09-25T11:41:13Z2008-09-25T11:41:13Z<p>If you are using MS Word then try ALT+E, S, U, Enter (Uses the Paste Special)</p>
http://stackoverflow.com/questions/113866/what-does-optimize-code-option-really-do-in-visual-studio/114083#1140832Answer by Kishork for What does "Optimize Code" option really do in Visual Studio?Kishork2008-09-22T10:03:04Z2008-09-22T10:03:04Z<p>From <a href="http://www.panopticoncentral.net/archive/2004/02/03/267.aspx" rel="nofollow">Paul Vick's</a> blog:</p>
<ul>
<li><p>It removes any NOP instructions that we would otherwise emit to assist in debugging. When optimizations are off (and debugging information is turned on), the compiler will emit NOP instructions for lines that don't have any actual IL associated with them but which you might want to put a breakpoint on. The most common example of something like this would be the “End If“ of an “If” statement - there's no actual IL emitted for an End If, so we don't emit a NOP the debugger won't let you set a breakpoint on it. Turning on optimizations forces the compiler not to emit the NOPs.</p></li>
<li><p>We do a simple basic block analysis of the generated IL to remove any dead code blocks. That is, we break apart each method into blocks of IL separated by branch instructions. By doing a quick analysis of how the blocks interrelate, we can identify any blocks that have no branches into them. Thus, we can figure out code blocks that will never be executed and can be omitted, making the assembly slightly smaller. We also do some minor branch optimizations at this point as well - for example, if you GoTo another GoTo statement, we just optimize the first GoTo to jump to the second GoTo's target.</p></li>
<li><p>We emit a DebuggableAttribute with IsJITOptimizerDisabled set to False. Basically, this allows the run-time JIT to optimize the code how it sees fit, including reordering and inlining code. This will produce more efficient and smaller code, but it means that trying to debug the code can be very challenging (as anyone who's tried it will tell you). The actual list of what the JIT optimizations are is something that I don't know - maybe someone like Chris Brumme will chime in at some point on this.
The long and the short of it is that the optimization switch enables optimizations that might make setting breakpoints and stepping through your code harder.</p></li>
</ul>
http://stackoverflow.com/questions/113723/simple-database-application-for-windows/114055#114055-1Answer by Kishork for Simple database application for WindowsKishork2008-09-22T09:54:14Z2008-09-22T09:54:14Z<p>Best Option would be to create a Win32 native application using <strong><a href="http://www.codegear.com/products/delphi/win32" rel="nofollow">Delphi</a></strong> and use SQLLite as the database.</p>
<p>Reason being Delphi can produce native win32 applications without any other product being installed on the machine.</p>
http://stackoverflow.com/questions/113592/getting-user-name-password-of-the-logged-in-user-in-windows/113624#1136240Answer by Kishork for Getting user name/password of the logged in user in WindowsKishork2008-09-22T07:29:43Z2008-09-22T07:29:43Z<p>Note sure how it is done, but "Network Password Recovery" tool from <a href="http://www.nirsoft.net/utils/network_password_recovery.html" rel="nofollow">http://www.nirsoft.net/utils/network_password_recovery.html</a> seems to get the password from some cache.</p>
http://stackoverflow.com/questions/90145/how-to-design-for-saving-incomplete-data-entered-by-user2How to design for saving incomplete data entered by user?Kishork2008-09-18T04:54:48Z2008-09-18T05:43:57Z
<p>We have a Dot net Win forms Application which has few Forms with more than 40 fields to fill. </p>
<p>When the User fills say 25 fields and then realizes that he needs to get some more data before he can save the information or He enter all the data but their is some Business validation error on which needs contact someone else before correcting. </p>
<p>In such scenarios, he would like to save the incomplete or Incorrect data to some temporary data storage and retrieve it later when he has the data to complete the save operation. </p>
<p>Please let me know what would be the best way to implement this? </p>
<p>He are few options we considered: </p>
<p>1) create XML blob and save on his local machine (But, user may need it from some other machine) </p>
<p>2) Create duplicate tables to store invalid data (But, I feel Invalid data should never be part of my database)</p>
http://stackoverflow.com/questions/90145/how-to-design-for-saving-incomplete-data-entered-by-user/90183#901830Answer by Kishork for How to design for saving incomplete data entered by user?Kishork2008-09-18T05:07:25Z2008-09-18T05:07:25Z<blockquote>
<blockquote>
<p>1) the incomplete data will expire
when the session expires</p>
</blockquote>
</blockquote>
<p>User wants the Incomplete data be available for his login across sessions.</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90034#900340Answer by Kishork for What is a reasonable code coverage % for unit tests (and why)?Kishork2008-09-18T04:32:14Z2008-09-18T04:32:14Z<p>We were targeting >80% till few days back, But after we used a lot of Generated code, We do not care for %age, but rather make reviewer take a call on the coverage required.</p>
http://stackoverflow.com/questions/1120259/right-click-in-silverlight-3-out-of-browser/1143492#1143492Comment by Kishork on Right click in Silverlight 3 out of browserKishork2009-11-20T11:41:54Z2009-11-20T11:41:54ZCheck out SL 4.0, They have added the right click support now :)http://stackoverflow.com/questions/1120259/right-click-in-silverlight-3-out-of-browser/1143492#1143492Comment by Kishork on Right click in Silverlight 3 out of browserKishork2009-07-23T10:25:49Z2009-07-23T10:25:49ZYes, you both are right. I guess the reason they do not support it; is to support touch screens devices or mobile phones which do not have double click or right click. If they ever want to support iPhone; then I would support them to continue without right click!http://stackoverflow.com/questions/999437/asp-net-tight-loop-in-presentation-layer/999451#999451Comment by Kishork on ASP.Net: Tight loop In presentation layerKishork2009-06-16T08:04:30Z2009-06-16T08:04:30ZThx, We are currently looking at using a caching solution. Curious as to why you say tight loop in the presentation layer is not correct, in our case the looping is to format the data into more presentable format (or which layer do tight loops go into, if one is required?)
TIA http://stackoverflow.com/questions/910093/diagramming-program-to-help-in-designing-software/910381#910381Comment by Kishork on Diagramming program to help in designing software?Kishork2009-05-29T12:37:04Z2009-05-29T12:37:04ZEnterprise Architect is awesome, specifically the feature to generate Sequence diagrams from code :)http://stackoverflow.com/questions/339671/should-new-programmers-learn-asp-first-or-asp-net/339682#339682Comment by Kishork on Should new programmers learn ASP first or ASP.Net?Kishork2008-12-05T06:50:21Z2008-12-05T06:50:21ZPhil, do you have book recommendation which cover both web development and ASP.Net MVC for new programmers?http://stackoverflow.com/questions/186369/db-to-use-identity-column-or-not/186378#186378Comment by Kishork on DB: To use identity column or not?Kishork2008-10-09T09:22:40Z2008-10-09T09:22:40ZIt is not planned as of now, However I guess it will be MS SQL server forever, unless MS will run into trouble in future.http://stackoverflow.com/questions/114068/best-javascript-calendar-control/114120#114120Comment by Kishork on Best JavaScript Calendar controlKishork2008-09-22T10:18:57Z2008-09-22T10:18:57ZThank you, I'm looking into it as of now :)