User GateKiller - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:08:47Z http://stackoverflow.com/feeds/user/383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38039/how-can-i-get-the-datetime-for-the-start-of-the-week 9 How can I get the DateTime for the Start of the Week? GateKiller 2008-09-01T15:10:38Z 2009-12-02T01:59:55Z <p>How do I find the Start of the week (Both Sunday and Monday) knowing just the current time in C#.NET</p> <p>Something like:</p> <pre><code>DateTime.Now.StartWeek(Monday); </code></pre> http://stackoverflow.com/questions/77646/commodore-c64-emulator 2 Commodore C64 Emulator? GateKiller 2008-09-16T21:58:34Z 2009-12-01T19:26:31Z <p>I'm kind of feeling nostalgic and want to play on a C64 like I did when I was 10, but I don't have one to hand.</p> <p>Is there an emulator available?</p> http://stackoverflow.com/questions/2101/c-unit-testing-example 4 C# Unit Testing Example GateKiller 2008-08-05T11:29:21Z 2009-12-01T08:28:33Z <p>I've now found out <a href="http://beta.stackoverflow.com/questions/1383/#1393" rel="nofollow">what Unit Testing is</a>, does anyone have an example of Unit Testing in C#?</p> <p>The example must be simple :)</p> http://stackoverflow.com/questions/265769/maximum-filename-length-in-ntfs-xp-and-vista 5 Maximum Filename Length in NTFS (XP and Vista)? GateKiller 2008-11-05T16:39:04Z 2009-11-27T14:57:55Z <p>Quick and simple question which I need the answer to.</p> <p>I'm designing a database table which will hold filenames of uploaded files. What is the maximum length of a filename in NTFS; aka Windows XP or Vista?</p> <p>Many Thanks</p> http://stackoverflow.com/questions/1805671/how-to-implement-a-haschildren-select-statement-in-sql/1805723#1805723 2 Answer by GateKiller for How to implement a "hasChildren" SELECT statement in SQL? GateKiller 2009-11-26T21:25:35Z 2009-11-26T21:25:35Z <p>There are very valid answers to your question which will work. However, I would consider the performance of such a query if your dataset is very large.</p> <p>If your going to use a Group By or Sub Query to get the data, then make sure both the ID and Parent columns have separate indexes.</p> <p>To get even better performance, you should add a column called "haschildren" which could be a "bit" datatype. This column should then be updated from your application code when items are Inserted or Deleted. This would allow you to run the much quicker query:</p> <pre><code>SELECT * FROM table WHERE haschildren IS NOT NULL </code></pre> http://stackoverflow.com/questions/153445/how-to-track-system-dependencies 7 How to track System Dependencies? GateKiller 2008-09-30T15:01:09Z 2009-11-19T20:51:48Z <p><strong>Introduction</strong></p> <p>In my current organisation, we have many desktop and web applications all feeding into each other at some point. When looking after older applications or creating new applications, it's proving very difficult to try and remember which system rely on other systems in order to work. I'm not talking about software dependencies like DLL's and images, I'm talking about entire systems like a Finance system dependant on the HR system etc.</p> <p><strong>My Question</strong></p> <p>Which is the one best way to track how one entire system is dependant on another?</p> <p><sub>The answer can suggest either a method of doing the above, a software package or documentation techniques.</sub></p> <p><sub>In my particular case, <em>Many</em> means over 20 web and desktop application over a dozen servers.</sub></p> http://stackoverflow.com/questions/39855/embed-powerpoint-into-html 1 Embed Powerpoint into HTML GateKiller 2008-09-02T15:50:10Z 2009-11-07T22:57:29Z <p>Is it possible to embed a powerpoint presentation (ppt) into a webpage (xhtml)?</p> <p>This will be used on a local Intranet where there is a mix of IE6 and 7 only so no need to consider other browsers.</p> http://stackoverflow.com/questions/492220/sql-server-2008-backup-compression-standard-edition 2 SQL Server 2008 Backup Compression Standard Edition GateKiller 2009-01-29T16:00:52Z 2009-11-01T23:11:13Z <p>I'm trying to backup a database in SQL Server 2008 and have the database compressed using the new compression feature. However, when I run the following code, I get a weird error message:</p> <pre><code>Backup Database &lt;Database&gt; To Disk 'C:\Backup' With Compression </code></pre> <p>I get this error message:</p> <blockquote> <p>Backup Database With Compression is not supported on Standard Edition</p> </blockquote> <p>Does this mean I have to upgrade to the full version or is there a way to enable compression in standard edition?</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite 28 How Scalable is SQLite? GateKiller 2008-09-10T18:47:58Z 2009-10-31T11:33:32Z <p>I recently read this Question about <a href="http://stackoverflow.com/questions/3630/sqlite-vs-mysql">SQLite vs MySQL</a> and the answer pointed out that SQLite doesn't scale well and the official website <a href="http://www.sqlite.org/whentouse.html" rel="nofollow">sort-of confirms this</a>, however.</p> <p>How scalable is SQLite and what are its upper most limits?</p> http://stackoverflow.com/questions/1612861/double-if-else-problem-in-c 2 Double If Else Problem in C# GateKiller 2009-10-23T11:36:40Z 2009-10-23T14:01:29Z <p>I constantly find myself writing similar code like the example below:</p> <pre><code>if (object["Object Name"] != null) { if (object["Object Name"] == "Some Value") { // Do Statement A } else { // Do Statement B } } else { // Do Statement B } </code></pre> <p>The problem here is that I much check if an object is null or not and then I can check it for it's actual contents.</p> <p>"Statement B" is always the same and in my case is usually a SQL statement.</p> <p>There must be a better way around this?</p> <p>Thanks<br /> Stephen</p> http://stackoverflow.com/questions/1577368/style-a-definitition-list-as-simple-key-value-set/1577390#1577390 0 Answer by GateKiller for Style a definitition list as simple key value set GateKiller 2009-10-16T10:48:22Z 2009-10-16T10:48:22Z <p>You could just float the dd to the left of the previous element like so.</p> <pre><code>dt { clear: left; } dd { float: left; } </code></pre> <p>You could also add a width attribute to either for extra alignment.</p> <pre><code>dt { clear: left; width: 20%; } dd { float: left; } </code></pre> http://stackoverflow.com/questions/43743/asp-net-mvc-performance 30 ASP.NET MVC Performance GateKiller 2008-09-04T13:20:03Z 2009-10-16T10:41:56Z <p>I found some wild remarks that ASP.NET MVC is 30x faster than ASP.NET WebForms. What real performance difference is there, has this been measured and what are the performance benefits.</p> <p>This is to help me consider moving from ASP.NET WebForms to ASP.NET MVC.</p> <p><strong><em>I wasn't around to accept the answer which I thought was best and do not feel the system accepted answer is very good. My accepted answer would have been this one:</em></strong></p> <blockquote> <p><a href="http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530946#530946">http://stackoverflow.com/questions/43743/asp-net-mvc-performance/530946#530946</a></p> </blockquote> http://stackoverflow.com/questions/8050/beginners-guide-to-linq 18 Beginners Guide to LINQ GateKiller 2008-08-11T18:19:48Z 2009-09-22T19:26:11Z <p>During the beta of Stack Overflow, I have seen quite a few questions about LINQ SQL but know nothing about it... it sounds very interesting.</p> <p><strong>What is LINQ and how do I get started?</strong></p> <p>Links guides or documentation a bonus :)</p> <p><em>PS: I am a long time C# developer who daily uses Datatables and Parameterized SQL</em></p> http://stackoverflow.com/questions/2154/asp-net-mvc-without-visual-studio 4 ASP.NET MVC Without Visual Studio GateKiller 2008-08-05T12:13:40Z 2009-09-10T14:45:59Z <p>Instead of writing my ASP.NET C# applications in Visual Studio, I used my favourite text editor UltraEdit32.</p> <p>Is there anyway I can implement MVC without the use of VS?</p> http://stackoverflow.com/questions/483656/file-extension-to-mime-type-web-service 6 File Extension to MIME Type Web Service? GateKiller 2009-01-27T14:43:45Z 2009-08-19T08:14:17Z <p>Are there any web services which will allow me to provide a file extension and it would return a list of possible MIME types? </p> <p>For example:</p> <pre><code>http://mimetype.com/getMime/doc </code></pre> <p>Which could return:</p> <pre><code>application/msword,application/docappl/text,application/vnd.msword,application/vnd.ms-word,application/winword,application/word,application/x-msw6,application/x-msword </code></pre> <p>I don't want to use <a href="http://stackoverflow.com/questions/58510/in-c-how-can-you-find-the-mime-type-of-a-file-based-on-the-file-signature-not-th">Urlmon.dll</a> and I would prefer not having to keep my own list up-to-date.</p> <p>Thanks</p> <p><strong>Update:</strong> I have started a bounty on this question because such a web service would be so useful...</p> http://stackoverflow.com/questions/4622/sql-case-statement-syntax 4 SQL Case Statement Syntax? GateKiller 2008-08-07T12:13:01Z 2009-08-10T15:26:31Z <p>What is the <em>full</em> correct syntax for the SQL Case statement?</p> http://stackoverflow.com/questions/6611/ie6-to-support-or-not-to-support/6690#6690 22 Answer by GateKiller for IE6: To support or not to support. GateKiller 2008-08-09T07:55:43Z 2009-08-10T10:28:20Z <p>I would suggest monitoring the <a href="http://www.w3counter.com/globalstats.php" rel="nofollow">W3Counter Global Web Stats</a> which are published on a monthly basis.</p> <p>As I write this, it shows that Internet Explorer 7 has the biggest market share, with IE6 coming second and Firefox 2.0 comming third.</p> <p>This clearly shows how a particular version is being adopted by the masses and will give you a very good idea when to not support a perticular version of a browser.</p> <p>EDIT:</p> <p>Stats at August 10, 2009</p> <pre><code>1 Internet Explorer 7.0 24.74% 2 Firefox 3.0 23.03% 3 Internet Explorer 6.0 15.21% 4 Internet Explorer 8.0 12.98% </code></pre> http://stackoverflow.com/questions/368858/hidden-features-of-mysql 33 Hidden Features of MySQL GateKiller 2008-12-15T16:09:58Z 2009-07-16T11:27:54Z <p>I've been working with <a href="http://www.microsoft.com/Sqlserver/" rel="nofollow">Microsoft SQL Server</a> with many years now but have only just recently started to use <a href="http://www.mysql.com/" rel="nofollow">MySQL</a> with my web applications and I'm hungry for knowledge.</p> <p>To continue with the long line of <a href="http://stackoverflow.com/questions/tagged/hidden-features">Hidden Feature questions</a>, I would like to know any hidden or handy features of MySQL which will hopefully improve my knowledge of this open source database.</p> <p>Thank you<br /> Stephen</p> http://stackoverflow.com/questions/38461/what-can-software-developers-do-to-be-more-green/38469#38469 25 Answer by GateKiller for What can software developers do to be more "green"? GateKiller 2008-09-01T21:34:39Z 2009-06-29T19:52:14Z <ul> <li>Switch off your monitor when not in use</li> <li>Switch off your computer when not in use</li> <li>Buy a <a href="http://www.oneclickpower.com/store/" rel="nofollow">OneClick gang socket</a></li> <li>Use standby or hibernate more often</li> <li>Don't use a screen saver (see bullet 1)</li> <li>Switch off your second/third/fourth screen when not in use</li> <li>Declock your GPU or processor</li> <li>Don't print stuff</li> <li>Buy more ebooks</li> <li>Get Jon Skeet to <em>null</em> your carbon footprint</li> </ul> http://stackoverflow.com/questions/433211/quickest-method-to-reverse-in-string-in-c-net 8 Quickest Method to Reverse in String in C#.net GateKiller 2009-01-11T17:02:11Z 2009-06-28T01:01:54Z <p><strong>Thank you for your entries. <a href="http://stackoverflow.com/questions/433211/quickest-method-to-reverse-in-string-in-c-net#433452">Here is my response</a>.</strong></p> <p>I'm currently writing a quick solution for Euler Problem #4 where one must find the largest palindromic number from the product of two 3-digit numbers.</p> <p>To identify if a number is palindromic, you would obviously compare a reverse of the number with the original.</p> <p><strong>Since C# doesn't have a built in String.Reverse() method, what is the quickest way to reverse a string?</strong></p> <p><em>I will be testing all the suggested solution in a loop with 100,000,000 itterations. The correct answer will be given to the person who submitted the fastest solution.</em></p> <p><em>I will be testing the solution in a C#.Net 3.5 console application</em></p> http://stackoverflow.com/questions/5794/other-browsers/5797#5797 7 Answer by GateKiller for Other browsers GateKiller 2008-08-08T10:07:32Z 2009-06-16T21:35:14Z <p>Have a look at the Wikipedia's <a href="http://en.wikipedia.org/wiki/List%5Fof%5Fweb%5Fbrowsers" rel="nofollow">List of Web Browsers</a>.</p> http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/11603#11603 11 Answer by GateKiller for What is the worst interviewee answer? GateKiller 2008-08-14T19:47:41Z 2009-06-14T04:48:38Z <p>"What's a variable?"</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c 20 Is there an easy way to create ordinals in C#? GateKiller 2008-08-21T14:55:48Z 2009-06-09T09:29:50Z <p>Is there an easy way in C# to create <a href="http://is.gd/1NvM" rel="nofollow">Ordinals</a> for a number? For example:</p> <ul> <li>1 returns 1st</li> <li>2 returns 2nd</li> <li>3 returns 3rd</li> <li>...etc</li> </ul> <p>Can this be done through <code>String.Format()</code> or are there any functions available to do this?</p> http://stackoverflow.com/questions/461742/how-to-convert-an-ipv4-address-into-a-integer-in-c 5 How to convert an IPv4 address into a integer in C#? GateKiller 2009-01-20T15:25:57Z 2009-06-06T14:12:33Z <p>I was going to attempt to write this function myself but I thought that someone on SO might know the answer :)</p> <p>I'm basically looking for a function that will convert a standard IPv4 address into an Integer. Bonus points available for a function that will do the opposite.</p> <p>Solution should be in C#.net.</p> http://stackoverflow.com/questions/2262/asp-net-url-rewriting 9 ASP.NET URL Rewriting GateKiller 2008-08-05T13:14:48Z 2009-05-26T16:13:39Z <p>How do I rewrite URL's in ASP.NET?</p> <p>I would like users to be able to goto <strong><a href="http://www.website.com/users/smith" rel="nofollow">http://www.website.com/users/smith</a></strong> instead of <strong><a href="http://www.website.com/?user=smith" rel="nofollow">http://www.website.com/?user=smith</a></strong></p> http://stackoverflow.com/questions/36502/how-can-i-disable-dll-caching-in-windows-vista-via-cmd 0 How can I disable DLL Caching in Windows Vista via CMD? GateKiller 2008-08-31T00:18:55Z 2009-05-20T00:01:31Z <p>I know Windows Vista (and XP) cache recently loaded DLL's in memory...</p> <p>How can this be disabled via the command prompt?</p> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results 13 Paging SQL Server 2005 Results GateKiller 2008-08-05T20:57:00Z 2009-04-15T19:03:06Z <p>How do I page results in SQL Server 2005?</p> <p>I SQL Server 2000, there was no reliable way todo this but I'm now wondering if SQL Server 2005 has any built in method.</p> <p>What I mean by paging is, for example, if I list users by their username, I want to be able to only return the first 10 records, then the next 10 records and so on.</p> <p>Any help would be much appriciated.</p> http://stackoverflow.com/questions/56811/what-is-the-best-remote-backup-provider 11 What is the best remote backup provider? GateKiller 2008-09-11T15:04:28Z 2009-04-11T06:55:48Z <p>What, in your opinion, is the single best provider for remote backups?</p> <p>The reason I ask, is that I have a lot of personal and business information which currently is only backed up to a server in the same building (my house) and I want to add a second reliable off-site backup.</p> <p>There are so many out there and I'm so confused on which to go for.</p> <p>So, who do think is the best?</p> http://stackoverflow.com/questions/724878/questions-regarding-css-design-using-960-grid-system/724915#724915 2 Answer by GateKiller for Questions regarding CSS design using 960 grid system GateKiller 2009-04-07T10:05:05Z 2009-04-07T11:17:46Z <p>The best way to do this would be to wrap #navigation and #contents inside a container div like so:</p> <pre><code>&lt;div class="container_16" id="base"&gt; &lt;div class="grid_16" id="header"&gt;Graphical banner&lt;/div&gt; &lt;div class="grid_16" id="logoutrow"&gt;Logout row&lt;/div&gt; &lt;div class="grid_16" id="navigation-content"&gt; &lt;div class="grid_3" id="navigation"&gt;Navigation&lt;/div&gt; &lt;div class="grid_13" id="content"&gt;Content&lt;/div&gt; &lt;/div&gt; &lt;div class="grid_16" id="footer"&gt;Footer&lt;/div&gt; &lt;/div&gt; </code></pre> <p>You could then set the background as so:</p> <pre><code>#navigation-content { background: #000 } </code></pre> <p>You only really need the clearing div if the you do not use the full 16 grids or if you using any float rules which need clearning. <a href="http://sonspring.com/journal/960-grid-system" rel="nofollow">The author has the following to say on the clear</a>:</p> <blockquote> <p>Lastly, I wanted to talk about the clearing methods included in the 960.css. First off is my personal preference, adding an innocuous bit of markup to clear all elements. I have already written about it extensively, so I won’t go over all that again. Basically, add class="clear" to a &lt;span&gt; or &lt;div&gt; that you want to disappear. The only effect it will have is to clear floats.</p> <p>The other method is for all you markup purists out there, who don’t want to dirty your HTML. Instead, you can insert markup via your CSS. This technique is well documented already as well. Essentially, add class="clearfix" to elements to clear what comes after them.</p> </blockquote> http://stackoverflow.com/questions/665453/catching-maximum-request-length-exceeded/665486#665486 1 Answer by GateKiller for Catching "Maximum request length exceeded" GateKiller 2009-03-20T09:34:36Z 2009-03-20T09:34:36Z <p>You can solve this by increasing the maximum request length in your web.config:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;httpRuntime maxRequestLength="102400" /&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>The example above is for a 100Mb limit.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/1654135#1654135 Comment by GateKiller on How Scalable is SQLite? GateKiller 2009-11-03T14:55:47Z 2009-11-03T14:55:47Z In a low volume website, you'd be quite right. However, there comes a point when the webserver needs more than 1 connection to the database. http://stackoverflow.com/questions/1612861/double-if-else-problem-in-c/1612889#1612889 Comment by GateKiller on Double If Else Problem in C# GateKiller 2009-10-23T11:51:44Z 2009-10-23T11:51:44Z if object doesn't contain the item &quot;Object Name&quot; a null exception will be thrown. http://stackoverflow.com/questions/1612861/double-if-else-problem-in-c/1612874#1612874 Comment by GateKiller on Double If Else Problem in C# GateKiller 2009-10-23T11:50:04Z 2009-10-23T11:50:04Z Thank you! I didn't think this was possible but it was obviously the way I was writing the if statement. Thx :) http://stackoverflow.com/questions/51093/ubuntu-32-bit-maximum-address-space/51387#51387 Comment by GateKiller on Ubuntu 32 bit maximum address space GateKiller 2009-10-16T10:39:09Z 2009-10-16T10:39:09Z This should be the correct answer :) http://stackoverflow.com/questions/122690/what-is-a-simple-command-line-program-or-script-to-backup-sql-server-databases/122705#122705 Comment by GateKiller on What is a simple command line program or script to backup SQL server databases? GateKiller 2009-09-24T13:20:04Z 2009-09-24T13:20:04Z @Marnix: Could you post any error messages and I might be able to help. http://stackoverflow.com/questions/122690/what-is-a-simple-command-line-program-or-script-to-backup-sql-server-databases/122705#122705 Comment by GateKiller on What is a simple command line program or script to backup SQL server databases? GateKiller 2009-09-17T15:16:54Z 2009-09-17T15:16:54Z @bzlm, Like I said. My blog has details on how to do this outside of SQL Server :) http://stackoverflow.com/questions/223536/how-do-we-create-a-simple-search-engine-using-lucene-solr-or-nutch/223610#223610 Comment by GateKiller on How do we create a simple search engine using Lucene, Solr or Nutch? GateKiller 2009-08-27T08:42:11Z 2009-08-27T08:42:11Z I don't understand the down votes either. A GSA is just what you need. Not only will it index all of your PDF's, it will also index your entire intranet and it will provide much better search results than Lucene will. http://stackoverflow.com/questions/433211/quickest-method-to-reverse-in-string-in-c-net/979280#979280 Comment by GateKiller on Quickest Method to Reverse in String in C#.net GateKiller 2009-06-18T14:53:51Z 2009-06-18T14:53:51Z I beg to differ. A few people have already proposed your above solution which is, in fact, the slowest! http://stackoverflow.com/questions/612428/pros-and-cons-of-the-mysql-archive-storage-engine Comment by GateKiller on Pros and Cons of the MySQL Archive Storage Engine? GateKiller 2009-05-13T08:46:11Z 2009-05-13T08:46:11Z @MFN: Yeah, it is Shumi :) http://stackoverflow.com/questions/724878/questions-regarding-css-design-using-960-grid-system/724915#724915 Comment by GateKiller on Questions regarding CSS design using 960 grid system GateKiller 2009-04-07T11:18:22Z 2009-04-07T11:18:22Z I have added an answer to the second question. http://stackoverflow.com/questions/700908/how-to-change-file-timestamps-in-windows Comment by GateKiller on How to change file timestamps in Windows GateKiller 2009-03-31T13:32:48Z 2009-03-31T13:32:48Z Command Line scripting sounds like programming to me... http://stackoverflow.com/questions/639188/what-is-your-favorite-stack-overflow-podcast-and-why Comment by GateKiller on What is your favorite Stack Overflow podcast and why? GateKiller 2009-03-12T15:31:17Z 2009-03-12T15:31:17Z I understand this is not programming related, but we can go off-topic now and again can't we :) http://stackoverflow.com/questions/638496/what-is-fastest-int-convert-toint32x-or-int32-parsex/638514#638514 Comment by GateKiller on What is fastest: (int), Convert.ToInt32(x) or Int32.Parse(x)? GateKiller 2009-03-12T13:04:28Z 2009-03-12T13:04:28Z (int) is just short hand for Convert.ToInt32, which calls System.Number.ParseInt32(). No difference at all. Any performance difference will only be measurable in Pico seconds. http://stackoverflow.com/questions/637866/sending-mail-without-installing-an-smtp-server Comment by GateKiller on Sending mail without installing an SMTP server GateKiller 2009-03-12T09:51:08Z 2009-03-12T09:51:08Z If you need example code, here's some that shows you how to send an email using Gmail's SMTP service. <a href="http://gatekiller.co.uk/Post/Send_Emails_with_.NET_and_Gmail" rel="nofollow">gatekiller.co.uk/Post/&hellip;</a> http://stackoverflow.com/questions/635277/slow-ms-sql-2000-lots-of-timeouts-how-can-i-improve-performance/635337#635337 Comment by GateKiller on Slow MS SQL 2000, lots of timeouts. How can I improve performance? GateKiller 2009-03-11T16:50:15Z 2009-03-11T16:50:15Z I would seriously think about upping the ram to 4GB at a minimum. Also, I would change the fillfactor to something like 95-98%. Remember, whenever you do an update, you do a read too.