User Kevin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:06:02Z http://stackoverflow.com/feeds/user/19038 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1868044/cant-create-directory-via-asmx-web-service 0 Can't create directory via asmx web service. Kevin 2009-12-08T16:19:05Z 2009-12-09T14:31:20Z <p>I am trying to create a directory and then write to it via an asmx web service. It works fine on my dev pc, but when I publish the service to the server, I keep getting access denied errors. I have gone in to IIS and made sure the service has write privileges. I also gave write access to all users, but am still getting the same error. Any suggestions?</p> <p><b>Additional info</b> Well, I solved the problem. When I called </p> <pre><code>Directory.CreateDirectory(directoryName);</code></pre> <p>it worked fine on my development box but blew up on the server. I needed to use <pre><code>Directory.CreateDirectory(Server.MapPath(directoryName));</code></pre> which worked fine on both.</p> http://stackoverflow.com/questions/1596736/what-is-wrong-with-this-custom-compare-function 2 What is wrong with this Custom Compare function Kevin 2009-10-20T19:15:20Z 2009-10-20T20:37:40Z <p>I was trying to debug a problem and ran into this issue. Maybe somebody can explain it to me. This is the code in question </p> <pre><code>public int Compare(CustomClass rt1, CustomClass rt2) { if (rt1 == null & rt2 == null) return 0; if (rt1 == null) return -1; if (rt2 == null) return 1; if (rt1.yPos &lt; rt2.yPos) return -1; if (rt1.yPos == rt2.yPos) { if (rt1.xPos &lt; rt2.xPos) return -1; if (rt1.xPos == rt2.xPos) return 0; } return 1; } </code></pre> <p>The error I was getting was: IComparer (or the IComparable methods it relies upon) did not return zero when Array.Sort called x. CompareTo(x). </p> <p>To make it even more interesting, the error would not occur if I ran it from VS in debug mode. Only if I put it in release mode AND hit "start without debugging". Anybody have any ideas why this would happen? I fixed the problem by adding an "if(rt1 == rt2) return 0;" line to the beginning of the function, but would really like to know what is going on.</p> <p>Extra info: Yes, this implements the IComparer class</p> http://stackoverflow.com/questions/520547/what-is-the-eof-marker-for-a-zip-file 1 What is the EOF marker for a ZIP file? Kevin 2009-02-06T14:49:46Z 2009-10-19T11:38:50Z <p>I've got a C# program that uses SharpZIPlib to decompress some zip files? It works fine but on one file, I keep getting "Unexpected EOF" error? Is there actually an EOF marker, or did the Zip file just get truncated?</p> http://stackoverflow.com/questions/1526205/corrupted-column-in-database 1 Corrupted column in database Kevin 2009-10-06T15:08:57Z 2009-10-06T17:11:24Z <p>I have a SQL Server database. One of the tables has a column that, for lack of a better word, is acting corrupted. I can select * or even select that specific column and it works fine. I can perform functions like count, order by and group by on all other columns with no problems. But if I try and do one of those functions on this one column, it errors out with the following message: Error: (State:S1000, Native Code: E28)</p> <p>Also, I am connected to the database using winsql.</p> <p>Has anyone ever seen this kind of behavior before?</p> <p>Additional info:</p> <p><code>select colname from tablename</code></p> <p>works fine</p> <p><code>select colname from tablename order by colname</code></p> <p>produces the error</p> http://stackoverflow.com/questions/1364554/uncheck-a-checkbox-when-checking-another/1364577#1364577 3 Answer by Kevin for uncheck a checkbox when checking another Kevin 2009-09-01T20:49:28Z 2009-09-01T20:49:28Z <p>There is a reason God created radio buttons. :)</p> http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/290757#290757 19 Answer by Kevin for Programming as a meaningful profession? Kevin 2008-11-14T17:13:51Z 2009-08-25T13:10:10Z <p>I have a wife and three kids. Any job that allows me to support and take care of them is meaningful. I program because I like it, not because it "has meaning".</p> http://stackoverflow.com/questions/1103957/tiff-analyzer 1 Tiff Analyzer Kevin 2009-07-09T13:39:14Z 2009-07-20T16:44:56Z <p>I am writing a program to convert some data, mainly a bunch of Tiff images. Some of the Tiffs seems to have a minor problem with them. They show up fine in some viewers (Irfanview, client's old system) but not in others (Client's new system, Window's picture and fax viewer). I have manually looked at the binary data and all the tags seem ok. Can anyone recommend an app that can analyze it and tell me what, if anything, is wrong with it?</p> <p>Also, for clarity sake, I'm only converting the data about the images which is stored seperately in a database and copying the images, I'm not editting the images myself, so I'm pretty sure I'm not messing them up.</p> <p><b>UDPATE:</b> For anyone interested, here are the tags from a good and bad file:</p> <p>BAD<br> Tag Type Length Value<br> 256 Image Width SHORT 1 1652<br> 257 Image Length SHORT 1 704<br> 258 Bits Per Sample SHORT 1 1<br> 259 Compression SHORT 1 4<br> 262 Photometric SHORT 1 0<br> 266 Fill Order SHORT 1 1<br> 273 Strip Offsets LONG 1 210 (d2 Hex)<br> 274 Orientation SHORT 1 3<br> 277 Samples Per Pixel SHORT 1 1<br> 278 Rows Per Strip SHORT 1 450<br> 279 Strip Byte Counts LONG 1 7264 (1c60 Hex)<br> 282 X Resolution RATIONAL 1 &lt;194> 200 / 1 = 200.000<br> 283 Y Resolution RATIONAL 1 &lt;202> 200 / 1 = 200.000<br> 284 Planar Configuration SHORT 1 1<br> 296 Resolution Unit SHORT 1 2<br></p> <p>Good<br> Tag Type Length Value<br> 254 New Subfile Type LONG 1 0 (0 Hex)<br> 256 Image Width SHORT 1 1193<br> 257 Image Length SHORT 1 788<br> 258 Bits Per Sample SHORT 1 1<br> 259 Compression SHORT 1 4<br> 262 Photometric SHORT 1 0<br> 266 Fill Order SHORT 1 1<br> 270 Image Description ASCII 45 256<br> 273 Strip Offsets LONG 1 1118 (45e Hex)<br> 274 Orientation SHORT 1 1<br> 277 Samples Per Pixel SHORT 1 1<br> 278 Rows Per Strip LONG 1 788 (314 Hex)<br> 279 Strip Byte Counts LONG 1 496 (1f0 Hex)<br> 280 Min Sample Value SHORT 1 0<br> 281 Max Sample Value SHORT 1 1<br> 282 X Resolution RATIONAL 1 &lt;301> 200 / 1 = 200.000<br> 283 Y Resolution RATIONAL 1 &lt;309> 200 / 1 = 200.000<br> 284 Planar Configuration SHORT 1 1<br> 293 Group 4 Options LONG 1 0 (0 Hex)<br> 296 Resolution Unit SHORT 1 2<br></p> http://stackoverflow.com/questions/435885/why-is-visual-studios-installer-not-picking-up-dependencies 0 Why is Visual Studios Installer not picking up dependencies Kevin 2009-01-12T16:04:01Z 2009-06-26T07:39:35Z <p>I'm using Visual Studio 2005. I have a program written in C#. When I create the installer and then add the primary output, it's not picking up any dependencies. Not even .Net. Anybody have any ideas?</p> http://stackoverflow.com/questions/951686/is-a-one-column-table-good-design/951724#951724 8 Answer by Kevin for Is a one column table good design? Kevin 2009-06-04T16:44:20Z 2009-06-04T16:44:20Z <p>If there is a valid need for it, then I don't see a problem. Maybe you just want a list of possibilities to display for some reason and you want to be able to dynamically change it, but have no need to link it to another table.</p> http://stackoverflow.com/questions/944878/should-programmers-buy-their-hardware-if-their-company-doesnt-buy/944901#944901 1 Answer by Kevin for Should programmers buy their hardware if their company doesn't buy? Kevin 2009-06-03T13:56:05Z 2009-06-03T13:56:05Z <p>It all depends on your preference, the situation and your budget. If having that second monitor is a big deal to you, it's within your budget and it's not going to cause problems, then go ahead. </p> http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889585#889585 1 Answer by Kevin for What coding mistakes are a telltale giveaway of an inexperienced programmer? Kevin 2009-05-20T18:50:48Z 2009-05-20T18:50:48Z <p><pre><code>for (int i = 0; i &lt; 12; i++) { if(test) { i=12; } else { //do stuff } } </pre></code></p> http://stackoverflow.com/questions/317678/why-does-visual-studio-stall-while-debugging 2 Why does Visual Studio stall while debugging? Kevin 2008-11-25T15:18:36Z 2009-05-13T14:48:24Z <p>Sometimes, while I am debugging a c# application, I will hit a break point and when I try to continue, step or step into, it just does nothing. The yellow line highlighting the current line goes away, but it never reaches the next line. The app is still frozen like I am on a breakpoint and I can do nothing but hit the stop debugging button and restart. This doesn't happen all the time, but once it starts on an app it seems like it always happens after that for that app. I have found that adding the following code just before the class declaration "fixes" the problem for that app, but am very curious as to why this is happening.</p> <pre><code>[System.Diagnostics.DebuggerDisplay("Form1")]</code></pre> <p>Additional details: I have not noticed any kind of pattern as to what the particular line does when it freezes. Most of the apps I write use threading, so there is a decent chance this is happening within a thread every time.</p> http://stackoverflow.com/questions/777394/why-does-casting-text-as-varchar-without-specifying-a-length-truncate-the-text-at 0 Why does casting text as varchar without specifying a length truncate the text at 30 characters? Kevin 2009-04-22T14:08:51Z 2009-05-12T06:35:59Z <p>I was searching an MS-SQL Server 2005 database to make sure that a certain text field was always a multiple of 8 in length. When I ran the following query, I got that several rows were of length 30. But when I investigated those records, I found that they were longer than that.</p> <pre><code>select distinct len(cast(textfield as varchar)) from tablename</code></pre> <p>However, if I specify the length of the varchar as something longer(as in the following query), it works fine.</p> <pre><code>select distinct len(cast(textfield as varchar(1000))) from tablename</code></pre> <p>Anybody know why it defaults to 30 and if this is a configurable setting?</p> http://stackoverflow.com/questions/831589/query-to-get-all-foreign-key-constraints-in-sqlserver-2000 0 Query to get all foreign key constraints in SqlServer 2000 Kevin 2009-05-06T20:32:13Z 2009-05-07T08:44:37Z <p>Title says it all. I need a query for SqlServer 2000 to get a list of all foreign keys.</p> <p>Additional info: Whoops I guess the title doesn't say it all. I meant to add "that point to a particular column"</p> http://stackoverflow.com/questions/794663/net-convert-number-to-string-representation-1-to-one-2-to-two-etc/799538#799538 0 Answer by Kevin for .NET convert number to string representation (1 to one, 2 to two, etc...) Kevin 2009-04-28T19:43:52Z 2009-04-28T19:43:52Z <pre><code> public string IntToString(int number)//nobody really uses negative numbers { if(number == 0) return "zero"; else if(number == 1) return "one"; ....... else if(number == 2147483647) return "two billion one hundred forty seven million four hundred eighty three thousand six hundred forty seven"; } </code></pre> http://stackoverflow.com/questions/738361/what-would-you-put-on-your-resume-to-apply-for-a-job-with-no-prior-experience-in/738388#738388 0 Answer by Kevin for What would you put on your resume to apply for a job with no prior experience in that technology Kevin 2009-04-10T18:08:09Z 2009-04-10T18:08:09Z <p>Anything that shows you are smart, capable of either doing the job or learning to do it quickly, responsible and hard-working. I was in the Army before going to college and getting my CS degree. Army job had nothing to do with computers, but I still put it on my resume. Things like "led a Three-man team that had to be prepared to travel anywhere in the world on less than 24-hour notice" and "responsible for the deployment, accountablility and maintenance of $500,000 worth of equipment" show that you have skills that can transfer to any job. Use the experience you do have and word it to show how those skills apply to the job you want.</p> http://stackoverflow.com/questions/668048/what-datetime-format-is-this 5 What datetime format is this? Kevin 2009-03-20T21:20:23Z 2009-03-25T20:02:00Z <p>I have DateTime structure for an old data format that I don't have access to any specs for. There is a field which indicates the datetime of the the data, but it isn't in any format I recognize. It appears to be stored as a 32-bit integer, that increments by 20 for each day. Has anyone ever run across something like this?</p> <p>EDIT:</p> <p>Example: 1088631936 DEC = 80 34 E3 40 00 00 00 00 HEX = 09/07/2007</p> <p>EDIT:</p> <p>First off, sorry for the delay. I had hoped to do stuff over the weekend, but was unable to.</p> <p>Second, this date format is weirder than I initially thought. It appears to be some sort of exponential or logarithmic method, as the dates do not change at an increasing rate.</p> <p>Third, the defunct app that I have for interpreting these values only shows the date portion, so I don't know what the time portion is.</p> <p>Example data: (Hex values are big-endian, dates are mm/dd/yyyy)</p> <p>0x40000000 = 01/01/1900<br> 0x40010000 = 01/01/1900<br> 0x40020000 = 01/01/1900<br> 0x40030000 = 01/01/1900<br> 0x40040000 = 01/01/1900<br> 0x40050000 = 01/01/1900<br> 0x40060000 = 01/01/1900<br> 0x40070000 = 01/01/1900<br> 0x40080000 = 01/02/1900<br> 0x40090000 = 01/02/1900<br> 0x400A0000 = 01/02/1900<br> 0x400B0000 = 01/02/1900<br> 0x400C0000 = 01/02/1900<br> 0x400D0000 = 01/02/1900<br> 0x400E0000 = 01/02/1900<br> 0x400F0000 = 01/02/1900<br> 0x40100000 = 01/03/1900<br> 0x40110000 = 01/03/1900<br> 0x40120000 = 01/03/1900<br> 0x40130000 = 01/03/1900<br> 0x40140000 = 01/04/1900<br> 0x40150000 = 01/04/1900<br> 0x40160000 = 01/04/1900<br> 0x40170000 = 01/04/1900<br> 0x40180000 = 01/05/1900<br> 0x40190000 = 01/05/1900<br> 0x401A0000 = 01/05/1900<br> 0x401B0000 = 01/05/1900<br> 0x401C0000 = 01/06/1900<br> 0x401D0000 = 01/06/1900<br> 0x401E0000 = 01/06/1900<br> 0x401F0000 = 01/06/1900<br> 0x40200000 = 01/07/1900<br> 0x40210000 = 01/07/1900<br> 0x40220000 = 01/08/1900<br> 0x40230000 = 01/08/1900<br> ....<br> 0x40800000 = 05/26/1901<br> 0x40810000 = 06/27/1901<br> 0x40820000 = 07/29/1901<br> ....<br> 0x40D00000 = 11/08/1944<br> 0x40D10000 = 08/29/1947<br></p> <p>EDIT: I finally figured this out, but since I've already given up the points for the bounty, I'll hold off on the solution in case anyone wants to give it a shot.</p> <p>BTW, there is no time component to this, it is purely for storing dates.</p> http://stackoverflow.com/questions/642837/do-you-as-a-programmer-have-lunch-breaks/642847#642847 2 Answer by Kevin for Do you, as a programmer, have lunch break(s)? Kevin 2009-03-13T14:00:04Z 2009-03-13T14:00:04Z <p>the 9-5 is kind of a myth. At least I don't know anyone that actually works that. Most jobs are 9 hour shifts with a one hour lunch break. I work 8-5 with a one hour lunch.</p> http://stackoverflow.com/questions/639166/different-ways-of-writing-the-if-statement/639755#639755 0 Answer by Kevin for Different ways of writing the "if" statement... Kevin 2009-03-12T17:53:22Z 2009-03-12T17:53:22Z <p>I would use them in the following order: 1) the Ternary operator 2) example 3, but indented properly 3) either 2 or 4, they are basically the same. I would go with whatever the general styl was where I worked.</p> <p>I agree with what jake said about omitting the unnecessary curly braces. I have never caused or seen a bug caused by new code being added and someone thinking they were part of an if statement but they weren't because of the lack of curly braces. If someone ever did do that, I would ridicule them mercilessly.</p> <p>You'd have to torture me to get me to use number 1.</p> http://stackoverflow.com/questions/630249/is-accessing-local-private-variables-via-their-public-accessors-bad-form 2 Is accessing local private variables via their public accessors bad form? Kevin 2009-03-10T13:48:46Z 2009-03-10T14:56:37Z <p>I am working on a multi-threaded app. I'm processing reports and keeping track of the number of reports in the current batch as well as the total number of reports processed. Whenever I update the counters, I also need to update a label on the GUI which, since the process is on a separate thread, requires a call to a delegate. Which one of these is the better way to go?</p> <pre> <code>private void UpdateTotalCount(int newValue) { totalCount = newValue; if (labelTotalCount.InvokeRequired) BeginInvoke((MethodInvoker) delegate() { labelTotalCount.Text = "Total reports:" + totalcount; }); else labelTotalCount.Text = "Total reports:" + totalcount; } </code></pre> <p>or </p> <pre> <code>private int totalCount; public int TotalCount { get { return totalCount; } set { totalCount = value; if (labelTotalCount.InvokeRequired) BeginInvoke((MethodInvoker) delegate() { labelTotalCount.Text = "Total reports:" + totalcount; }); else labelTotalCount.Text = "Total reports:" + totalcount; } }</code></pre> <p><b>Edit:</b> Ok, third option.</p> <pre><code> private void UpdateTotalCountLabel() { if (labelTotalCount.InvokeRequired) BeginInvoke((MethodInvoker) delegate() { labelTotalCount.Text = "Total reports:" + totalcount; }); else labelTotalCount.Text = "Total reports:" + totalcount; } // code elsewhere would look like this totalCount++; UpdateTotalCountLabel(); //or totalCount+= curBatch.Length; UpdateTotalCountLabel(); </code></pre> http://stackoverflow.com/questions/620778/is-c-a-high-level-language/620797#620797 0 Answer by Kevin for Is C# a high level language? Kevin 2009-03-06T23:00:05Z 2009-03-06T23:00:05Z <p>Um, yes, it is a high-level language. And you can remove the subjective tag. There's nothing subjective about it.</p> http://stackoverflow.com/questions/620546/c-string-manipulation-how-to-remove-the-first-element-of-each-concatenated-str/620673#620673 0 Answer by Kevin for C# string manipulation - How to remove the first element of each concatenated string in a collection Kevin 2009-03-06T22:21:37Z 2009-03-06T22:21:37Z <p>add the comma at the beginning, then you only have to do one check, rather than a check on every iteration</p> <pre><code> string HazPackErrRow = ""; foreach (ListViewItem.ListViewSubItem HazPackErrSub in HazPackErrItems.SubItems) { HazPackErrRow += "," + " " + HazPackErrSub.Text; } // Remove comma before first element of string. if(HazPackErrRow.Length > 0) HazPackErrRow = HazPackErrRow.Substring(1); </code></pre> <p>Edit: Um, ignore me, I misread the question.</p> http://stackoverflow.com/questions/612415/get-values-from-the-web-config-section-in-an-app-config-file/612422#612422 0 Answer by Kevin for Get values from the web.config section in an app.config file? Kevin 2009-03-04T21:05:33Z 2009-03-04T21:05:33Z <p>Why not just stick it in the web.config file?</p> http://stackoverflow.com/questions/604031/what-is-the-first-last-week-of-a-month/604309#604309 0 Answer by Kevin for What is the first/last week of a month? Kevin 2009-03-02T22:27:19Z 2009-03-02T22:27:19Z <p>There's a fairly obvious option you are missing. The first week of the month is the seven days starting with the first day of the month. Hence, in your example, the first week would be Tuesday, the 1st through Monday, the 7th. This way, the first through 4th weeks would always be fully contained within the month, and only the 5th week would cross over.</p> http://stackoverflow.com/questions/461737/eidetic-memory-what-magic-numbers-you-still-remember/602612#602612 1 Answer by Kevin for Eidetic memory: What magic numbers you still remember? Kevin 2009-03-02T14:54:13Z 2009-03-02T14:54:13Z <p>49 49 2A - II* - the start of a header of a TIFF file</p> http://stackoverflow.com/questions/583793/sql-select-syntax-workaround/583827#583827 1 Answer by Kevin for SQL Select syntax workaround Kevin 2009-02-24T22:08:09Z 2009-02-24T22:08:09Z <p>"but the problem is that sql doesn't support "select * from (select...)" type of query"</p> <p>Sure it does. you just need to give it a name like "select * from (select...)a"</p> http://stackoverflow.com/questions/573504/regex-email-ignore-leading-and-trailing-spaces/573505#573505 7 Answer by Kevin for Regex Email - Ignore leading and trailing spaces? Kevin 2009-02-21T18:24:46Z 2009-02-21T18:24:46Z <p>just do the trim before you pass it to the validator</p> http://stackoverflow.com/questions/564778/show-a-message-box-when-user-close-ie/565414#565414 1 Answer by Kevin for show a message box when user close IE Kevin 2009-02-19T13:56:35Z 2009-02-19T13:56:35Z <p>On a side note, I would seriously consider whether you want to do this. When I close the window, I'm done with your site, I don't want any more messages from you. Popping up an extra window is going to annoy a lot of people.</p> http://stackoverflow.com/questions/480960/code-to-calculate-median-of-five-in-c/481194#481194 1 Answer by Kevin for Code to calculate "median of five" in C# Kevin 2009-01-26T20:24:37Z 2009-02-18T12:31:07Z <p>This should do it</p> <pre><code>private Double medianofFive(double[] input) { Double temp; if (input[0] &gt; input[1])//#1 - sort First and Second { temp = input[0]; input[0] = input[1]; input[1] = temp; } if (input[2] &gt; input[3])//#2 sort Third and Fourth { temp = input[2]; input[2] = input[3]; input[3] = temp; } // replace the smaller of first and third with 5th, then sort int smallerIndex = input[0] &lt; input[2] ? 0 : 2;//#3 input[smallerIndex] = input[4]; //sort the new pair if(input[smallerIndex]&gt;input[smallerIndex+1])//#4 { temp = input[smallerIndex]; input[smallerIndex] = input[smallerIndex+1]; input[smallerIndex+1] = temp; } //compare the two smaller numbers // then compare the smaller of the two's partner with larger of the two // the smaller of THOSE two is the median if (input[2] &gt; input[0]) //#5 { temp = input[2] &gt; input[1] ? input[1] : input[2];//#6 } else { temp = input[0] &gt; input[3] ? input[3] : input[0];//#6 } return temp; } </code></pre> http://stackoverflow.com/questions/555306/should-i-branch-out-to-flex-or-flash 1 Should I branch out to Flex or Flash? Kevin 2009-02-17T02:08:48Z 2009-02-18T00:52:11Z <p>I'm a C# developer looking to branch out. I want to try either flex or flash. Any recommendations on which to go with and why?</p> http://stackoverflow.com/questions/1596736/what-is-wrong-with-this-custom-compare-function/1596806#1596806 Comment by Kevin on What is wrong with this Custom Compare function Kevin 2009-10-20T20:35:08Z 2009-10-20T20:35:08Z good catch. But fixing this didn't fix the problem. http://stackoverflow.com/questions/1596736/what-is-wrong-with-this-custom-compare-function Comment by Kevin on What is wrong with this Custom Compare function Kevin 2009-10-20T20:14:57Z 2009-10-20T20:14:57Z ignore that last comment, it is in the code that way http://stackoverflow.com/questions/1596736/what-is-wrong-with-this-custom-compare-function Comment by Kevin on What is wrong with this Custom Compare function Kevin 2009-10-20T20:13:46Z 2009-10-20T20:13:46Z the single &amp; is being caused by the markup here. It is a double &amp; in the code http://stackoverflow.com/questions/1526205/corrupted-column-in-database/1526401#1526401 Comment by Kevin on Corrupted column in database Kevin 2009-10-06T16:23:51Z 2009-10-06T16:23:51Z Does &quot; select * from tablename order by columnname&quot; count as dodgy sql? http://stackoverflow.com/questions/1137499/determine-if-a-number-falls-within-a-specified-set-of-ranges Comment by Kevin on Determine if a number falls within a specified set of ranges Kevin 2009-07-16T13:36:59Z 2009-07-16T13:36:59Z I agree with ThePower. Unless you have a huge list of numbers, and maybe even then, I think the way you have it is easy to read and understand. KISS. Anton's first suggestion would be a close second. http://stackoverflow.com/questions/1103957/tiff-analyzer/1104079#1104079 Comment by Kevin on Tiff Analyzer Kevin 2009-07-09T19:23:54Z 2009-07-09T19:23:54Z No, there is not a second 273 tag http://stackoverflow.com/questions/1103957/tiff-analyzer/1104079#1104079 Comment by Kevin on Tiff Analyzer Kevin 2009-07-09T18:06:57Z 2009-07-09T18:06:57Z Nope, it is 1652. See update in main question text http://stackoverflow.com/questions/1103957/tiff-analyzer/1104079#1104079 Comment by Kevin on Tiff Analyzer Kevin 2009-07-09T14:14:02Z 2009-07-09T14:14:02Z Tag 259 is 4 (adding words to meet minimum comment length requirement...sigh) http://stackoverflow.com/questions/1088648/sql-sum-3-columns-when-one-column-has-a-null-value Comment by Kevin on SQL: sum 3 columns when one column has a null value? Kevin 2009-07-06T18:55:58Z 2009-07-06T18:55:58Z retagged and got rid of the C# http://stackoverflow.com/questions/1075153/any-common-algorithms-for-indexing-searching-through-my-data Comment by Kevin on Any common algorithms for indexing / searching through my data? Kevin 2009-07-02T16:01:43Z 2009-07-02T16:01:43Z Why would you want to look at the metadata? http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966481#966481 Comment by Kevin on What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Kevin 2009-06-08T21:16:45Z 2009-06-08T21:16:45Z The thought of case insensitive code makes me shudder. But I guess it is all a matter of what you are used to. And I guess it's kind of funny, because the exact opposite is true for sql, the thought of writing a case sensitive sql query makes me shudder. http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966546#966546 Comment by Kevin on What is allowed in Visual Basic that's prohibited in C# (or vice versa)? Kevin 2009-06-08T21:12:35Z 2009-06-08T21:12:35Z My initial reaction is &quot;Holy crap is that ugly code. I would slap someone for writing that.&quot; But I'm trying to be fair and consider if it would ever be useful http://stackoverflow.com/questions/951686/is-a-one-column-table-good-design/951724#951724 Comment by Kevin on Is a one column table good design? Kevin 2009-06-08T12:37:05Z 2009-06-08T12:37:05Z That's a great example of a time that it would be a good idea. http://stackoverflow.com/questions/951686/is-a-one-column-table-good-design/951724#951724 Comment by Kevin on Is a one column table good design? Kevin 2009-06-05T14:19:07Z 2009-06-05T14:19:07Z Um, well, it could be. I just don't think that most of the time it would be a good idea. http://stackoverflow.com/questions/944878/should-programmers-buy-their-hardware-if-their-company-doesnt-buy/944901#944901 Comment by Kevin on Should programmers buy their hardware if their company doesn't buy? Kevin 2009-06-03T14:08:38Z 2009-06-03T14:08:38Z I agree, the company SHOULD provide a second monitor, but I wouldn't quit a job that I otherwise enjoyed just because they wouldn't provide the specific hardware I preferred. Maybe I should have used a better example. Let's say they provided 19&quot; Monitors and he wanted bigger ones? Should they buy that for him too? What about if he want one of those $1000 keyboards? Like I said, it depends on the situation. If the tools impede your productivity to a significant degree, then the company should give you better tools. But that applies to all jobs.