User kronoz - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:29:53Z http://stackoverflow.com/feeds/user/3394 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817257/how-to-determine-operating-system-in-elisp 2 How to determine operating system in elisp? kronoz 2009-11-30T00:14:28Z 2009-11-30T00:37:55Z <p>Sorry if this has already been asked; however I don't seem to be able to find an answer anywhere grr.</p> <p>How do I programmatically determine which os emacs is running under in elisp? I would like to run different code in .emacs depending on the os.</p> http://stackoverflow.com/questions/44965/what-is-a-monad 30 What is a monad? kronoz 2008-09-04T23:26:44Z 2009-11-30T00:29:04Z <p>Having briefly looked at Haskell recently I wondered whether anybody could give a <em>brief, succinct, practical</em> explanation as to what a monad essentially is? I have found most explanations I've come across to be fairly inaccessible and lacking in practical detail, so could somebody here help me?</p> http://stackoverflow.com/questions/1104763/programmatically-replacing-linked-server-references-with-local-database-reference 0 Programmatically replacing linked server references with local database references in SQL Server stored procs? kronoz 2009-07-09T15:46:46Z 2009-11-29T17:41:32Z <p>As a part of a scripted procedure I'm trying to <em>programmatically</em> update references to linked servers in stored procs. We have several references like this:-</p> <pre><code>SELECT foo, bar FROM [Server].[Database].dbo.[Table] </code></pre> <p>Which I would like to translate to:-</p> <pre><code>SELECT foo, bar FROM [Database].dbo.[Table] </code></pre> <p>I would like to do this entirely programmatically in a 'fire and forget' script across several databases.</p> <p>The idea I have right now is to use metadata to find references to linked tables, read the text of each sp from metadata again, adjust each sp's text, then shove each block of updated text into an exec statement to rebuild 'em one-by-one.</p> <p>I do wonder whether this will be a humongous pain however, so does anybody have any better ideas? I am open to using powershell if that could provide a better solution.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1626597/best-practice-should-functions-return-null-or-an-empty-object/1626620#1626620 75 Answer by kronoz for Best Practice: Should functions return null or an empty object? kronoz 2009-10-26T18:46:34Z 2009-11-26T07:08:12Z <p>Returning null is usually the best idea if you intend to indicate that no data is available. </p> <p>An empty object implies data has been returned, whereas returning null clearly indicates that nothing has been returned.</p> <p>Additionally, returning a null will result in a null exception if you attempt to access members in the object, which can be useful for highlighting buggy code - attempting to access a member of nothing makes no sense. Accessing members of an empty object will not fail meaning bugs can go undiscovered.</p> http://stackoverflow.com/questions/219027/do-you-keep-a-programming-journal/219042#219042 33 Answer by kronoz for Do you keep a programming journal? kronoz 2008-10-20T16:24:11Z 2009-11-25T23:28:23Z <p>I've found <a href="http://steve.yegge.googlepages.com/you-should-write-blogs" rel="nofollow">writing a blog</a> to be the best possible programming journal available - not only do you record what you've done but you can share it with people too.</p> <p>I've found writing <a href="http://www.codegrunt.co.uk/blog/" rel="nofollow">my blog</a> incredibly useful even under the (fairly accurate in my case) assumption that nobody reads it - actually writing this stuff out clarifies it in my mind and forces me to think it through thoroughly which has turned out to be an incredibly beneficial thing to do.</p> http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s 38 Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.' kronoz 2008-09-22T11:30:01Z 2009-11-25T01:05:05Z <p>Hi All,</p> <p>I've had a <em>serious</em> issue with my Visual Studio 2008 setup. I receive the ever-so-useful error 'A problem has been encountered while loading the setup components. Canceling setup.' whenever I try to uninstall, reinstall or repair Visual Studio 2008 (team system version). If I can't resolve this issue I have no choice but to completely wipe my computer and start again which will take all day long! I've recently received very strange errors when trying to build projects regarding components running out of memory (despite having ~2gb physical memory free at the time) which has rendered my current VS install useless.</p> <p>Note I installed VS2005 shell version using the vs_setup.msi file in the SQL Server folder <em>after</em> I had installed VS2008, in order to gain access to the SQL Server 2005 Reporting Services designer in Business Intelligence Development Studio (this is inexplicably unavailable in VS2008).</p> <p>Does anyone have any solutions to this problem?</p> <p><strong>P.S.</strong>: I know this isn't directly related to programming, however I feel this <em>is</em> appropriate to SO as it is directly related to my <em>ability</em> to program at all!</p> <p><strong>Note</strong>: A colleague found a <a href="#114781" rel="nofollow">solution to this problem</a>, hopefully this should help others with this problem.</p> http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s/114781#114781 30 Answer by kronoz for Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.' kronoz 2008-09-22T13:13:28Z 2009-11-25T01:05:05Z <p>A colleague found <a href="http://msdn.microsoft.com/en-us/vs2008/bb968856.aspx" rel="nofollow">this MS auto-uninstall tool</a> which has successfully uninstalled VS2008 for me and saved me hours of work!!</p> <p>Hopefully this might be useful to others. Doesn't speak highly of MS's faith in their usual VS maintenance tools that they have to provide this as well!</p> <p><strong>Update</strong>: The above link appears to be down - <a href="http://gabriel.lozano-moran.name/blog/ct.ashx?id=40a94a4c-f8e0-44d6-8f11-ddeaf3348eeb&amp;url=http%3a%2f%2fgo.microsoft.com%2ffwlink%2f%3fLinkId%3d105801" rel="nofollow">mirror here</a>.</p> http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c 65 Use of var keyword in C# kronoz 2008-09-03T11:29:57Z 2009-11-12T17:44:55Z <p>After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?</p> <p>For example I rather lazily used var in questionable circumstances, e.g.:-</p> <pre><code>foreach(var item in someList) { // ... } // Type of 'item' not clear. var something = someObject.SomeProperty; // Type of 'something' not clear. var something = someMethod(); // Type of 'something' not clear. </code></pre> <p>More legitimate uses of var are as follows:-</p> <pre><code>var l = new List&lt;string&gt;(); // Obvious what l will be. var s = new SomeClass(); // Obvious what s will be. </code></pre> <p>Interestingly LINQ seems to be a bit of a grey area, e.g.:-</p> <pre><code>var results = from r in dataContext.SomeTable select r; // Not *entirely clear* what results will be here. </code></pre> <p>It's clear what results will be in that it will be a type which implements IEnumerable, however it isn't entirely obvious in the same way a var declaring a new object is.</p> <p>It's even worse when it comes to LINQ to objects, e.g.:-</p> <pre><code>var results = from item in someList where item != 3 select item; </code></pre> <p>This is no better than the equivilent foreach(var item in someList) { // ... } equivilent.</p> <p>There is a real concern about type safety here - for example if we were to place the results of that query into an overloaded method that accepted IEnumerable&lt;int&gt; and IEnumerable&lt;double&gt; the caller might inadvertently pass in the wrong type.</p> <p><strong>Edit</strong> - var <em>does</em> maintain strong typing but the question is really whether it's dangerous for the type to not be immediately apparent on definition, something which is magnified when overloads mean compiler errors might not be issued when you unintentionally pass the wrong type to a method.</p> <blockquote> <p>Related Question: <a href="http://stackoverflow.com/questions/633474/c-do-you-use-var">http://stackoverflow.com/questions/633474/c-do-you-use-var</a></p> </blockquote> http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code 8 Programmatically obtaining Big-O efficiency of code kronoz 2009-01-26T18:09:55Z 2009-10-23T05:58:40Z <p>I wonder whether there is any automatic way of determining (at least roughly) the Big-O time complexity of a given function?</p> <p>If I graphed an O(n) function vs. an O(n lg n) function I think I would be able to visually ascertain which is which; I'm thinking there must be some heuristic solution which enables this to be done automatically.</p> <p>Any ideas?</p> <p><strong>Edit:</strong> I am happy to find a semi-automated solution, just wondering whether there is some way of avoiding doing a fully manual analysis.</p> http://stackoverflow.com/questions/1598070/c-equivalent-of-c-mapstring-double/1598080#1598080 6 Answer by kronoz for C# equivalent of C++ map<string,double> kronoz 2009-10-21T00:23:32Z 2009-10-21T00:23:32Z <p>Roughly:-</p> <pre><code>var accounts = new Dictionary&lt;string, double&gt;(); // Initialise to zero... accounts["Fred"] = 0; accounts["George"] = 0; accounts["Fred"] = 0; // Add cash. accounts["Fred"] += 4.56; accounts["George"] += 1.00; accounts["Fred"] += 1.00; Console.WriteLine("Fred owes me ${0}", accounts["Fred"]); </code></pre> http://stackoverflow.com/questions/83147/whats-wrong-with-foreign-keys 20 What's wrong with foreign keys? kronoz 2008-09-17T13:25:54Z 2009-10-05T06:58:33Z <p>I remember hearing Joel mention in the podcast that he'd barely ever used a foreign key (if I remember correctly). However, to me they seem pretty vital to avoid duplication and subsequent data integrity problems throughout your database.</p> <p>Do people have some solid reasons as to why (to avoid a discussion in lines with SO principals)?</p> <p><strong>Edit:</strong> <a href="https://stackoverflow.fogbugz.com/default.asp?W13086" rel="nofollow">"I've yet to have a reason to create a foreign key, so this might be my first reason to actually set up one."</a></p> http://stackoverflow.com/questions/32649/data-conflict-in-linq 7 Data Conflict in LINQ kronoz 2008-08-28T15:54:56Z 2009-09-11T01:21:33Z <p>Hi, sorry if this is a really dumb question but I've not had a chance to really look deeply into it yet and I wondered whether somebody had a solution to the problem.</p> <p>When making changes using SubmitChanges() LINQ sometimes dies with a ChangeConflictException exception with the error message 'Row not found or changed', without any indication of either the row that has the conflict or the fields with changes that are in conflict, when another user has changed some data in that row.</p> <p>Is there any way to determine which row has a conflict and which fields they occur in, and also is there a way of getting LINQ to ignore the issue and simply commit the data regardless?</p> <p>Additionally, does anybody know whether this exception occurs when <em>any</em> data in the row has changed, or only when data has been changed in a field that LINQ is attempting to alter?</p> <p>Thanks in advance :-)</p> http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1393708#1393708 1 Answer by kronoz for What is the difference between const and readonly? kronoz 2009-09-08T12:24:24Z 2009-09-08T12:24:24Z <p>Principally; you can assign a value to a static readonly field to a non-constant value at runtime, whereas a const has to be assigned a constant value.</p> http://stackoverflow.com/questions/576034/is-learning-the-win32-api-worthwhile 9 Is Learning the win32 API Worthwhile? kronoz 2009-02-22T23:13:13Z 2009-09-02T23:51:20Z <p>I was certain that somebody would have specifically asked this question, but from what I can see no-one has (there's been a question about <a href="http://stackoverflow.com/questions/342729/learning-the-win32-api">learning win32</a> but that doesn't cover whether it's worthwhile doing so).</p> <p>I am very interested in gaining a deeper understanding of all the systems I use (I mostly program in C#, at least professionally), so I wondered, very simply - is learning win32 worthwhile, or is it overkill? Am I wasting my time? Is the knowledge I'd gain worth the effort?</p> <p><hr /></p> <p>Similar / related questions on StackOverflow:</p> <p><a href="http://stackoverflow.com/questions/5507/does-it-still-make-sense-to-learn-low-level-winapi-programming">Does it still make sense to learn low level WinAPI programming?</a><br> <a href="http://stackoverflow.com/questions/506396/how-relevant-is-win32-programming-to-modern-professionals">How relevant is Win32 programming to modern professionals?</a> </p> http://stackoverflow.com/questions/34662/must-see-tech-talks-presentations/34684#34684 17 Answer by kronoz for Must-see tech talks/presentations? kronoz 2008-08-29T16:42:54Z 2009-08-28T12:23:12Z <p>Though it's not a specific tech lecture on a computer science topic (though there are ample references to VR-related stuff), <a href="http://www.youtube.com/watch?v=ji5%5FMqicxSo" rel="nofollow">Randy Pausch's Incredible Last Lecture</a> is just so inspiring it's unbelievable. And I'm saying that as a cynic. That really is the very definition of <em>must-see</em>.</p> http://stackoverflow.com/questions/1334823/filtering-a-datagridview-per-column-with-filters-visible-above-columns 0 Filtering a DataGridView per column with filters visible above columns kronoz 2009-08-26T13:49:17Z 2009-08-27T09:10:29Z <p>Hi,</p> <p>I have a rather specific query -</p> <p>I want to be able to retrieve data from a database, display it in a DataGridView and allow the user to filter columns by inputting simple filter queries above each column.</p> <p>For example:-</p> <pre><code> | Foo | Bar | Baz | ------------------------------------| Filters | &gt; 10 | 1/1/1980 - 1/1/2009 | Boo | | 12 | 1/3/1995 | Boo | | 99 | 5/12/2005 | Boo | etc. </code></pre> <p>The method I thought would best address this problem was to have two DataTables, one which acts as the DataSource for the DataGridView (so I can have the view autogenerate the columns and not have to write a whole bunch of boilerplate to insert rows myself), which itself consists of a single row to hold the filters and the database data below it, and the second holding the database data which can be programmatically appended to the first.</p> <p>The problem with that solution is that the columns are restricted to the type of the column, for example here Foo is an integer, Bar is a DateTime and Baz is a string. When trying to enter filter text into Foo or Bar the DataGridView throws an error stating that the cell cannot contain text.</p> <p>Is it possible to have a row containing types utterly divorced from the types of the columns of the rest of the table?</p> <p>Another solution might be to have textboxes sat above the grid synced with column addition, removal, resizing and user scrolling, however this seems like an enormous amount of work and knowing WinForms I'd probably find out 3 days in that this approach fails spectacularly due to some subtle WinForms limitation.</p> <p>Solutions which are not possible - using WPF, using a 3rd-party DataGridView (unless, perhaps, an OSS DGV with a commercial usage license).</p> <p>Currently it seems the best solution might be to import all data into the database datatable as strings (the data below the filters is read-only). That seems quite astoundingly hackish, however.</p> <p>Am I missing something simple and obvious here? I'm happy to be proven wrong if it gives me some way forward! :-)</p> http://stackoverflow.com/questions/1334823/filtering-a-datagridview-per-column-with-filters-visible-above-columns/1339837#1339837 0 Answer by kronoz for Filtering a DataGridView per column with filters visible above columns kronoz 2009-08-27T09:10:29Z 2009-08-27T09:10:29Z <p>I've found a very useful project which allows per-column intuitive filtering - <a href="http://www.codeproject.com/KB/grid/DataGridViewFilterPopup.aspx" rel="nofollow">http://www.codeproject.com/KB/grid/DataGridViewFilterPopup.aspx</a> which fulfills my needs.</p> http://stackoverflow.com/questions/36746/the-art-of-computer-programming-what-can-i-get-from-reading-the-lot 23 The Art of Computer Programming - What Can I Get From Reading the Lot? kronoz 2008-08-31T10:10:16Z 2009-08-10T16:47:36Z <p>I am seriously considering actually reading through the whole Art of Computer Programming by Don Knuth.</p> <p>Though I know <a href="http://beta.stackoverflow.com/questions/13222/how-many-people-actually-read-the-art-of-computer-programming-books" rel="nofollow">not many people actually manage to do this</a>, and it's a ridiculously huge task to attempt, I wondered what people thought reading the whole lot will give me?</p> <p>I believe it'll give me a deeper and wider understanding of programming, much like the wonderful quote from <a href="http://beta.stackoverflow.com/questions/13222/how-many-people-actually-read-the-art-of-computer-programming-books#13350" rel="nofollow">lindelof</a> who is in turn quoting Joel Spolsky over at the other AoCP thread:-</p> <blockquote> <p>"Programmers who started programming by copying JavaScript snippets [...] and went on to learn Visual Basic never learned about pointers, and they can never quite produce code of the quality you need."</p> </blockquote> <p>I think having that deeper understanding will seep through into my practice as a programmer like a non-evil ooze. What else?</p> <p>P.S. I clearly have to end the question on the famous quote from Bill Gates on AoCP:-</p> <blockquote> <p>“If you think you’re a really good programmer, or if you want to challenge your knowledge, read The Art of Computer Programming, by Donald Knuth.” Gates described his own encounter with the book: “It took incredible discipline, and several months, for me to read it. I studied 20 pages, put it away for a week, and came back for another 20 pages. If somebody is so brash that they think they know everything, Knuth will help them understand that the world is deep and complicated. If you can read the whole thing, send me a resume.”</p> </blockquote> http://stackoverflow.com/questions/44833/does-confidence-play-a-part-in-writing-quality-code 1 Does confidence play a part in writing quality code? kronoz 2008-09-04T21:27:56Z 2009-08-05T18:52:24Z <p>I wondered what people's opinions were regarding self confidence as a factor in ability as a programmer. Personally I've found it makes a surprisingly big difference to my ability to code quality software.</p> <p>I've found that when I've felt less confident about code I've been willing to settle with suboptimal code and not explore potentially superior alternatives, I've found that I've been far less able or motivated to (politely) challenge colleagues when I've found problems with their code, and overall I've just not had the confidence to think fluidly and creatively and just get into that 'flow' state.</p> <p>The more confident I feel the quicker I am able to produce better quality code and get things done, is this a common phenomenon or simply just me?!</p> http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/623374#623374 13 Answer by kronoz for Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? kronoz 2009-03-08T10:29:07Z 2009-08-03T11:41:31Z <p>As far as I understand it Google actually only permit their staff to program in either C++, Java or Python as a matter of policy.</p> <p>I think the comments about performance are off the mark - yes Chrome is all about performance, however it is possible to write highly performant .NET applications, .NET is a JIT'd environment rather than interpreted, and tests have frequently demonstrated its performance capabilities. I am not sure about Java as I know little about it.</p> <p>It's well known that C++ a horribly painful language to program in (see <a href="http://yosefk.com/c++fqa/" rel="nofollow">C++ FQA</a> - yes, it is Frequently Questioned Answers), not to mention that memory management of highly multithreaded applications is well known to be a significantly difficult task.</p> <p>In terms of using Webkit, the functionality provided by .NET for unmanaged interoperability would make it possible to do so regardless.</p> <p>There are, however, some legitimate reasons not to choose C# for the project:-</p> <ul> <li>Who's going to maintain it? - Google's core language competencies, tools, and infrastructure revolve around C++, Java and Python.</li> <li>Though C# has a great performance profile, there sometimes are issues with startup time (the CLR runtime kicking in). This can be mitigated somewhat, but still exists to one degree or another.</li> <li>Portability - though Mono provides portability for .NET applications, it may be easier for Google to port Chrome in native code due to its reliance on specific bare metal GUI APIs.</li> <li>Wanting/requiring access to bare metal - chrome interacts with the win32 API directly in order to achieve its UI; this would be made far more difficult in .NET.</li> <li>Wanting <em>more convenient</em> access to 3rd-party libraries - e.g. WebKit. 3rd-party libraries written in C/C++ are more easily accessible from unmanaged code with less interoperability issues. Since Chrome relies rather heavily on these it makes sense to write Chrome in the same language.</li> </ul> <p><strong>Note</strong>: Removed inflammatory references to C++ - for the sake of staying on-topic!!</p> http://stackoverflow.com/questions/1212093/how-do-you-group-by-one-column-and-retrieve-a-row-with-the-minimum-value-of-anoth 2 How do you group by one column and retrieve a row with the minimum value of another column in T/SQL? kronoz 2009-07-31T11:44:28Z 2009-07-31T15:18:03Z <p>So I know this is a pretty dumb question, however (as the rather lengthily title says) I would like to know how do the following:</p> <p>I have a table like this:</p> <pre><code>ID Foo Bar Blagh ---------------- 1 10 20 30 2 10 5 1 3 20 50 40 4 20 75 12 </code></pre> <p>I want to group by Foo, then pull out rows with minimum Bar, i.e. I want the following:</p> <pre><code>ID Foo Bar Blagh ---------------- 2 10 5 1 3 20 50 40 </code></pre> <p>I can't for the life of me work out the correct SQL to retrieve this. I want something like:</p> <pre><code>SELECT ID, Foo, Bar, Blagh FROM Table GROUP BY Foo HAVING(MIN(Bar)) </code></pre> <p>However this clearly doesn't work as that is completely invalid HAVING syntax and ID, Foo, Bar and Blagh are not aggregated.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1196766/f-custom-exceptions-is-there-a-better-way-to-overload-the-exception-type/1196865#1196865 1 Answer by kronoz for F#: Custom exceptions. Is there a better way to overload the exception type? kronoz 2009-07-28T21:30:36Z 2009-07-28T21:30:36Z <p>How about redefining MyError as a record and using the record syntax to record the error, e.g.:-</p> <pre><code>type MyError = { Msg: string; Code: int } exception Error of MyError raise &lt;| Error { Msg = ( sprintf "Could not parse boolean value '%b'" key ); Code = code } </code></pre> http://stackoverflow.com/questions/1190149/net-3-5-c-is-there-a-performance-difference-between-if-and/1190188#1190188 2 Answer by kronoz for .NET 3.5/C#: Is there a performance difference between if() == and != kronoz 2009-07-27T19:37:47Z 2009-07-27T19:37:47Z <p>I'd say there would be no difference if the code is of the form:-</p> <pre><code>if(obj == null) { // blah } else { // blah } </code></pre> <p>The compiler will translate your if statement into a branch, either brtrue or brfalse which have equivalent performance.</p> <p>This sounds a little bit like you're micro-optimising; if you need to ask it's likely you're being overly zealous.</p> <p>If you're really certain there will be a difference, try writing the code both ways and running stopwatches around the code, or use a profiler. Until you measure it it's still theory, and more often than not our instinct tends to be more off than we'd like to think on these things!</p> http://stackoverflow.com/questions/39661/use-of-net-assemblies-in-sql-server-2005 3 Use of .net Assemblies in SQL Server 2005 kronoz 2008-09-02T14:26:49Z 2009-07-17T19:41:47Z <p>I've recently discovered that it's possible to place .net assemblies on SQL Server >=2005 servers so that .net functions can be called in T/SQL statements.</p> <p>I wondered what uses people found for these and how they perform?</p> http://stackoverflow.com/questions/1118540/how-can-i-move-the-contents-of-one-directory-tree-into-another/1118678#1118678 2 Answer by kronoz for How can I move the contents of one directory tree into another? kronoz 2009-07-13T10:20:11Z 2009-07-13T12:05:51Z <p><strong>Update</strong>:</p> <p>Adjusted code to a. check whether folders already exist at the destination, in which case move files in that folder over (and continue traversing the source directory structure), otherwise move the folder wholesale.</p> <p>At the end of the script the source folder is removed altogether to eliminate these folders which have had their files moved over to an already existent folder at the destination (meaning these folders have been emptied but not deleted at the source).</p> <p>Additionally we check whether a folder is both empty and already exists at the destination in which case we do nothing (and leave the source folder to be deleted to the last line of the script). Not doing this results in "The filename, directory name, or volume label syntax is incorrect." errors.</p> <p>Phew! Please let me know how you get on with this! I have tested this and it seems to be working well.</p> <pre><code>for /d /r "c:\source" %%i in (*) do if exist "c:\destination\%%~ni" (dir "%%i" | find "0 File(s)" &gt; NUL &amp; if errorlevel 1 move /y "%%i\*.*" "c:\destination\%%~ni") else (move /y "%%i" "c:\destination") move /y c:\source\*.* c:\destination rd /s /q c:\source </code></pre> http://stackoverflow.com/questions/47898/good-practice-projects-to-improve-programming-skills 14 Good Practice Projects to Improve Programming Skills kronoz 2008-09-06T22:39:35Z 2009-07-06T23:17:17Z <p>What are the best toy projects to improve generalised programming skills? I'm talking small programs that you build from scratch and play with yourself to develop skills in a given area or areas. For example, you might put together a very simple notepad-type application, or a simple calculator program.</p> <p>For example, what is the best project to:-</p> <ul> <li>Develop architectural skills</li> <li>Develop algorithmic skills</li> <li>Develop object orientation skills</li> <li>etc. etc.</li> </ul> http://stackoverflow.com/questions/689189/determining-the-clr-system-directory 0 Determining the CLR System Directory kronoz 2009-03-27T10:13:31Z 2009-06-27T23:02:07Z <p>The <a href="http://msdn.microsoft.com/en-us/library/s5bac5fx%28vs.71%29.aspx" rel="nofollow">MSDN article</a> on the C# command-line compiler /lib switch specifies the following:-</p> <blockquote> <p>The compiler searches for assembly references that are not fully qualified in the following order:</p> <ul> <li><p>Current working directory. This is the directory from which the compiler is invoked.</p></li> <li><p>The common language runtime system directory.</p></li> <li><p>Directories specified by /lib.</p></li> <li><p>Directories specified by the LIB environment variable.</p></li> </ul> </blockquote> <p>How do you <em>programmatically</em> determine where the CLR runtime system directory is located on the system?</p> http://stackoverflow.com/questions/44905/c-switch-statement-limitations-why 24 C# switch statement limitations - why? kronoz 2008-09-04T22:34:47Z 2009-06-15T15:32:35Z <p>When writing a switch statement there appears to be two limitations on what you can switch on and case statements.</p> <p>For example (and yes, I know, if you're doing this sort of thing it probably means your oo architecture is iffy - this is just a contrived example!):-</p> <pre><code> Type t = typeof(int); switch (t) { case typeof(int): Console.WriteLine("int!"); break; case typeof(string): Console.WriteLine("string!"); break; default: Console.WriteLine("unknown!"); break; } </code></pre> <p>Here the switch() statement fails with 'A value of an integral type expected' and the case statements fail with 'A constant value is expected'.</p> <p>I would like to know why these restrictions are in place and the underlying justification. I don't see any reason why the switch statement <em>has</em> to succomb to static analysis only, and why the value being switched on has to be integral (i.e. primitive). Does anybody know the justification?</p> http://stackoverflow.com/questions/975490/whats-the-largest-number-of-modifiers-you-can-put-on-a-c-entity 1 What's the largest number of modifiers you can put on a C# entity? [closed] kronoz 2009-06-10T13:13:50Z 2009-06-10T13:17:38Z <p>This is entirely for fun.</p> <p>What is the largest number of modifiers you can put on an entity of any kind in C#?</p> <p>I've managed 6:-</p> <pre><code>internal protected unsafe sealed override event Foo Bar; </code></pre> <p>Any challengers?</p> http://stackoverflow.com/questions/44961/haskell-vs-f 15 Haskell vs. F# kronoz 2008-09-04T23:24:51Z 2009-05-16T03:38:39Z <p>I've searched on the internet for comparisons between F# and Haskell but haven't found anything really definitive. What are the primary differences and why would I want to choose one over the other?</p> http://stackoverflow.com/questions/114332/visual-studio-setup-problem-a-problem-has-been-encountered-while-loading-the-s/114781#114781 Comment by kronoz on Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.' kronoz 2009-11-25T01:04:26Z 2009-11-25T01:04:26Z Yes, you're right, found a mirror - updated above. http://stackoverflow.com/questions/1626597/best-practice-should-functions-return-null-or-an-empty-object/1626620#1626620 Comment by kronoz on Best Practice: Should functions return null or an empty object? kronoz 2009-10-26T18:56:25Z 2009-10-26T18:56:25Z The function itself isn't in error by returning null, rather it's indicating that nothing has been returned. Of course the caller should be testing for null, I agree, however it does add an extra line of defence knowing that even if a null object sneaks through it will raise an exception. That is only icing on the cake compared to the fact you get to indicate that nothing has been returned in a universally understood way. If you simply return an empty object, how would you test that it was empty and throw an exception? It's more difficult and messy to implement that way. http://stackoverflow.com/questions/9033/hidden-features-of-c/33384#33384 Comment by kronoz on Hidden Features of C#? kronoz 2009-09-12T21:58:22Z 2009-09-12T21:58:22Z @codymanix 0 yes, it's inefficient, but most of the time the inefficiency makes no difference to the perf of the application. Don't optimise unless the profiler says so :) - prefer readability over micro-perf issues unless the profiler disagrees :) http://stackoverflow.com/questions/219027/do-you-keep-a-programming-journal/219042#219042 Comment by kronoz on Do you keep a programming journal? kronoz 2009-09-12T09:57:03Z 2009-09-12T09:57:03Z @JoshJordan - :-) yes I really should take my own advice, shouldn't I! In my defence, I've posted a few things over at my other blog (concerning my coding project - I'm writing a C# compiler in F#, plus I eventually want to develop my own language believe it or not) - <a href="http://www.codegrunt.co.uk/terse/b/" rel="nofollow">codegrunt.co.uk/terse/b</a> - so I've not totally abandoned it! :-) http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1393687#1393687 Comment by kronoz on What is the difference between const and readonly? kronoz 2009-09-08T12:32:33Z 2009-09-08T12:32:33Z Not to mention the value itself is immutable, so you can't change it (well, not without some funky evil underhand manipulation). Anyway :) http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1393687#1393687 Comment by kronoz on What is the difference between const and readonly? kronoz 2009-09-08T12:31:23Z 2009-09-08T12:31:23Z I do object, however, to the use of the word pointer here. It's not a pointer, it's a reference, and there <i>is</i> a difference in C# as you can manipulate unmanaged pointers in unsafe mode so it's important to distinguish between the two. http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1393687#1393687 Comment by kronoz on What is the difference between const and readonly? kronoz 2009-09-08T12:29:18Z 2009-09-08T12:29:18Z @Andrew Hare - yes, I just checked. I am very surprised, that is a real gotcha, I'm really very surprised by that, amazed that is the case...! http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1393687#1393687 Comment by kronoz on What is the difference between const and readonly? kronoz 2009-09-08T12:28:39Z 2009-09-08T12:28:39Z Wow. It is true...! How frightening. http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1393687#1393687 Comment by kronoz on What is the difference between const and readonly? kronoz 2009-09-08T12:23:53Z 2009-09-08T12:23:53Z I sincerely doubt that is true... I will go check. http://stackoverflow.com/questions/1334823/filtering-a-datagridview-per-column-with-filters-visible-above-columns/1335167#1335167 Comment by kronoz on Filtering a DataGridView per column with filters visible above columns kronoz 2009-08-26T16:11:13Z 2009-08-26T16:11:13Z I know about filtering using data views, I have been instructed however that we must execute filters as where clauses in a SQL string rather than retrieving all data then filtering with a view, hence the two datatables. Additionally I really do not have the time to write a custom handler as suggested by that article; in fact I have used that sample code for filtering within datagridviews, however this alone does not provide anything near the functionality I require, I would have to write a lot of code to adapt it. http://stackoverflow.com/questions/1212093/how-do-you-group-by-one-column-and-retrieve-a-row-with-the-minimum-value-of-anoth/1212132#1212132 Comment by kronoz on How do you group by one column and retrieve a row with the minimum value of another column in T/SQL? kronoz 2009-07-31T14:43:40Z 2009-07-31T14:43:40Z Nice one @butterchicken :-) http://stackoverflow.com/questions/1212093/how-do-you-group-by-one-column-and-retrieve-a-row-with-the-minimum-value-of-anoth/1212132#1212132 Comment by kronoz on How do you group by one column and retrieve a row with the minimum value of another column in T/SQL? kronoz 2009-07-31T12:55:59Z 2009-07-31T12:55:59Z Incidentally, I am happy for the solution to return multiple rows when the minimum value of foo is duplicated and for nullls to be included, however it's important users who may not be happy with that are made aware. http://stackoverflow.com/questions/1212093/how-do-you-group-by-one-column-and-retrieve-a-row-with-the-minimum-value-of-anoth/1212132#1212132 Comment by kronoz on How do you group by one column and retrieve a row with the minimum value of another column in T/SQL? kronoz 2009-07-31T12:52:54Z 2009-07-31T12:52:54Z Hm, I wasn't aware of those caveats; @butterchicken - perhaps worth adding them to the solution so other users are aware? http://stackoverflow.com/questions/1212093/how-do-you-group-by-one-column-and-retrieve-a-row-with-the-minimum-value-of-anoth/1212132#1212132 Comment by kronoz on How do you group by one column and retrieve a row with the minimum value of another column in T/SQL? kronoz 2009-07-31T12:15:52Z 2009-07-31T12:15:52Z Hey, I appreciate the added value!! :) http://stackoverflow.com/questions/1196766/f-custom-exceptions-is-there-a-better-way-to-overload-the-exception-type/1196865#1196865 Comment by kronoz on F#: Custom exceptions. Is there a better way to overload the exception type? kronoz 2009-07-28T22:13:19Z 2009-07-28T22:13:19Z Simply define a function?