User Ryan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T15:09:21Zhttp://stackoverflow.com/feeds/user/18309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/793852/how-do-i-output-xml-as-a-string-from-an-xmltextreader-into-a-response-write0How do I output XML as a string from an XmlTextReader into a Response.Write?Ryan2009-04-27T14:47:00Z2009-12-06T23:00:01Z
<p>I have retrieved some XML from an API (at least I think so, the server response is 'OK') however I am putting the response stream into an XmlTextReader, how do I output this XML as a string?</p>
http://stackoverflow.com/questions/1468429/how-to-calculate-volume-discounts-exponentially-using-some-code0How to calculate volume discounts exponentially using some code?Ryan2009-09-23T20:46:39Z2009-12-04T11:00:06Z
<p>What I mean is, is there some good way to dynamically calculate which user volume should get which % discount based around the discount growing as the volume grows?</p>
<p>I imagine it would either be a curved or a straight line on a graph but I am not exactly sure.</p>
<p>Is it possible that I could start with two ranges like: 25-500 users and 80-95% and then using those max/mins I can find the line it falls on and then be able to return a % when I specify a number of users? But this might not be making the discount grow at the rate that I want, this would be a straight line I think.</p>
<p>I hope I'm being transparent.</p>
http://stackoverflow.com/questions/886293/how-do-i-execute-a-stored-procedure-once-for-each-row-returned-by-query1How do I execute a stored procedure once for each row returned by query?Ryan2009-05-20T05:30:31Z2009-12-03T20:08:59Z
<p>I have a stored procedure that alters user data in a certain way. I pass it user_id and it does it's thing. I want to run a query on a table and then for each user_id I find run the stored procedure once on that user_id</p>
<p>How would I write query for this?</p>
<p>SQL SERVER</p>
http://stackoverflow.com/questions/1832708/iterate-through-iqueryable-of-no-specific-type3Iterate through IQueryable of no specific type?Ryan2009-12-02T12:49:11Z2009-12-02T13:24:51Z
<p>So I have this LINQ query that ends in a custom select kinda like this:</p>
<pre><code>select new { this1 = table.this1, this2 = othertable.this2 }
</code></pre>
<p>The call to that query from the Controller looks something like this:</p>
<pre><code>ViewData["these"] = theRepo.GetAllThese(someVar, anotherVar);
</code></pre>
<p>Now when I pass this on to my view since it is not strongly typed how can I iterate through it with a foreach, how can I cast it as an IQueryable or a List if I don't know what's in it?</p>
<p>...is it something like this?</p>
<pre><code>IQueryable<???> these = ViewData["These"];
foreach (var this in these) {...
</code></pre>
<p>Just need to know what to put for '???' I think.</p>
http://stackoverflow.com/questions/1827209/how-did-you-learn-master-c-linq-to-sql0How did you learn & master C# LINQ to SQL?Ryan2009-12-01T16:14:13Z2009-12-02T11:57:55Z
<p>A book? An online tutorial? Stackoverflow? University? Trial and error?</p>
<p>I have been using LINQ to SQL and I want to learn how to use it better because I feel like I can only do very basic things and I don't really understand how to use the good features. For example I have no idea what this means:</p>
<pre><code>public static IOrderedEnumerable<TSource> OrderByDescending<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector
)
</code></pre>
<p>When I looked up OrderByDescending() on MSDN to try and figure out exactly how it works (instead of just using the code someone writes for me on SO) I am totally confused, what the hell is a TKey, etc? Now that is not the question I am asking here but I am wondering how/where is the best way to learn and master this stuff?</p>
http://stackoverflow.com/questions/1828147/batch-utf-8-validation-tool0Batch UTF-8 Validation Tool?Ryan2009-12-01T18:57:39Z2009-12-02T07:00:48Z
<p>Anyone know an app/service/method that I could use to validate a bunch of XML files for UTF-8?</p>
<p>Basically I have a ton of XML files that are suppose to be UTF-8 and some of them happen to contain some bogus characters causing them not to render right in the content viewer.</p>
<p>I know I can check one at a time with methods found in this answer: <a href="http://stackoverflow.com/questions/115210/utf-8-validation">http://stackoverflow.com/questions/115210/utf-8-validation</a></p>
<p>...but how about thousands of XML files at once?</p>
http://stackoverflow.com/questions/1827224/orderbydescending-per-msdn-what-on-earth-does-this-mean1OrderByDescending() per MSDN, what on earth does this mean?Ryan2009-12-01T16:17:46Z2009-12-01T19:02:40Z
<p>Can someone please help be take apart the elements here and help me understand what they are?</p>
<pre><code>public static IOrderedEnumerable<TSource> OrderByDescending<TSource, TKey>(
this IEnumerable<TSource> source,
Func<TSource, TKey> keySelector
)
</code></pre>
<p>What is TSource and TKey? What is a keySelector? What the heck is an IOrderedEnumerable?</p>
<p>What does Func<> do??</p>
<p>Why is MSDN so cryptic?</p>
http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help0LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T20:46:56Z2009-11-30T21:15:19Z
<pre><code> var temp = (from assetVisit in db.AssetVisits
join assetBundle in db.AssetBundles on assetVisit.AssetID equals assetBundle.AssetID
join groupBundle in db.GroupBundles on assetBundle.BundleID equals groupBundle.BundleID
join userGroup in db.UserGroups on groupBundle.GroupID equals userGroup.GroupID
where assetVisit.CompanyID == companyID &&
userGroup.UserID == userID
select new { AssetID = assetVisit.AssetID, Count = assetVisit.AccessCounter }).Distinct();
IQueryable<Asset> final = (from t in temp
join asset in db.Assets on t.AssetID equals asset.AssetID
where asset.IsActive == true
&& asset.AssetTypeID == assetType
&& asset.ShowInResults == true
&& (asset.CompanyID == companyID || asset.CompanyID == -12081974)
orderby t.Count descending
select asset).Except(from companyAssets in db.Assets
join copiedAssets in db.Assets on companyAssets.AssetID equals copiedAssets.OriginalAssetID
where copiedAssets.CompanyID == companyID && companyAssets.CompanyID == -12081974 && copiedAssets.IsActive == true
select companyAssets);
return final.Take(limit);
</code></pre>
<p>OK so it's suppose to give back the assets in order based on t.Count but I think it might not be working because the .Count is actually not part of asset which is what is being selected, but I have no idea how to fix this.</p>
<p>As you can see there is an assetVisits table and an assets table, and I need to get back the assets in order of the assetVisits.AccessCount but I can't get it to work, what the hell??</p>
http://stackoverflow.com/questions/1821539/why-wont-this-linq-to-sql-query-come-back-in-the-right-order1Why won't this LINQ TO SQL query come back in the right order?Ryan2009-11-30T18:31:02Z2009-11-30T19:30:13Z
<pre><code>(from assetVisit in AssetVisits
join assetBundle in AssetBundles on assetVisit.AssetID equals assetBundle.AssetID
join groupBundle in GroupBundles on assetBundle.BundleID equals groupBundle.BundleID
join userGroup in UserGroups on groupBundle.GroupID equals userGroup.GroupID
where assetVisit.CompanyID == 32 &&
userGroup.UserID == 75
orderby assetVisit.AccessCounter descending
select assetVisit).Distinct()
</code></pre>
<p>notice the 'order by' however when the data comes back it is ordered by the PK of the assetVisit table, what gives?</p>
<p>SQL PER LINQPAD:</p>
<pre><code>-- Region Parameters
DECLARE @p0 Int SET @p0 = 32
DECLARE @p1 Int SET @p1 = 75
-- EndRegion
SELECT DISTINCT [t0].[AssetVisitID], [t0].[CompanyID], [t0].[AssetID], [t0].[AccessCounter], [t0].[CreateBy], [t0].[CreateDate], [t0].[ModifyBy], [t0].[ModifyDate]
FROM [AssetVisits] AS [t0]
INNER JOIN [AssetBundles] AS [t1] ON [t0].[AssetID] = ([t1].[AssetID])
INNER JOIN [GroupBundles] AS [t2] ON ([t1].[BundleID]) = [t2].[BundleID]
INNER JOIN [UserGroups] AS [t3] ON [t2].[GroupID] = [t3].[GroupID]
WHERE ([t0].[CompanyID] = @p0) AND ([t3].[UserID] = @p1)
</code></pre>
http://stackoverflow.com/questions/1820622/net-development-in-os-x-fastest-version-of-windows-for-parallels1.NET development in OS X, fastest version of Windows for Parallels? [closed]Ryan2009-11-30T15:50:15Z2009-11-30T15:59:23Z
<p>I googled my brains out and searched on here but found nothing.</p>
<p>I am wondering which version of windows should run fastest on parallels in snow leopard.
I am using Visual Studio in Coherence mode for MVC development.</p>
<p>Any experience you can share will be great.</p>
<p>(Parallels Desktop 5)</p>
<p>Cool side note: I was able to run Left 4 Dead 2 in parallels desktop 5 on windows 7 and play online with full 3d acceleration, which is bad ass seeing as this is only the 13" macbook pro.</p>
http://stackoverflow.com/questions/1512382/with-mvc-net-model-binding-does-the-view-page-model-and-the-binding-model-have-t0With MVC.NET Model Binding, does the view page Model and the binding Model have to be the same class?Ryan2009-10-03T00:19:46Z2009-11-24T10:14:33Z
<p>(That is, the model that you pass to the view and the model that you get back once the form posts.)</p>
<p>If not, is it better to do so anyways? What if there is data you are gathering that is beyond what the view page model has a property for?</p>
http://stackoverflow.com/questions/1336941/best-way-to-generate-activation-codes-for-software2Best way to generate activation codes for software?Ryan2009-08-26T19:26:23Z2009-11-19T05:32:32Z
<p>What is a good way to randomly generate some not-likely-to-be-randomly-generated-again activation codes to use for activating software? I am making an auto-fulfillment system for a web application.</p>
<p>I am using C#.</p>
http://stackoverflow.com/questions/1760864/do-flash-assets-in-my-library-need-recompiled-once-i-switch-from-educational-to-c0Do flash assets in my library need recompiled once I switch from Educational to Commercial CS4?Ryan2009-11-19T04:26:56Z2009-11-19T04:26:56Z
<p>Just wondering, but I built a lot of SWFs for various uses during college and if I upgrade to Commercial license of CS4 will I need to go back and open up all my FLAs to recompile them with the commercial install of flash or will the files not be different? Is there a legal issue here?</p>
http://stackoverflow.com/questions/1752883/what-would-cause-a-1-second-delay-added-onto-all-my-posts-on-dev-but-not-live0What would cause a 1 second delay added onto all my POSTs on DEV but not LIVE?Ryan2009-11-18T00:39:15Z2009-11-18T02:48:19Z
<p>Two Win2003 servers running ASP.NET sharing same SQL Server, one is DEV the other is LIVE. They are both clones of each other, one is the development box. The dev box is going really slow but I noticed it even happens on a 404 response even. When I browse to a fake URL with either domain to get a 404, the dev box was like 1.4 seconds and other box was like 200ms. So it wasn't recent code changes. Is there some IIS configuration or web.config setting that would cause this?</p>
<p>(I did a traceroute to both and it turned out equal)</p>
http://stackoverflow.com/questions/816464/net-mvc-slow-site/1749883#17498830Answer by Ryan for .NET MVC Slow SiteRyan2009-11-17T16:03:19Z2009-11-17T16:03:19Z<p>I saw another related issue that was solved by disabling IPv6, maybe try that.</p>
http://stackoverflow.com/questions/1711520/sql-server-08-express-installed-but-how-to-make-a-local-database0SQL Server 08 Express Installed: But how to make a local database?Ryan2009-11-10T21:56:53Z2009-11-10T22:10:47Z
<p>I try to connect to 127.0.0.1 with Windows Authentication using Management Studio Express 2008 but it never connects says it can't find the server or something. I ran the SQL Server Express 2008 Installer and it said that it was already installed but I can't find any wizard or shortcut to start up anything that will allow me to actually start setting up a local database, what gives?</p>
<p>(Windows 7 x64)</p>
<p>Services were off, turned them on, still not connecting to (local) because of an error: Error 40 could not open a connection to sql server error: 2</p>
<p>NOTE: Turned of windows firewall, same error! everything is local... services running, firewall down, tcp/ip enabled in config... hmm...</p>
http://stackoverflow.com/questions/107249/the-attention-deficit-programmer-tips-for-staying-on-task19The Attention Deficit Programmer - Tips for staying on task?Ryan2008-09-20T05:33:01Z2009-11-10T22:08:03Z
<p>With broadband internet being what it is, and tabbed browsing, and the crazy amounts of very entertaining social information sites, and someone down the hall asking for help with the printer (combined with your desire to be useful), and the coder next to you showing everyone clips from comedy central, and the nasty habit of wanting to delete files and defrag your system, and oh yeah, the work that you are suppose to be doing which you're really not sure about since you have three different potential higher ups that all think their project is the highest priority, HOW ON EARTH DO YOU STAY ON TASK AS A PROGRAMMER IN A WORLD LIKE THIS?!</p>
http://stackoverflow.com/questions/1711153/help-with-query-if-was-column-copied-keep-original-out-of-select0Help with query: If was column copied, keep original out of select.Ryan2009-11-10T21:02:17Z2009-11-10T21:50:46Z
<p>So I have this table that holds these 'assets', there are say 25 'special asset's that can not be edited by the users because they are shared. However as a way to allow the users to edit the asset and have their own version it makes a copy of the original that they are then allowed to edit. The row in the table holds a value called OriginalAssetID once it is copied (otherwise it is zero). Now the hang up: We don't want the original asset to show up any more for that user when browsing assets. Once they make the personal copy of the original asset only their new personal one should show not both. So how can I make a query that says get all these assets, but don't get the ones that have an assetID that falls into one of the selected assets OriginalAssetID column? Keep in mind I cannot flag anything on the original asset itself because it is shared by other users who have not made a copy yet will still see it in their browse list. GOOD LUCK I HAVE BEEN TRYING TO FIGURE THIS OUT FOR HOURS.</p>
<p>(SQL Server 2005)</p>
<p>TO ADD SOME EXAMPLE:</p>
<p>asset one:
asset_id = 5
orig_id = 0</p>
<p>asset two (is a copy of 1):
asset_id = 12
orig_id = 5</p>
<p>so in this case we want to get back asset two only and no longer get back asset one because it is now copied and the copied version should be the live one, but we can't get rid of it because some other users may not have copied it yet thus for them they want to have asset one still</p>
http://stackoverflow.com/questions/1693612/how-do-i-keep-my-c-windows-form-responsive-while-it-churns-loops2How do I keep my C# Windows Form Responsive while it churns loops?Ryan2009-11-07T16:38:23Z2009-11-10T19:30:13Z
<p>I have this massive nested loop scenario that is calling the DB and making HTTP requests to Basecamp API. At first it was a web app but it took much time to run the app so the user (billing department) would often quit out early or complain because it would take so long with no feedback and no way to cancel it. I wanted to make it more responsive and give it a Cancel button as well as a real time log, I also wanted to make it more controllable. I put it in forms so they could have control of every instance of it and have a cancel button and a real time log. However when I hooked it all up with form buttons, multi-line text box to replace the response and error log, I cannot get anything to work! I added checks in the loop to break out if Cancel becomes pressed. However I can't even click cancel and the multiline textbox will not live update when I .Text.Insert and then .Update() it. The whole app just sits there and spins... How do I get it to be responsive, accept button clicks during looping, and live update the multi-line text box??</p>
<p>NOTE: The thing compiles fine and I can step through it and it writes to a log file just fine so I can tell it's working after the fact that my form freezes up by looking at that log file.</p>
<p>Here is the code I am trying to update the multi-line textbox with:</p>
<pre><code>TimeSyncLog.Text.Insert(TimeSyncLog.Text.Length, "(((" + clientCode + ")))\n");
</code></pre>
<p>And here is the code for my loop breakout:</p>
<pre><code>if(CancelPressed)
{
TimeSyncLog.Text.Insert(TimeSyncLog.Text.Length,"\n\nSYNC STOPPED BY USER.");
break;
}
</code></pre>
<p>But I can never click the Cancel button to toggle that boolean because the window says 'Not Responding'...</p>
http://stackoverflow.com/questions/1703650/here-is-some-code-that-makes-a-cookie-can-you-please-show-me-how-to-unmake-it1Here is some code that makes a cookie, can you please show me how to unmake it?Ryan2009-11-09T20:41:47Z2009-11-10T05:17:03Z
<pre><code>System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Domain = System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"].ToString().ToLower();
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Value = tokenID.ToString();
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Path = "~/";
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Expires = DateTime.Now.AddDays(7);
</code></pre>
<p>Now what code would I do later on in my web app when the user clicks logout to make that cookie get destroyed?</p>
<p>NOTE I TRIED THIS ALREADY WITH AND WITHOUT THE COMMENTED LINES AND IT DOESN'T WORK:</p>
<pre><code> //System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Domain = System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"].ToString().ToLower();
//System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Value = tokenID.ToString();
//System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Path = "~/";
System.Web.HttpContext.Current.Response.Cookies["ssocookies"].Expires = DateTime.Now.AddDays(-1);
</code></pre>
http://stackoverflow.com/questions/1701731/is-there-any-error-checking-web-app-cralwers-out-there0Is there any error checking web app cralwers out there?Ryan2009-11-09T15:25:48Z2009-11-09T15:28:32Z
<p>Wondering if there was some sort of crawler we could use to test and re-test everything when changes are made to the web app so we know some new change didn't error out any existing pages. Or maybe a web browser with a million frames so I could scroll down and look through the tiles to find any error pages... you get the idea.</p>
http://stackoverflow.com/questions/211219/possible-to-use-moviecliploader-to-load-a-swf-from-a-different-server0Possible to use MovieClipLoader() to load a swf from a different server?Ryan2008-10-17T06:27:19Z2009-11-08T13:37:04Z
<p>Having some issues loading files from media hosting into swf shell (a swf loading swfs as assets). Mp3s and images work fine but a swf never loads. Code is like:</p>
<p>swfpath = "http://555.55.555.555/vir_dir/swf/N000001.swf"
movie_loader.loadMovie(swfpath, "mc_swfimage");</p>
<p>if the swfpath is set to "swf/N00001.swf" it loads fine and if I point firefox towards the http link above (555s as placeholders here) it opens the file in firefox just fine.</p>
<p>Is it some security or does loadMovie not handle http paths?</p>
<p>Note it works fine if I do loadAudio with the same thing pointing to an MP3.</p>
http://stackoverflow.com/questions/1692751/is-it-worth-getting-an-msc-in-computer-science/1693577#16935771Answer by Ryan for Is it worth getting an MSc in Computer Science?Ryan2009-11-07T16:29:11Z2009-11-07T16:29:11Z<p>Experience is key, show someone you can code and get a job starting out.</p>
<p>Get a Masters degree once you come to the conclusion that it will really benefit you based on where you are going, some employers will even compensate tuition.</p>
<p>The degree you have shows you went to school for Engineering, Audio is complicated, people know that. People know you use programming languages in all fields of Engineering. That degree plus your ability to program is all you need to get going my friend.</p>
http://stackoverflow.com/questions/189663/how-do-you-keep-your-brain-sharp-for-daily-programming9How do you keep your brain sharp for daily programming?Ryan2008-10-10T00:10:33Z2009-11-05T20:21:25Z
<p>Brain games? A special diet? Exercise? Staying drug free? Sex? Abstinence?</p>
<p>What's your secret?</p>
http://stackoverflow.com/questions/1653104/harddrive-rpms-really-significant-for-visual-studion-development-experience/1653388#16533880Answer by Ryan for Harddrive rpms really significant for Visual Studion development experience?Ryan2009-10-31T04:17:56Z2009-10-31T04:17:56Z<p>You will likely not notice a huge difference between the RPMs, but if you have the ability to install a second hard drive you can have VS and your project files running off of that so windows is more free to hit its system and paging files.</p>
http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding9Which chemical stimulation do you require while coding?Ryan2008-09-24T22:25:19Z2009-10-30T23:42:16Z
<p>Whatever it be, caffeine, tobacco, whatever, list your programming performance enhancing drug of choice.</p>
<p>Do you feel like you NEED it to be most effective at your work?</p>
<p>Vote up someone if they answered the same as you.</p>
http://stackoverflow.com/questions/1652538/what-really-is-good-enough-for-a-late-project1What really is 'good enough' for a late project?Ryan2009-10-30T21:55:00Z2009-10-30T22:02:27Z
<p>It seems like management always is saying how the project is late, then we have to figure out what is good enough to go live fast. The problem I find is that we tend to focus on the features that the client wants more than some basic features that I would think a web app should just have by it's very nature. </p>
<p>For example we spent more time talking about whether adding a noscript tag to inform users the site requires javascript should be added to the list of feature requests than the time it would have taken me to add it to the master page and then push it out.</p>
<p>Is there some good method for determining what things should be there to be good enough?
How do I know what things my app should be expected to do at bare minimum?</p>
<p>We don't even add data validation sometimes because there is no time.
It seems like there should be some basic bread and butter things in an app but so often all we care about is the things the user actually sees.</p>
<p>This is not the ideal way to make software in my opinion, but how can you know what good enough is?</p>
http://stackoverflow.com/questions/1652508/how-to-use-a-standard-webform-aspx-file-inside-an-mvc-project0How to use a standard webform aspx file inside an MVC project?Ryan2009-10-30T21:48:27Z2009-10-30T21:48:27Z
<p>I have to write this script to send a mass email reminder but our head dev is out of town so I can't do a patch to the .dll, instead I am using an .aspx page that I can just push out. Problem is I cannot seem to get it to run, I put it into an open directory that allows browse-to-able-ness (avoiding the map routing) but I keep getting this error:</p>
<pre><code>Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'KODmvc.Content.other.WelcomeEveryone'.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WelcomeEveryone.aspx.cs" Inherits="KODmvc.Content.other.WelcomeEveryone" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Source File: /Content/other/WelcomeEveryone.aspx Line: 1
</code></pre>
<p>What's the deal? Is it because I did not recompile the whole MVC app into the .DLL and so it doesn't know how to render this? But I thought I didn't need to do that for a webforms file?</p>
http://stackoverflow.com/questions/1644146/user-defined-formulas-in-c/1644395#16443950Answer by Ryan for User defined formulas in C#Ryan2009-10-29T15:07:47Z2009-10-29T15:07:47Z<p>Could the user use his knowledge of the object and just decide which category to put it in when he enters it into the system? Guess we need more info but if the user can define which measurepoints determine which category, couldn't they just choose the category?</p>
http://stackoverflow.com/questions/1643844/how-to-undo-visual-studios-obsession-with-recreating-the-designer-cs-file-of-my1How to undo Visual Studio's obsession with recreating the .designer.cs file of my DBML?Ryan2009-10-29T13:44:29Z2009-10-29T14:42:23Z
<p>This is driving me nuts. I think it is because of some connection string mismatching across the app (using MVC) but Visual Studio constantly takes my .designer.cs file and recreates it adding a '1' at the end (or 2 if it already did this before argh!). My question is two-fold: Is there a way to stop VS from doing this? But more importantly: How can I manually set it back to the original .designer.cs or is that not possible? I try to delete the new one it created (because I keep getting duplicate definition build errors) and it won't automatically associate back with the original one in the DMBL file structure in solution explorer.</p>
<p>Does anyone have a solution for this madness?</p>
http://stackoverflow.com/questions/1828147/batch-utf-8-validation-toolComment by Ryan on Batch UTF-8 Validation Tool?Ryan2009-12-02T03:59:07Z2009-12-02T03:59:07ZWell when I opened one of the XML files in TextWrangler it gave me an error message saying that there was some invalid characters that did not meet the specified UTF-8 formatting, so apparently it knows..http://stackoverflow.com/questions/1828147/batch-utf-8-validation-tool/1828325#1828325Comment by Ryan on Batch UTF-8 Validation Tool?Ryan2009-12-02T03:58:11Z2009-12-02T03:58:11ZI guess that is the point of this question, I don't know how to do that..http://stackoverflow.com/questions/1827224/orderbydescending-per-msdn-what-on-earth-does-this-mean/1828172#1828172Comment by Ryan on OrderByDescending() per MSDN, what on earth does this mean?Ryan2009-12-02T03:53:48Z2009-12-02T03:53:48Zok you're right, I was just being frustrated, I guess it's not MSDN that's cryptic to me it's the LINQ :)http://stackoverflow.com/questions/1827209/how-did-you-learn-master-c-linq-to-sql/1827253#1827253Comment by Ryan on How did you learn & master C# LINQ to SQL?Ryan2009-12-01T16:32:04Z2009-12-01T16:32:04Zholy carp $1400 thats nearly 3 weeks of pay, I guess the only way that could be feasible for me would be if the company paid for it but I know they would never do thathttp://stackoverflow.com/questions/1827224/orderbydescending-per-msdn-what-on-earth-does-this-mean/1827246#1827246Comment by Ryan on OrderByDescending() per MSDN, what on earth does this mean?Ryan2009-12-01T16:26:40Z2009-12-01T16:26:40ZLikewise what if you just put '=' or if you put '=<' (equal to or less than) ?http://stackoverflow.com/questions/1827224/orderbydescending-per-msdn-what-on-earth-does-this-mean/1827246#1827246Comment by Ryan on OrderByDescending() per MSDN, what on earth does this mean?Ryan2009-12-01T16:25:34Z2009-12-01T16:25:34ZGreat response, one more thing: I am having trouble understanding where you get x, or is x being declared right there? Why the 'equal to our greater than'?http://stackoverflow.com/questions/1827224/orderbydescending-per-msdn-what-on-earth-does-this-meanComment by Ryan on OrderByDescending() per MSDN, what on earth does this mean?Ryan2009-12-01T16:24:03Z2009-12-01T16:24:03Zno but while I was writing that question I decided to ask this one to get specifics on this thing, that other question was about learning LINQ to SQL, this one is about this specific block of code.http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822308#1822308Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-12-01T14:30:09Z2009-12-01T14:30:09ZOK, thanks Mark!http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822308#1822308Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T23:56:12Z2009-11-30T23:56:12ZI think I am confused about how to use the .OrderByDescending() because I know if I am now getting duplicates that I need to add the .Distinct() to finalordered (though I am not sure why the first query's Distinct() is not enough) but as soon as I add it I must remove the 'order by' and add it to the end, however I do not know what to put into the parentheses so that it orders by a variable that is not actually part of the thing I am finally selecting (assets), does this make sense? How can this be done?http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822308#1822308Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T22:01:48Z2009-11-30T22:01:48ZHow can I add Distinct to that finalOrdered query as well as keep the order by if I am selecting the assets and but the order by value is in assetVisits??http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822308#1822308Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T21:55:26Z2009-11-30T21:55:26Zcrap now I'm getting duplicates...http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822310#1822310Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T21:14:00Z2009-11-30T21:14:00Zalso how can I get the order by into the outermost query, how can I make it contain the t.Count variable to sort by? I can not figure this out for the life of me...http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822308#1822308Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T21:12:09Z2009-11-30T21:12:09Zno the last one included a lot less code and I never got it to work so I thought maybe my issue was the surrounding code, which I am realizing is truehttp://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-help/1822310#1822310Comment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T21:11:05Z2009-11-30T21:11:05ZI think this is exactly what I need but which one is the outermost query?http://stackoverflow.com/questions/1822289/linq-to-sql-query-not-ordering-properly-please-helpComment by Ryan on LINQ to SQL query not ordering properly, please help.Ryan2009-11-30T21:09:42Z2009-11-30T21:09:42Zdude I know it was 32% a few months ago when someone else told me that up until then I was always so conflicted because there were so many good answers, now I just pick the best one, don't worry I am in the habit now of always picking one!