User GateKiller - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T02:22:50Z http://stackoverflow.com/feeds/user/383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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 26 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/38039/how-can-i-get-the-datetime-for-the-start-of-the-week 7 How can I get the DateTime for the Start of the Week? GateKiller 2008-09-01T15:10:38Z 2009-09-04T12:26:34Z <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/483656/file-extension-to-mime-type-web-service 5 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 30 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/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 10 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 0 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/631233/is-there-a-c-case-insensitive-equals-operator 8 Is there a C# case insensitive equals operator? GateKiller 2009-03-10T16:52:52Z 2009-03-15T07:47:57Z <p>Hi,</p> <p>I know that the following is case sensitive:</p> <pre><code>if (StringA == StringB) { </code></pre> <p>So is there an operator which will compare two strings in an insensitive manner?</p> <p>Many Thanks<br /> Stephen</p> http://stackoverflow.com/questions/638496/what-is-fastest-int-convert-toint32x-or-int32-parsex/638514#638514 -3 Answer by GateKiller for What is fastest: (int), Convert.ToInt32(x) or Int32.Parse(x)? GateKiller 2009-03-12T12:59:46Z 2009-03-12T12:59:46Z <p>In the end, they all end up calling:</p> <pre><code>System.Number.ParseInt32(string s, NumberStyles style, NumberFormatInfo info); </code></pre> <p>So in summary, there will be no difference what so ever.</p> <p><em>Have a look in <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.Net Reflector</a> to see this.</em></p> http://stackoverflow.com/questions/633948/request-servervariablesscriptname-not-returning-anything/634013#634013 0 Answer by GateKiller for Request.ServerVariables("SCRIPT_NAME") Not Returning Anything GateKiller 2009-03-11T10:40:05Z 2009-03-11T10:54:19Z <p>If you are trying to return the script name, try:</p> <pre><code>Request.CurrentExecutionFilePath </code></pre> <p>and if you just wanted the script name without the path, you could use:</p> <pre><code>Path.GetFileName(Request.CurrentExecutionFilePath) </code></pre> <p><em>Path.GetFileName() requires the System.IO namespace</em></p> http://stackoverflow.com/questions/632332/sql-server-performance-size-drawbacks-of-null-columns/632362#632362 2 Answer by GateKiller for SQL Server - Performance/Size Drawbacks of Null Columns GateKiller 2009-03-10T21:28:57Z 2009-03-10T21:36:45Z <p>What I do in this situation, which is very common, is to split the data up into two tables:</p> <ul> <li>Required Data</li> <li>Optional Data</li> </ul> <p>For example, I'm currently writing a community website and one of the tables will obviously be a user table. I am recording a large amount of information about users and so I have split the data I collect into two tables:</p> <ul> <li>Users</li> <li>UserDetails</li> </ul> <p>The <em>Users</em> table contains basic information that I will need all the time such as Username, Name and Session Information.</p> <p>The <em>UserDetails</em> table contain extra information which I don't need as often such as Profile Page, Email Address, Password, Website Address, Date of Birth and so on.</p> <p>This is known as <a href="http://en.wikipedia.org/wiki/Partition%5F%28database%29" rel="nofollow">vertical partitioning</a>.</p> http://stackoverflow.com/questions/5226/html-comments-markup 1 HTML Comments Markup GateKiller 2008-08-07T19:46:47Z 2009-03-10T18:08:13Z <p>I am currently in the process of creating my own blog and I have got to marking up the comments, but what is the best way to mark it up?</p> <p>The information I need to present is:</p> <ol> <li>Persons Name</li> <li>Gravatar Icon</li> <li>Comment Date</li> <li>The Comment</li> </ol> <p>Any idea's would be much appriciated.</p> <p><em>PS: I'm only interested in semantic html markup.</em></p> http://stackoverflow.com/questions/587510/how-to-detect-if-an-aspx-page-was-called-from-server-execute 2 How to detect if an aspx page was called from Server.Execute? GateKiller 2009-02-25T19:45:05Z 2009-03-09T11:18:31Z <p>I have the following example page structure:</p> <ul> <li>Webpage.aspx</li> <li>Script.aspx</li> </ul> <p>If I call <code>Server.Execute("Script.aspx")</code> from Webpage.aspx, how can I detect in Script.aspx that it was called from Webpage.aspx and not directly from a web browser?</p> <p><em>I've tried checking the Referrer but this only seems to return domain and not the script.</em></p> <p><em>I'm using ASP.NET Web Forms on .NET 3.5</em></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.