User Beska - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:15:15Z http://stackoverflow.com/feeds/user/57120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/636102/should-i-always-ever-never-initialize-object-fields-to-default-values 20 Should I always/ever/never initialize object fields to default values? Beska 2009-03-11T19:59:52Z 2009-12-21T12:38:55Z <p>Code styling question here. </p> <p>I looked at <a href="http://stackoverflow.com/questions/268393/initializing-field-by-default-value-is-redundent">this</a> question which asks if the .NET CLR will really always initialize field values. (The answer is yes) But it strikes me that I'm not clear that it's a always a good idea to have it do this. My thinking is that if I see a declaration like this:</p> <pre><code>int myBlorgleCount = 0; </code></pre> <p>I have a pretty good idea that the programmer expects the count to start at zero, and is okay with that, at least for the immediate future. On the other hand, if I just see</p> <pre><code>int myBlorgleCount; </code></pre> <p>I have no real immediate idea if 0 is a legal or reasonable value. And if the programmer just starts reading and modifying it, I don't know whether the programmer meant to start using it before they set a value to it, or if they were expecting it to be zero, etc.</p> <p>On the other hand, some fairly smart people, and the Visual Studio code cleanup utilty tell me to remove these redundant declarations. What is the general consensus on this? (Is there a consensus?)</p> <p>I marked this as language agnostic, but if there is an odd case out there where it's specifically a good idea to go against the grain for a particular language, that's probably worth pointing out.</p> <p><strong>EDIT</strong>: While I did put that this question was language agnostic, it obviously doesn't apply to languages like C, where no value initialization is done.</p> <p><strong>EDIT</strong>: I appreciate John's answer, but it is exactly what I'm <strong>not</strong> looking for. I understand that .NET (or Java or whatever) will do the job and initialize the values consistently and correctly. What I'm saying is that if I see code that is modifying a value that hasn't been previously explicitly set in code, I, as a code maintainer, don't know if the original coder meant it to be the default value, or just forgot to set the value, or was expecting it to be set somewhere else, etc. </p> http://stackoverflow.com/questions/1921818/how-do-i-bring-back-an-entire-range-of-dates-in-sql-between-two-dates-even-when/1921839#1921839 2 Answer by Beska for How do I bring back an entire range of dates in SQL between two dates, even when there is no data? Beska 2009-12-17T13:36:58Z 2009-12-17T14:17:24Z <p>It's a bit hard to tell without more information, but it sounds like what you need to do is create a temp table that has your complete date range in it, then use a left join to join it to your numberOfIncidents data. Then you'll get all the dates, even if there were no incidents.</p> <p><strong>EDIT:</strong> To create the temp table, you could just create a loop that goes from your startDate to your endDate, and insert those rows into the db.</p> <p>Try this code:</p> <pre><code>-- These dates are just for example purposes declare @startDate datetime declare @endDate datetime set @startDate = '2009-11-20' set @endDate = '2009-12-17' while @startDate &lt; @endDate begin -- This line is where you insert into your temp table. I'm just -- printing the value out, so you can se what's happening. print @startDate -- Go to the next day. set @startdate = dateadd(dd, 1, @startdate) end </code></pre> http://stackoverflow.com/questions/1891107/is-there-a-way-to-reference-the-child-of-a-wpf-ui-element-by-name 0 Is there a way to reference the child of a WPF UI element by name? Beska 2009-12-11T21:53:26Z 2009-12-11T22:04:42Z <p>I've got a very simple app.xaml.cs that, when the app starts up, creates a new PrimeWindow, and makes it accessible to the outside.</p> <pre><code>public partial class App : Application { public static PrimeWindow AppPrimeWindow { get; set; } private void Application_Startup(object sender, StartupEventArgs e) { AppPrimeWindow = new PrimeWindow(); AppPrimeWindow.Show(); } } </code></pre> <p>The xaml for PrimeWindow looks like this:</p> <pre><code>&lt;Window x:Class="WpfApplication1.PrimeWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="500" Width="500" xmlns:MyControls="clr-namespace:WpfApplication1"&gt; &lt;DockPanel Name="dockPanel1" VerticalAlignment="Top"&gt; &lt;MyControls:ContentArea x:Name="MyContentArea" /&gt; &lt;/DockPanel&gt; &lt;/Window&gt; </code></pre> <p>Being a complete WPF novice, I'm doubtless messing several things up, but the question of the moment is this: <em>how do I reference the content area in code elsewhere?</em> I can easily get ahold of the DockPanel, via something like</p> <pre><code>DockPanel x = App.AppPrimeWindow.dockPanel1; </code></pre> <p>But digging any deeper doesn't seem easy to do. I can get a UIElementCollection of the DockPanel's children, and I can get individual children by an integer index, but, from a maintainability standpoint, that's clearly not the way to do this. </p> http://stackoverflow.com/questions/1877405/detecting-grayscale-images-with-net/1877424#1877424 10 Answer by Beska for Detecting grayscale images with .Net Beska 2009-12-09T22:37:37Z 2009-12-09T22:37:37Z <p>If you can't find a library for this, you could try grabbing a large number (or all) of the pixels for an image and see if their r, g, and b values are within a certain threshold (which you might set empirically, or have as a setting) of one another. If they are, the image is grayscale.</p> <p>I would definitely make the threshold for a test a bit larger than 0, though...so I wouldn't test r=g, for example, but (abs(r-g) &lt; e) where e is your threshold. That way you can keep your false color positives down...as I suspect you'll otherwise get a decent number, unless your original image and scanning techniques give <em>precisely</em> grayscale.</p> http://stackoverflow.com/questions/1840522/how-can-developers-get-out-of-the-learning-void/1867871#1867871 4 Answer by Beska for How can developers get out of the learning "void"? Beska 2009-12-08T15:54:53Z 2009-12-08T15:54:53Z <p>Learning and motivation are such personal subjects that it's difficult (impossible) to say with certainty what will work for you, but since I haven't seen this presented much, I offer:</p> <p>If you find you're getting hung up forcing yourself to learn, then study what interests you, and cheerfully ignore that which does not.</p> <p>It's easy to get discouraged and bogged down when learning becomes a terrible chore. It's good to force yourself through tough work at times, but if you've gotten nowhere for some time, it's time to just branch out a bit, and try something "interesting", regardless of whether it has any obvious value. Just work on a fun or interesting project. You can reenergize yourself, and perhaps regain an enthusiasm in learning something new when it has a practical application with the project you're already working on.</p> http://stackoverflow.com/questions/1246760/how-should-i-pass-a-table-name-into-a-stored-proc 0 How should I pass a table name into a stored proc? Beska 2009-08-07T20:09:37Z 2009-12-07T23:10:51Z <p>I just ran into a strange thing...there is some code on our site that is taking a giant SQL statement, modifying it in code by doing some search and replace based on some user values, and then passing it on to SQL Server as a query. </p> <p>I was thinking that this would be cleaner as a parameterized query to a stored proc, with the user values as the parameters, but when I looked more closely I see why they might be doing it...the table that they are selecting from is variably dependant on those user values.</p> <p>For instance, in one case if the values were ("FOO", "BAR") the query would end up being something like "SELECT * FROM FOO_BAR"</p> <p>Is there an easy and clear way to do this? Everything I'm trying seems inelegant.</p> <p><strong>EDIT:</strong> I could, of course, dynamically generate the sql in the stored proc, and exec that (bleh), but at that point I'm wondering if I've gained anything.</p> <p><strong>EDIT2:</strong> Refactoring the table names in some intelligent way, say having them all in one table with the different names as a new column would be a nice way to solve all of this, which several people have pointed out directly, or alluded to. Sadly, it is not an option in this case.</p> http://stackoverflow.com/questions/1688086/n-newline-character-wont-work-with-javascript/1688100#1688100 6 Answer by Beska for \n newline character won't work with Javascript Beska 2009-11-06T14:54:07Z 2009-11-06T16:55:35Z <p>It depends on what you're doing with the text, but my guess is you're rendering it as Html. In that case, you should be using a <code>&lt;br /&gt;</code> tag instead of a \n.</p> <p><strong>EDIT:</strong> It sounds like this doesn't solve your problem, because html tags are encoded and displayed, rather than interepreted as html tags. In that case, you'll either have to modify your tooltip display library, or go with a different library.</p> http://stackoverflow.com/questions/1668532/what-does-mean-in-tsql 2 What does =+ mean in (T)SQL? Beska 2009-11-03T16:38:10Z 2009-11-03T16:44:17Z <p>I found something like this in a SqlServer DB stored proc:</p> <pre><code>SELECT stuff FROM mytable WHERE mytable.column = + @parameter </code></pre> <p>It seems to run without error, so I assume it's okay. What would the "+" be doing?</p> <p>(Not surprisingly, this is a difficult topic to effectively search on, so I apologize in advance if this is a duplicate.)</p> http://stackoverflow.com/questions/1652224/how-to-deal-with-multi-criteria-queries-in-3-tier-architecture/1652314#1652314 0 Answer by Beska for How-To Deal with Multi-Criteria Queries in 3-Tier Architecture Beska 2009-10-30T21:03:25Z 2009-10-30T21:03:25Z <p>I'm not sure if this is what you're looking for, but I use the DAL as a factory to create a DAL-aware object, with reasonable public properties and/or methods that encapsulate the various filter criteria.</p> <p>Ask the DAL to create the object, edit filter criteria as needed, give it back, and let the DAL do it's thing with the object in whatever way it needs to for its given access method. </p> <p>This, of course, assumes that you don't have a completely open-ended data structure...that you have a known and reasonable sized set of possible filter criteria. If it needs to be flexible to the point where you can pass in arbitary filter criteria for unknown data structures, this probably isn't your solution.</p> http://stackoverflow.com/questions/1649356/the-best-approach-for-multilingual-user-interface/1649744#1649744 1 Answer by Beska for The best approach for multilingual user interface Beska 2009-10-30T13:09:07Z 2009-10-30T13:09:07Z <p>You could have 3 text boxes, and that's fine...get to 10, and it starts getting a bit crazy. Beyond that it starts looking pretty bad.</p> <p>Maybe you could put up to say 5 text boxes up...but if it goes beyond 5 (because the user desires localization for more than 5 places) it places a single textbox with a dropdown next to it, and the dropdown would contain the current language. </p> <p>Textbox would auto-populate with the current value for the language selected in the dropdown. Should work well in asp.net, and it can be done both client side, or server side on a post back pretty easily, so you don't need to do anything crazy for people not running javascript. </p> http://stackoverflow.com/questions/835130/ie-8-dropping-memory-pages 18 IE 8 dropping memory pages? Beska 2009-05-07T14:52:05Z 2009-10-29T02:53:20Z <p>This question is a spin-off/evolution of <a href="http://stackoverflow.com/questions/461605/invalid-webresource-axd-parameters-being-generated">this question</a>. (That question got marked as resolved because I put a bounty on it and it auto-resolved, but it never really got answered.) </p> <p>The summary is this: we have an ASP.NET site. Sometimes we get errors when the client asks for bizarre urls. From the resources the client is asking for, it looks like there is a 4k block of text missing from the html source.</p> <p>A simple example...if we have a page that looks like this:</p> <pre><code>&lt;a href="myValidLink.aspx"&gt;Here's some text&lt;/a&gt; a bunch more stuff ...(a large block of text)... AND NOW MORE STUFF LATER </code></pre> <p>The client may ask for the url: "myValidLiORE%20STUFF%20LATER".</p> <p>It acts as though a section of the html source just wasn't there...and that section that is missing seems to be exactly 4KB (4096 bytes) long (or according to some people, sometimes 1KB?).</p> <p>Unfortunately, we are unable to replicate this error on demand, though we see it coming in from clients many times per day.</p> <p>At first we thought this was a problem with Webresource.axd, because we happened to see it there a lot...but now I think that was primarily because we were grouping similar errors together, and those errors tended to happen when the corruption occured in that particular area. Now that I'm looking at a wider range of problems, I'm seeing places where we're getting very different errors that look like they're being caused by the same problem of dropping out a chunk.</p> <p>We've seen this a lot with IE 8, and it has gotten more frequent as IE 8 has become more prevalent. We see it occassionally with a browser that reports itself as IE 7...which IE 8 will do if it's put into "compatibility mode".</p> <p>My theory, at this point (which I'm trying to find a way to test) is that the web server is correctly sending out all of the data in the byte stream...and that the browser, IE 8, has a problem, and drops a memory page (4k) of it under some conditions.</p> <p>I'm a bit worried about this theory, however, since apparently some people have reported seeing this "occassionally" with IE 6 or FF 3...these tend to be outliers, and could be just different problems with similar symptoms, but if it's really the same thing on those browsers, that would blow my theory out of the water. Still, I don't have a better idea at this point.</p> <p>One other idea I've had is perhaps a relatively recent service pack to on the server is causing problems with the data being served to the clients, dropping the occasional 4KB. The problem with this theory is that it doesn't explain the great preponderance of the errors on IE 8, and the lack of them on other client browsers. </p> <p>So the questions, which hopefully will eventually have answers:</p> <ol> <li>Has anyone else encountered this? (maybe now that it's on your radar?)</li> <li>Can anyone replicate this problem consistently?</li> <li>Any ideas of what it is? Can you verify or refute my theory?</li> <li>Are there any fixes or workarounds?</li> </ol> http://stackoverflow.com/questions/1293939/what-is-o-value-for-naive-random-selection-from-finite-set 10 What is O value for naive random selection from finite set? Beska 2009-08-18T13:42:00Z 2009-10-20T22:09:09Z <p><a href="http://stackoverflow.com/questions/1293609/randomize-value-in-javascript">This question</a> on getting random values from a finite set got me thinking... </p> <p>It's fairly common for people to want to retrieve X unique values from a set of Y values. For example, I may want to deal a hand from a deck of cards. I want 5 cards, and I want them to all be unique.</p> <p>Now, I can do this naively, by picking a random card 5 times, and try again each time I get a duplicate, until I get 5 cards. This isn't so great, however, for large numbers of values from large sets. If I wanted 999,999 values from a set of 1,000,000, for instance, this method gets very bad. </p> <p>The question is: how bad? I'm looking for someone to explain an O() value. Getting the xth number will take y attempts...but how many? I know how to figure this out for any given value, but is there a straightforward way to generalize this for the whole series and get an O() value?</p> <p>(The question is not: "how can I improve this?" because it's relatively easy to fix, and I'm sure it's been covered many times elsewhere.)</p> http://stackoverflow.com/questions/1574978/what-is-wrong-with-this-auto-generated-t-sql-query 1 What is wrong with this auto-generated t-sql query? Beska 2009-10-15T20:49:55Z 2009-10-15T21:01:17Z <p>I'm having trouble executing a stored proc...</p> <p>I've got C# code that tries to call the stored proc. It looks somewhat like this:</p> <pre><code>DataTable myDataTable = new DataTable(); using (SqlConnection connection = new SqlConnection(myConnectionString)) { SqlCommand selectCommand = new SqlCommand("MyStoredProc", connection); selectCommand.Parameters.Add(new SqlParameter("@myGuid", myGuid)); SqlDataAdapter da = new SqlDataAdapter(selectCommand); da.Fill(myDataTable); } </code></pre> <p>When I execute it, I get an error that reads "Incorrect syntax near 'MyStoredProc'".</p> <p>If I run SqlProfiler, I see that it's attempting to run my stored proc like this:</p> <pre><code>exec sp_executesql N'MyStoredProc', N'@myGuid uniqueidentifier', @myGuid='FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF' </code></pre> <p>And sure enough, if I try to do the same thing, I get the same error. So my questions are:</p> <ol> <li>What's wrong with the generated query?</li> <li>Why is C# generating an invalid query? Did I do something wrong in my C# code?</li> </ol> <p><strong>EDIT:</strong> Agent_9191 nailed it...I was foolishly leaving out the statement to set the selectCommand type to StoredProcedure. The new generated query is:</p> <pre><code>exec MyStoredProc @myGuid='FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF' </code></pre> <p>and this (of course) works fine.</p> http://stackoverflow.com/questions/1567238/is-it-possible-to-add-an-interface-to-a-strongly-typed-dataset-in-net 0 Is it possible to add an interface to a strongly typed DataSet in .NET? Beska 2009-10-14T15:53:26Z 2009-10-14T15:58:55Z <p>I've got a bunch of strongly typed DataSet that each have two tables. One table is unique for each DataSet, but the second, "MetaData", has the same schema for each DataSet.</p> <p>At runtime, I determine which DataSet I want to use, and populate the data table in the appropriate way from a DB.</p> <p>I then want to populate the MetaData table. This would be done in the same way for each DataSet, so I'd like to use the same code. One obvious way to do this would be to have each of the DataSets implement an interface that would do the work.</p> <p>The problem comes when I want to declare this interface (IMyInterface) for these DataSets.</p> <p>Each strongly typed DataSet comes in a multitude of files. The first, and critical, file is the MyDataSet.Designer.cs file...this is a file that is auto-generated. There's a line near the beginning that reads:</p> <pre><code>public partial class MyDataSet : global::System.Data.DataSet </code></pre> <p>I could add my interface after this, but I have every reason to believe that it could/would be wiped out when this file is regenerated.</p> <p>If I tell VS that I want to edit the code for the DataSet, it creates a new file for me called MyDataSet.cs. But the declaration in there looks like this:</p> <pre><code>partial class MyDataSet </code></pre> <p>If I tried to add an interface to this like this:</p> <pre><code>partial class MyDataSet : IMyInterface </code></pre> <p>it would look like I was trying to add a subclass.</p> <p>What's the proper way to handle this? Change the designer file, and make sure VS doesn't ever regenerate it? Add both the superclass and the interface declaration to the other file? Something else entirely?</p> http://stackoverflow.com/questions/1567238/is-it-possible-to-add-an-interface-to-a-strongly-typed-dataset-in-net/1567287#1567287 0 Answer by Beska for Is it possible to add an interface to a strongly typed DataSet in .NET? Beska 2009-10-14T15:58:55Z 2009-10-14T15:58:55Z <p>Wow. Nevermind. Despite not finding this initially when searching, upon retrying this query (after typing this long question), I found the answer quickly.</p> <p>Apparently it's smart enough that it can mix and match them correctly, depending on whether it is a class to be inherited from, or an interface to be implemented.</p> <p><a href="http://msdn.microsoft.com/en-us/library/wa80x488%28VS.80%29.aspx" rel="nofollow">MSDN</a> says:</p> <blockquote> <p>For example, the following declarations:</p> </blockquote> <pre><code>partial class Earth : Planet, IRotate { } partial class Earth : IRevolve { } </code></pre> <blockquote> <p>are equivalent to:</p> </blockquote> <pre><code>class Earth : Planet, IRotate, IRevolve { } </code></pre> http://stackoverflow.com/questions/1545711/is-it-possible-to-coalesce-string-and-dbnull-in-c 1 Is it possible to coalesce string and DBNull in C#? Beska 2009-10-09T19:46:41Z 2009-10-09T20:19:27Z <p>I'm writing a C# routine to call a stored proc. In the parameter list I'm passing in, it is possible that one of the values can legally be null. So I thought I'd use a line like this:</p> <pre><code>cmd.Parameters.Add(new SqlParameter("@theParam", theParam ?? DBNull.Value)); </code></pre> <p>Unfortunately, this returns the following error:</p> <blockquote> <p>CS0019: Operator '??' cannot be applied to operands of type 'string' and 'System.DBNull'</p> </blockquote> <p>Now, this seems clear enough, but I don't understand the rationale behind it. Why would this not work? (And often, when I don't understand why something isn't working, it's not that it <em>can't</em> work...it's that I'm doing it wrong.)</p> <p>Do I really have to stretch this out into a longer if-then statement?</p> <p><strong>EDIT:</strong> (As an aside, to those suggesting to just use "null" as is, it doesn't work. I originally figured null would auto-translated into DBNull too, but it apparently does not. (Who knew?))</p> http://stackoverflow.com/questions/1461622/how-can-i-include-dbnull-as-a-value-in-my-strongly-typed-dataset 2 How can I include DBNull as a value in my strongly typed dataset? Beska 2009-09-22T18:01:24Z 2009-09-22T18:43:22Z <p>I've created a strongly typed dataset (MyDataSet) in my .NET app. For the sake of simplicity, we'll say it has one DataTable (MyDataTable), with one column (MyCol). MyCol has its DataType property set to "System.Int32", and its AllowDBNull property set to "true".</p> <p>I'd like to manually create a new row, and add it to this dataset. I create the row without a problem, with something like:</p> <pre><code>MyDataSet.MyDataTableRow myRow = MySimpleDataSet.MyDataTable.NewItemRow(); </code></pre> <p>Fine. However, when I try to set the value to DBNull:</p> <pre><code>myRow.MyCol = DBNull.Value; </code></pre> <p>I'm told that I can't do it...that it can't cast that to an int. This makes sense, in a way, since I've defined it to be an int...but then how can I get DBNull in there? Am I not supposed to be able to have DBNull in there? Isn't that what the AllowDBNull property is for?</p> <p>I'm obviously missing something fundemental. Can someone help explain what it is?</p> <p><strong>EDIT:</strong> I also tried entering "int?" as the DataType, but Visual Studio throws an error when I enter it, saying that "Column requires a valid DataType."</p> http://stackoverflow.com/questions/1453171/n-nn-or-remove-diacritical-marks-from/1454947#1454947 2 Answer by Beska for ń ǹ ň ñ ṅ ņ ṇ ṋ ṉ ̈ ɲ ƞ ᶇ ɳ ȵ --> n or Remove diacritical marks from unicode chars Beska 2009-09-21T14:58:09Z 2009-09-21T14:58:09Z <p>Something to consider: if you go the route of trying to get a single "translation" of each word, you may miss out on some possible alternates.</p> <p>For instance, in German, when replacing the "s-set", some people might use "B", while others might use "ss". Or, replacing an umlauted o with "o" or "oe". Any solution you come up with, ideally, I would think should include both.</p> http://stackoverflow.com/questions/1411199/what-is-a-better-way-to-sort-by-a-5-star-rating/1411455#1411455 1 Answer by Beska for What is a better way to sort by a 5 star rating? Beska 2009-09-11T15:04:07Z 2009-09-11T16:06:16Z <p>Well, depending on how complex you want to make it, you could have ratings additionally be weighted based on how many ratings the person has made, and what those ratings are. If the person has only made one rating, it could be a shill rating, and might count for less. Or if the person has rated many things in category a, but few in category b, and has an average rating of 1.3 out of 5 stars, it sounds like category a may be artificially weighed down by the low average score of this user, and should be adjusted.</p> <p>But enough of making it complex. Let’s make it simple.</p> <p>Assuming we’re working with just two values, ReviewCount and AverageRating, for a particular item, it would make sense to me to look ReviewCount as essentially being the “reliability” value. But we don’t just want to bring scores down for low ReviewCount items: a single one-star rating is probably as unreliable as a single 5 star rating. So what we want to do is probably average towards the middle: 3. </p> <p>So, basically, I’m thinking of an equation something like X * AverageRating + Y * 3 = the-rating-we-want. In order to make this value come out right we need X+Y to equal 1. Also we need X to increase in value as ReviewCount increases...with a review count of 0, x should be 0 (giving us an equation of “3”), and with an infinite review count X should be 1 (which makes the equation = AverageRating). </p> <p>So what are X and Y equations? For the X equation want the dependent variable to asymptotically approach 1 as the independent variable approaches infinity. A good set of equations is something like: Y = 1/(factor^RatingCount) and (utilizing the fact that X must be equal to 1-Y) X = 1 – (1/(factor^RatingCount)</p> <p>Then we can adjust "factor" to fit the range that we're looking for.</p> <p>I used this simple C# program to try a few factors:</p> <pre><code> // We can adjust this factor to adjust our curve. double factor = 1.5; // Here's some sample data double RatingAverage1 = 5; double RatingCount1 = 1; double RatingAverage2 = 4.5; double RatingCount2 = 5; double RatingAverage3 = 3.5; double RatingCount3 = 50000; // 50000 is not infinite, but it's probably plenty to closely simulate it. // Do the calculations double modfactor = Math.Pow(factor, RatingCount1); double modRating1 = (3 / modfactor) + (RatingAverage1 * (1 - 1 / modfactor)); double modfactor2 = Math.Pow(factor, RatingCount2); double modRating2 = (3 / modfactor2) + (RatingAverage2 * (1 - 1 / modfactor2)); double modfactor3 = Math.Pow(factor, RatingCount3); double modRating3 = (3 / modfactor3) + (RatingAverage3 * (1 - 1 / modfactor3)); Console.WriteLine(String.Format("RatingAverage: {0}, RatingCount: {1}, Adjusted Rating: {2:0.00}", RatingAverage1, RatingCount1, modRating1)); Console.WriteLine(String.Format("RatingAverage: {0}, RatingCount: {1}, Adjusted Rating: {2:0.00}", RatingAverage2, RatingCount2, modRating2)); Console.WriteLine(String.Format("RatingAverage: {0}, RatingCount: {1}, Adjusted Rating: {2:0.00}", RatingAverage3, RatingCount3, modRating3)); // Hold up for the user to read the data. Console.ReadLine(); </code></pre> <p>So you don’t bother copying it in, it gives this output:</p> <pre><code>RatingAverage: 5, RatingCount: 1, Adjusted Rating: 3.67 RatingAverage: 4.5, RatingCount: 5, Adjusted Rating: 4.30 RatingAverage: 3.5, RatingCount: 50000, Adjusted Rating: 3.50 </code></pre> <p>Something like that? You could obviously adjust the "factor" value as needed to get the kind of weighting you want.</p> http://stackoverflow.com/questions/1411072/parse-a-date-from-unformatted-text-in-sql 1 Parse a date from unformatted text in SQL Beska 2009-09-11T14:04:37Z 2009-09-11T14:53:51Z <p>I'm trying to figure out an elegant way to get a date from a text column that has data like this "YYYYMMDD"...so we might see "20060508" as a value in the column, which I would like to be able to return from a query as a date (May 8, 2006).</p> <p>I'm sure I can hack something together given enough time, but the approaches I'm thinking of seem pretty kludgy, and I suspect there's a way this can be elegantly done in a single query.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1396191/what-should-every-developer-know-about-legal-matters/1396239#1396239 3 Answer by Beska for What should every developer know about legal matters? Beska 2009-09-08T20:42:12Z 2009-09-08T20:42:12Z <p>I would answer this in the same way that I would answer "what should every lawyer know about programming?" That is to say, know that there's no way you can possibly know the in-depth field well enough to do more than the simplest of things. Get an expert.</p> http://stackoverflow.com/questions/1396042/what-is-this-pattern-called/1396064#1396064 4 Answer by Beska for What is this pattern called? Beska 2009-09-08T20:08:11Z 2009-09-08T20:08:11Z <p>Hmm...I've heard it called "early exit" (though mostly in the context of loops), but I'd consider it not so much a pattern as a technique. </p> <p>As an aside, you could simplify your code by removing the "= True" in your conditional.</p> <pre><code>Private someSub() If someBoolean Then Exit Sub ' do some great work because someBoolean is False End Sub </code></pre> http://stackoverflow.com/questions/1395667/sql-statement-to-insert-record-into-table-that-has-identity-column/1395713#1395713 1 Answer by Beska for SQL statement to insert record into table that has identity column? Beska 2009-09-08T18:58:12Z 2009-09-08T18:58:12Z <p>As some others have said, I'm thinking the second one should work for you, but if you're crashing the management studio when you run the query, whether it's broken or not, your problem is bigger than a malformed sql query.</p> <p>The studio shouldn't crash, even if you write some pretty awful sql...it should just give you an error message and move on. You might consider reinstalling the management studio if these kinds of errors are common for you.</p> http://stackoverflow.com/questions/1380617/request-url-parameter/1380641#1380641 1 Answer by Beska for Request url parameter Beska 2009-09-04T17:44:56Z 2009-09-04T17:44:56Z <p>I'm not convinced this is a legal url (though I'm sure it will work in most cases)...you haven't urlencoded your characters like the '?' and the '=' in your parameter. Ideally, you can just use to use HttpServerUtility.UrlEncode to do this, if you're the one generating these urls.</p> <p>...but if you can't do that for some reason, you'll probably have to roll your own solution, as you mentioned, by extracting them manually from the whole url.</p> http://stackoverflow.com/questions/1379147/jsp-displaying-single-and-double-quotes-as-symbol/1379161#1379161 1 Answer by Beska for JSP displaying single and double quotes as symbol Beska 2009-09-04T13:12:54Z 2009-09-04T13:12:54Z <p>These are probably non-standard characters in your database...perhaps directional quotes instead of the straight up-and-down ones?</p> <p>A straight-forward way to handle this, since you can't change the data in the database, would just be to use a replace or regex to swap out "bad" characters with ones that will display correctly.</p> http://stackoverflow.com/questions/491971/what-programming-language-is-most-like-natural-language/492390#492390 45 Answer by Beska for What programming language is most like natural language? Beska 2009-01-29T16:35:32Z 2009-08-29T03:25:13Z <p>There is a programming language called Inform that, in its most recent incarnation, Inform 7, looks a <em>lot</em> like natural language...in particular, written language. </p> <p>Inform is very specifically for creating text adventure games, but there is no inherent reason that the concepts couldn't be extended into other realms.</p> <p>Here's a small snippet of Inform 7 code, taken from the game Glass, by Emily Short.</p> <pre><code>Stage is a room. The old lady is a woman in the Stage. Understand "mother" or "stepmother" as the old lady. The old lady is active. The description of the lady is "She looks plucked: thin neck with folds of skin exposed, nose beaky, lips white. Perhaps when her fortunes are mended her cosmetics too will improve." The Prince is a man in the Stage. The description of the prince is "He's tolerably attractive, in his flightless way. It's hard not to pity him a little." The prince carries a glass slipper. The glass slipper is wearable. Understand "shoe" or "heel" or "toe" or "foot" as the slipper. The description of the slipper is "It is very small for an adult woman's foot." </code></pre> <p>Complete code can be found <a href="http://www.inform-fiction.org/I7Downloads/Examples/glass/source.html" rel="nofollow">here</a>.</p> <p>This is a small simple example...it can actually handle a surprisingly robust set of ideas. </p> <p>It should be pointed out that the code isn't really a strange cypher where the constructs have hidden meanings...this code does more or less what you would expect. For example:</p> <pre><code>The old lady is a woman in the Stage. Understand "mother" or "stepmother" as the old lady. </code></pre> <p>creates an object that happens to be a female person, names that object "old lady", and places that object within the room object called the "Stage". Then two aliases ("mother" and "stepmother" are created that also both reference the "old lady" object.</p> <p>Of course, as the examples get increasingly complex, the necessary hoops to jump through also become more complex. English is, by its very nature, ambiguous, while computer code is most definitively not. So we'll never get a "perfect marriage".</p> http://stackoverflow.com/questions/1349321/best-language-for-a-mandelbrot-zoom/1349394#1349394 1 Answer by Beska for Best Language for a Mandelbrot Zoom? Beska 2009-08-28T21:12:52Z 2009-08-28T21:12:52Z <p>I think you're likely to run into problems as soon as you go beyond double precision...I'm sure that there are libraries out there that handle extended precision for C++, but I'm guessing you take a huge hit in speed.</p> <p>So why not use the best of both worlds...normal C++ double precision, until you start hitting the limits, and then jump to slower-but-more-precise library implemented arbitrary precision. Presumably this is what you would want to do within a library like this anyway...extend precision only as needed, so that you're not doing a lot of extra calculation that isn't required for the current zoom-level.</p> http://stackoverflow.com/questions/1336694/is-there-an-asp-net-collection-for-selected-items-in-listbox 1 Is there an ASP.NET collection for selected items in ListBox? Beska 2009-08-26T18:40:33Z 2009-08-26T19:10:59Z <p>On my Asp.NET website, I have a listbox that allows multiple selections. I'd like to be able to ask something like:</p> <pre><code>blah = myListbox.selectedItems; </code></pre> <p>and be given a collection of the items that were selected in the listbox. It looks like there is a method for this in the Windows Forms world, but not for asp.NET. Is there a simpler way to do this than just iterating over the Items collection looking for selected values?</p> http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/1334763#1334763 0 Answer by Beska for What technologies are you using even though they are embarassingly out of date? Beska 2009-08-26T13:40:05Z 2009-08-26T13:40:05Z <p>The <a href="http://www.gnelson.demon.co.uk/zspec/" rel="nofollow">Z-machine</a>.</p> http://stackoverflow.com/questions/1323558/viewstate-hidden-field-so-big-it-makes-everything-crash/1323628#1323628 2 Answer by Beska for Viewstate hidden field so big it makes everything crash Beska 2009-08-24T17:14:42Z 2009-08-24T17:14:42Z <p>I would suggest using a utility to decode your viewstate so you can get an idea of what is actually within it (since you obviously have a lot of information in there you don't seem to need.)</p> <p>A utility like <a href="http://www.pluralsight.com/community/blogs/fritz/archive/2007/07/17/updated-viewstate-decoder.aspx" rel="nofollow">Fritz Onion's viewstate decoder</a> should allow you to see what's in your viewstate that you aren't expecting. Then you can either modify your code, remove the offending control, or selectively disable viewstate for the controls that shouldn't have it enabled.</p> http://stackoverflow.com/questions/891643/twitter-image-encoding-challenge/929360#929360 Comment by Beska on Twitter image encoding challenge Beska 2009-12-17T21:39:31Z 2009-12-17T21:39:31Z I come back to this entry once in a while just to see how awesome it is. http://stackoverflow.com/questions/1921818/how-do-i-bring-back-an-entire-range-of-dates-in-sql-between-two-dates-even-when/1921964#1921964 Comment by Beska on How do I bring back an entire range of dates in SQL between two dates, even when there is no data? Beska 2009-12-17T14:19:59Z 2009-12-17T14:19:59Z Very similar to what I wrote...so obviously you must be on the right track! ;) +1. http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/102754#102754 Comment by Beska on What was your first home computer? Beska 2009-12-15T21:54:22Z 2009-12-15T21:54:22Z Programming BASIC? But which one? Applesoft BASIC (yay!) or Integer BASIC (boo!) http://stackoverflow.com/questions/8452/i-dont-grok-the-wpf-command-pattern/8534#8534 Comment by Beska on I don't grok the WPF command pattern Beska 2009-12-15T21:21:26Z 2009-12-15T21:21:26Z But comments exist now. http://stackoverflow.com/questions/462219/xkcd-random-number/462233#462233 Comment by Beska on XKCD - Random Number Beska 2009-12-15T15:02:20Z 2009-12-15T15:02:20Z Your second sentence sums it up perfectly! http://stackoverflow.com/questions/1891107/is-there-a-way-to-reference-the-child-of-a-wpf-ui-element-by-name/1891143#1891143 Comment by Beska on Is there a way to reference the child of a WPF UI element by name? Beska 2009-12-11T22:13:41Z 2009-12-11T22:13:41Z Thanks! Now I just need to figure out if I really want to break encapsulation here, or if there's a better way to do what I'm trying to do (probably.) http://stackoverflow.com/questions/1891107/is-there-a-way-to-reference-the-child-of-a-wpf-ui-element-by-name/1891160#1891160 Comment by Beska on Is there a way to reference the child of a WPF UI element by name? Beska 2009-12-11T22:13:01Z 2009-12-11T22:13:01Z This is essentially what I was trying, and figuring I had to do, but didn't realize that FindName was what I was looking for...thanks! http://stackoverflow.com/questions/1891107/is-there-a-way-to-reference-the-child-of-a-wpf-ui-element-by-name/1891158#1891158 Comment by Beska on Is there a way to reference the child of a WPF UI element by name? Beska 2009-12-11T22:12:22Z 2009-12-11T22:12:22Z All the answers are good for different reasons; however, this one highlights the easiest way to do this, and also explained something else to me at the same time. So: acceptance. http://stackoverflow.com/questions/1877405/detecting-grayscale-images-with-net/1877424#1877424 Comment by Beska on Detecting grayscale images with .Net Beska 2009-12-11T21:15:31Z 2009-12-11T21:15:31Z No problem at all. Glad to help. http://stackoverflow.com/questions/1889026/are-there-applications-that-can-crunch-numbers-directly/1889049#1889049 Comment by Beska on Are there applications that can crunch numbers directly? Beska 2009-12-11T16:09:26Z 2009-12-11T16:09:26Z Which isn't to say that you couldn't have a stripped down and optimized OS just for the particular application...but that's probably a serious amount of work for what is probably very small gain. http://stackoverflow.com/questions/1888517/how-can-i-create-a-partial-class-at-runtime Comment by Beska on How can i create a partial class at runtime? Beska 2009-12-11T14:50:09Z 2009-12-11T14:50:09Z This question sounds like you have a misunderstanding of what a partial class is. If you explain a bit about what you're trying to do, you may get answers that can explain a bit more about how to solve the issue. http://stackoverflow.com/questions/1102910/why-isnt-speech-recognition-advancing/1103044#1103044 Comment by Beska on Why isn't speech recognition advancing? Beska 2009-12-10T17:07:08Z 2009-12-10T17:07:08Z Actually, the difference between 'p' and 'b' is not precisely so much in initial sound as the voiced vs. unvoiced aspect of them. They are definitely similar, both being bilabial plosives, but the voiced aspect of b is what differentiates it from the unvoiced p. http://stackoverflow.com/questions/1102910/why-isnt-speech-recognition-advancing/1103034#1103034 Comment by Beska on Why isn't speech recognition advancing? Beska 2009-12-10T17:02:01Z 2009-12-10T17:02:01Z &quot;Recognize Speech&quot; ~= &quot;Wreck a Nice Beach&quot; example = +1. http://stackoverflow.com/questions/510572/how-to-enable-user-to-drag-drop-wpf-user-controls-anywhere-on-the-page Comment by Beska on How to enable user to drag/drop WPF user controls anywhere on the page? Beska 2009-12-10T16:42:48Z 2009-12-10T16:42:48Z &quot;I can imagine that this has been made quite easy to do in WPF.&quot; Yes, you can imagine it. You'll have to. :) http://stackoverflow.com/questions/1877405/detecting-grayscale-images-with-net/1877424#1877424 Comment by Beska on Detecting grayscale images with .Net Beska 2009-12-10T16:23:50Z 2009-12-10T16:23:50Z @Ed: Isn't that pretty much what I said?