User Chris Charabaruk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T09:58:30Zhttp://stackoverflow.com/feeds/user/5697http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1836313/what-will-passing-a-dictionary-into-controller-json-return0What will passing a Dictionary into Controller.Json return?Chris Charabaruk2009-12-02T22:27:08Z2009-12-02T23:17:46Z
<p>Let's say I have a <code>Dictionary<string,object></code> like so:</p>
<pre><code>var foo = new Dictionary<string, object>();
foo["bar"] = new
{
Quux = "bacon",
Quinge = 42
};
foo["baz"] = DateTime.Now;
</code></pre>
<p>I expect it the result to the user would be akin to:</p>
<pre><code>{"bar":{"Quux":"bacon","Quinge":42},"baz":"2009-12-02 17:23:00"}
</code></pre>
<p>However, it could just as easily be:</p>
<pre><code>[{"Key":"bar","Value":{"Quux":"bacon","Quinge":42}},
{"Key":"baz","Value":"2009-12-02 17:23:00"}]
</code></pre>
<p>Which will it be, and if it's the latter, what do I need to do to ensure that I get the former?</p>
http://stackoverflow.com/questions/1615583/net-mvc-selectlists-and-linq/1615704#16157040Answer by Chris Charabaruk for .net MVC, SelectLists, and LINQChris Charabaruk2009-10-23T20:23:56Z2009-10-23T20:23:56Z<p>You want to use the <code>select</code> keyword in the LINQ query:</p>
<pre><code>var foo = new SelectList(from x in FooRepository.Items
select new SelectListItem { Text = x.Name, Value = x.Id });
</code></pre>
http://stackoverflow.com/questions/1149068/render-view-to-string-followed-by-redirect-results-in-exception2Render view to string followed by redirect results in exceptionChris Charabaruk2009-07-19T01:59:46Z2009-07-23T01:53:09Z
<p>So here's the issue: I'm building e-mails to be sent by my application by rendering full view pages to strings and sending them. This works without any problem so long as I'm not redirecting to another URL on the site afterwards. Whenever I try, I get "System.Web.HttpException: Cannot redirect after HTTP headers have been sent."</p>
<p>I believe the problem comes from the fact I'm reusing the context from the controller action where the call for creating the e-mail comes from. More specifically, the HttpResponse from the context. Unfortunately, I can't create a new HttpResponse that makes use of HttpWriter because the constructor of that class is unreachable, and using any other class derived from TextWriter causes response.Flush() to throw an exception, itself.</p>
<p>Does anyone have a solution for this?</p>
<pre><code> public static string RenderViewToString(
ControllerContext controllerContext,
string viewPath,
string masterPath,
ViewDataDictionary viewData,
TempDataDictionary tempData)
{
Stream filter = null;
ViewPage viewPage = new ViewPage();
//Right, create our view
viewPage.ViewContext = new ViewContext(controllerContext,
new WebFormView(viewPath, masterPath), viewData, tempData);
//Get the response context, flush it and get the response filter.
var response = viewPage.ViewContext.HttpContext.Response;
//var response = new HttpResponseWrapper(new HttpResponse
// (**TextWriter Goes Here**));
response.Flush();
var oldFilter = response.Filter;
try
{
//Put a new filter into the response
filter = new MemoryStream();
response.Filter = filter;
//Now render the view into the memorystream and flush the response
viewPage.ViewContext.View.Render(viewPage.ViewContext,
viewPage.ViewContext.HttpContext.Response.Output);
response.Flush();
//Now read the rendered view.
filter.Position = 0;
var reader = new StreamReader(filter, response.ContentEncoding);
return reader.ReadToEnd();
}
finally
{
//Clean up.
if (filter != null)
filter.Dispose();
//Now replace the response filter
response.Filter = oldFilter;
}
}
</code></pre>
http://stackoverflow.com/questions/1129297/bizspark-licensing-after-product-goes-live/1129309#11293093Answer by Chris Charabaruk for Bizspark - Licensing after product goes liveChris Charabaruk2009-07-15T03:48:59Z2009-07-17T02:50:29Z<p>After you exit BizSpark, you'll be required to acquire new licenses for any server software you continue to use from Microsoft, that you acquired previously through the program.</p>
http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1141237#11412370Answer by Chris Charabaruk for How do I calculate relative time?Chris Charabaruk2009-07-17T02:47:42Z2009-07-17T02:47:42Z<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
public static class RelativeDateHelper
{
private static Dictionary<double, Func<double, string>> sm_Dict = null;
private static Dictionary<double, Func<double, string>> DictionarySetup()
{
var dict = new Dictionary<double, Func<double, string>>();
dict.Add(0.75, (mins) => "less than a minute");
dict.Add(1.5, (mins) => "about a minute");
dict.Add(45, (mins) => string.Format("{0} minutes", Math.Round(mins)));
dict.Add(90, (mins) => "about an hour");
dict.Add(1440, (mins) => string.Format("about {0} hours", Math.Round(Math.Abs(mins / 60)))); // 60 * 24
dict.Add(2880, (mins) => "a day"); // 60 * 48
dict.Add(43200, (mins) => string.Format("{0} days", Math.Floor(Math.Abs(mins / 1440)))); // 60 * 24 * 30
dict.Add(86400, (mins) => "about a month"); // 60 * 24 * 60
dict.Add(525600, (mins) => string.Format("{0} months", Math.Floor(Math.Abs(mins / 43200)))); // 60 * 24 * 365
dict.Add(1051200, (mins) => "about a year"); // 60 * 24 * 365 * 2
dict.Add(double.MaxValue, (mins) => string.Format("{0} years", Math.Floor(Math.Abs(mins / 525600))));
return dict;
}
public static string ToRelativeDate(this DateTime input)
{
TimeSpan oSpan = DateTime.Now.Subtract(input);
double TotalMinutes = oSpan.TotalMinutes;
string Suffix = " ago";
if (TotalMinutes < 0.0)
{
TotalMinutes = Math.Abs(TotalMinutes);
Suffix = " from now";
}
if (null == sm_Dict)
sm_Dict = DictionarySetup();
return sm_Dict.First(n => TotalMinutes < n.Key).Value.Invoke(TotalMinutes) + Suffix;
}
}
</code></pre>
<p>The same as <a href="http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/79601#79601">another answer to this question</a> but as an extension method with a static dictionary.</p>
http://stackoverflow.com/questions/151844/unicode-characters-that-can-be-used-to-trick-a-string-sorter0Unicode Characters that can be used to trick a string sorter?Chris Charabaruk2008-09-30T05:19:02Z2009-06-15T09:19:59Z
<p>Since Unicode lacks a series of zero width sorting characters, I need to determine equivalent characters that will allow me to force a certain order on a list that is automatically sorted by character values. Unfortunately the list items are not in an alphabetical order, nor is it acceptable to prefix them with visible characters to ensure the result of the sort matches the wanted outcome.</p>
<p>What Unicode characters can be thrown in front of regular Latin alphabet text, and will not appear, but still allow me to "spike" the sort in the way I require?</p>
<p>(BTW this is being done with Drupal 5 with a user profile list field. Don't bother suggesting changing that to a vocabulary/category.)</p>
http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger2How can I programmatically set the status message for Live Messenger?Chris Charabaruk2008-11-08T12:28:24Z2009-05-14T09:40:42Z
<p>I want to be able to change the status message for Live Messenger, but everything I've found only works for the music message (see <a href="http://coldacid.net/images/screenshots/live-messenger-status-and-music-messages" rel="nofollow">this screenshot</a> to see the difference between the two).</p>
<p>It is possible to do this, as there are programs that have the ability to change it, and some alternate clients for Live Messenger can also set the status message themselves. I just need to know how to do this myself.</p>
<p><strong>Clarification:</strong> The solution needs to work with the latest versions of Live Messenger (i.e. the wave 3 beta). Working with older versions is good too, but it's the 14.x versions that I'm working with.</p>
http://stackoverflow.com/questions/175256/what-is-the-best-way-to-use-assembly-versioning-attributes6What is the best way to use assembly versioning attributes?Chris Charabaruk2008-10-06T17:16:35Z2009-04-25T12:38:35Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.reflection.assemblyversionattribute.aspx" rel="nofollow">AssemblyVersion</a> and <a href="http://msdn.microsoft.com/en-us/library/system.reflection.assemblyfileversionattribute.aspx" rel="nofollow">AssemblyFileVersion</a> attributes are the built-in way of handling version numbers for .NET assemblies. While the framework provides the ability to have the least significant parts of a version number (build and revision, in Microsoft terms) automatically determined, I find the method for this pretty weak, and no doubt have many others.</p>
<p>So I'd like to ask, what ways have been determined to do the best job of having version numbers that better reflect the actual version of a project? Do you have a pre-build script that sets part of the version to the date and time, or repository version for your working copy of a project? Do you just use the automatic generation provided by the framework? Or something else? What's the best way to manage assembly/file versioning? </p>
http://stackoverflow.com/questions/659414/building-a-stack-in-entity-framework1Building a stack in Entity FrameworkChris Charabaruk2009-03-18T17:51:38Z2009-03-18T19:16:17Z
<p>One type of entity in my model (let's call it E1) needs to be able to treat its relationship with another entity type (E2) as a stack. Reciprocally, that other entity needs to be able to see all related entities of the first type where the E2 is at the top of the stack, and separately every case where the E2 is within a stack for an E1.</p>
<p>That doesn't sound all that clear to me, so let me try and demonstrate:</p>
<p>E1 entities: <strong>foo</strong> { stack: <em>quux</em>, <em>plugh</em>, <em>glurp</em> }, <strong>bar</strong> { stack: <em>plugh</em>, <em>glurp</em> }, <strong>baz</strong> { stack: <em>quux</em>, <em>plugh</em> }</p>
<p>E2 entities: <strong>quux</strong> { top: <code>null</code>; in: <em>foo</em>, <em>baz</em> }, <strong>plugh</strong> { top: <em>baz</em>; in: <em>foo</em>, <em>bar</em>, <em>baz</em> }, <strong>glurp</strong> { top: <em>bar</em>; in: <em>foo</em>, <em>bar</em> }</p>
<p>Right now, I have a database table which has columns for the keys to both E1 and E2, as well as an int for storing the E2's position in the stack. Entity Framework treats this table as its own entity, rather than part of the relationship between E1 and E2, which complicates queries and just leads to some plain ugly code.</p>
<p>I know I'm doing it wrong, but is it possible to do this right? And if so, how?</p>
http://stackoverflow.com/questions/176764/converting-ooo-macros-to-excel-macros1Converting OOo macros to Excel macrosChris Charabaruk2008-10-07T00:07:34Z2009-03-13T15:17:36Z
<p>I have an OpenDocument spreadsheet with macros in StarBasic/OOoBasic that I want to convert into an Excel spreadsheet, with the StarBasic macros translated to VBA. While OpenOffice.org claims to have the ability to translate VBA macros to StarBasic and back, my attempts to have OOo convert these original StarBasic macros to VBA have all failed.</p>
<p>Is there any guaranteed way to get these macros moved to VBA and Excel, without completely rewriting them? It seems that OOo will only turn StarBasic macros to VBA if they originated in that form.</p>
http://stackoverflow.com/questions/459722/associating-multiple-e-mail-addresses-with-asp-net-membershipprovider-accounts1Associating multiple e-mail addresses with ASP.NET MembershipProvider accountsChris Charabaruk2009-01-20T00:22:23Z2009-03-09T21:46:16Z
<p>For a project I am currently working on, I am interested in allowing users to provide multiple e-mail addresses, both for contact purposes as well as providing address book-based social matching. I plan to write a custom membership provider (aspnet_Membership table is too heavy for my liking), but the MembershipProvider system only allows for one e-mail address per account.</p>
<p>What would be the best idea for using the membership provider system but allow for multiple e-mail addresses per user? Or should I avoid MembershipProvider completely and roll my own system?</p>
http://stackoverflow.com/questions/605473/inheritance-problems-with-entity-framework-table-per-type0Inheritance problems with Entity Framework (table per type)Chris Charabaruk2009-03-03T07:53:59Z2009-03-04T04:00:15Z
<p>For part of the project I'm currently working on, I have a set of four tables for syndicatable actions. One table is the abstract base for the other three, and each table is represented in my EF model like so:</p>
<p><img src="http://coldacid.net/system/files/images/EF%2BModel%2BActions.png" alt="EF Model -- Actions" /></p>
<p>There are two problems that I'm currently facing with this, however. The first problem is that <code>Actor</code> (a reference to a <code>User</code>) and <code>Subject</code> (a reference to an entity of the class associated with each type of action) are <code>null</code> in my subclasses, despite the associated database columns holding valid keys to rows in their associated tables. While I can get the keys via <code>ActorReference</code> and <code>SubjectReference</code> this of course requires setting up a new EF context and querying it for the referenced objects (as <em><code>Foo</code></em><code>Reference.Value</code> is also null).</p>
<p>The second problem is that the reciprocal end of the relationship between the concrete action classes and their related entity classes always turn up nothing. For example, <code>Task.RelatedActions</code>, which should give me all <code>TaskAction</code> objects where <code>Subject</code> refers to the particular task object on which <code>RelatedActions</code> is called, is entirely devoid of objects. Again, valid rows exist in the database, Entity Framework just isn't putting them in objects and handing them to me.</p>
<p>Anyone know what it is I'm doing wrong, and what I should do to make it work?</p>
<p><strong>Update:</strong> Seems that none of the relationship properties are working in my entity model any more, at all. WTF...</p>
http://stackoverflow.com/questions/274439/built-in-net-algorithm-to-round-value-up-to-the-nearest-10-interval/274487#2744879Answer by Chris Charabaruk for Built in .Net algorithm to round value up to the nearest 10 intervalChris Charabaruk2008-11-08T07:13:29Z2009-03-03T09:33:57Z<p>There is no built-in function in the class library that will do this. The closest is <a href="http://msdn.microsoft.com/en-us/library/system.math.round.aspx" rel="nofollow">System.Math.Round()</a> which is only for rounding numbers of types Decimal and Double to the nearest integer value. However, you can wrap your statement up in a extension method, if you are working with .NET 3.5, which will allow you to use the function much more cleanly.</p>
<pre><code>public static class ExtensionMethods
{
public static int RoundOff (this int i)
{
return ((int)Math.Round(i / 10.0)) * 10;
}
}
int roundedNumber = 236.RoundOff(); // returns 240
int roundedNumber2 = 11.RoundOff(); // returns 10
</code></pre>
<p>If you are programming against an older version of the .NET framework, just remove the "this" from the RoundOff function, and call the function like so:</p>
<pre><code>int roundedNumber = ExtensionMethods.RoundOff(236); // returns 240
int roundedNumber2 = ExtensionMethods.RoundOff(11); // returns 10
</code></pre>
http://stackoverflow.com/questions/604191/mocking-an-entity-framework-model1Mocking an Entity Framework model?Chris Charabaruk2009-03-02T21:59:35Z2009-03-02T22:24:08Z
<p>Is it possible to mock an EF model so that I can test code which uses the model classes without getting rid of LINQ to Entities code strewn throughout my project? Or will it be necessary to set up a test database for the model to hit instead?</p>
http://stackoverflow.com/questions/604104/does-c-allocate-memory-automatically-for-me/604121#6041214Answer by Chris Charabaruk for Does C allocate memory automatically for me?Chris Charabaruk2009-03-02T21:41:50Z2009-03-02T21:54:45Z<p>Anything not allocated on the heap (via <code>malloc</code> and similar calls) is allocated on the stack, instead. Because of that, anything created in a particular function without being <code>malloc</code>'d will be destroyed when the function ends. That includes objects returned; when the stack is unwound after a function call the returned object is copied to space set aside for it on the stack by the caller function.</p>
<p><strong>Warning:</strong> If you want to return an object that has pointers to other objects in it, make sure that the objects pointed to are created on the heap, and better yet, create that object on the heap, too, unless it's not intended to survive the function in which it is created.</p>
http://stackoverflow.com/questions/600968/does-anyone-remember-programming-on-the-commodore-64-or-amiga-500/600986#6009861Answer by Chris Charabaruk for Does anyone remember programming on the Commodore 64 Or Amiga 500Chris Charabaruk2009-03-02T01:26:40Z2009-03-02T01:26:40Z<p>I learnt to program on a Commodore 64. First BASIC 2.0, and later 6502 assembler. It was a great machine, a glorious machine. Those halcyon days of my youth, when I first applied my mind to the laws of logic and software development, those days set me on the course I have taken thus far through life.</p>
<p>I loved that Commodore 64, man. It was great.</p>
http://stackoverflow.com/questions/274668/how-can-i-programmatically-set-the-status-message-for-live-messenger/543941#5439410Answer by Chris Charabaruk for How can I programmatically set the status message for Live Messenger?Chris Charabaruk2009-02-12T23:08:43Z2009-02-12T23:08:43Z<p>There is no programmatic way of setting the Live Messenger status message that works with versions inclusive of Live Wave 3.</p>
http://stackoverflow.com/questions/459910/asp-net-membership-provider-with-sql-schemas/459916#4599164Answer by Chris Charabaruk for ASP.NET Membership provider with SQL schema'sChris Charabaruk2009-01-20T02:06:39Z2009-01-20T02:06:39Z<p>I believe the table names are hard-coded into the default SQL providers for ASP.NET. You'll have to implement custom providers to do the same things as the default providers, but using an alternate table name instead. <a href="http://www.devx.com/asp/Article/29256" rel="nofollow">This article</a> can help you figure out how to write custom providers.</p>
http://stackoverflow.com/questions/313048/documentation-for-the-dynamic-language-runtime0Documentation for the Dynamic Language Runtime?Chris Charabaruk2008-11-23T22:35:19Z2008-12-29T18:23:47Z
<p>Google has failed me. I want to read actual documentation for the DLR, not news articles, as I'd like to attempt to create my own language upon the DLR's framework. Is there any downloadable, online, or even paper-based documentation for the DLR that I'd be able to use, instead of having to go code spelunking to understand what everything does?</p>
http://stackoverflow.com/questions/345892/whats-the-difference-between-class-1-and-class-3-roots-and-the-certificates-sig1What's the difference between class 1 and class 3 roots, and the certificates signed by them?Chris Charabaruk2008-12-06T04:16:00Z2008-12-06T04:26:34Z
<p>Pretty much what the question says. What's the difference between the two classes of roots? The differences between the certificates signed by such roots? What uses would a class 1 signed certificate have that a class 3 doesn't, and vice versa?</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318859#3188592Answer by Chris Charabaruk for Do you add information to the top of each .hpp/.cpp file?Chris Charabaruk2008-11-25T21:04:49Z2008-11-26T01:38:38Z<p>I include the file name, a brief description of the file's purpose, and a $Id$ tag for CVS or Subversion purposes. File creator and date of creation can be found by checking the repository, so it's not needed.</p>
<p>File name is included because depending on what you're using to edit the file, that might not be entirely apparent when you're editing it. The description can be used to determine if a bit of code belongs in the file, or if it should be moved to another. And of course, $Id$ gives you last change time, and last editor.</p>
<p>Embedding check-in messages is only useful when the message is useful, and only if the file is updated once and a while. Including every message will simply bloat the file to the point where there's more comments describing changes than there is actual code. Best to leave that to the repository as well; often it's only a short command line to get the file's check-in log.</p>
<p>If you're stuck with a revision control system that can't keep history for moves and copies, in that case just reference the original file and its version number. Of course, if you're using a system that was created sometime in this century and not the last, that shouldn't be an issue.</p>
http://stackoverflow.com/questions/297624/vbx-language-hosting-via-dlr/313267#3132670Answer by Chris Charabaruk for VBx language hosting via DLR?Chris Charabaruk2008-11-24T02:04:02Z2008-11-24T02:04:02Z<p>Officially, there's no supported dynamic languages until VS10 is released. At that time, VBx, which apparently will be built on top of the DLR, will be released, probably alongside version 2.0 of the DLR. (Version 1.0's release is immanent.)</p>
<p>You might find some useful stuff in the VS10 CTP, but keep in mind it's neither supported, nor will there be much for documentation at this time. If you're hell-bent on hosting VB in your app, on the DLR, you'll just have to wait a year and a bit.</p>
http://stackoverflow.com/questions/312721/which-book-should-i-read-first-pragmatic-programmer-or-code-complete/312751#3127512Answer by Chris Charabaruk for Which book should I read first: Pragmatic Programmer or Code Complete?Chris Charabaruk2008-11-23T17:40:01Z2008-11-23T17:40:01Z<p>As long as you read both of them, it doesn't matter which one you read first. But I'd also say start with Pragmatic Programmer, as it's the smaller of the two.</p>
http://stackoverflow.com/questions/307437/moving-a-directory-atomically/307447#3074471Answer by Chris Charabaruk for Moving a directory atomicallyChris Charabaruk2008-11-21T00:51:34Z2008-11-21T00:51:34Z<p>I don't believe there's any atomic way to do this. Your best bet is to do something like this:</p>
<pre><code>mv alpha delme
mv bravo alpha
rm -rf delme
</code></pre>
http://stackoverflow.com/questions/300854/alternative-entropy-sources/300977#3009771Answer by Chris Charabaruk for Alternative Entropy SourcesChris Charabaruk2008-11-19T04:20:49Z2008-11-19T04:20:49Z<p><img src="http://imgs.xkcd.com/comics/random_number.png" alt="RFC 1149.5 specified 4 as the standard IEEE-vetted random number." /></p>
<p>RFC 1149.5 specified 4 as the standard IEEE-vetted random number.</p>
http://stackoverflow.com/questions/299235/convert-xhtml-to-word-ml/299264#2992643Answer by Chris Charabaruk for Convert XHTML to Word MLChris Charabaruk2008-11-18T16:27:56Z2008-11-18T16:27:56Z<p>XSLT on its own won't do you any good if you want to retain any formatting from outside the XHTML file (for example, in external style sheets). Besides, Word has the ability to open (X)HTML files, and has for a while. It might not come out looking as good as the original, but it works.</p>
<p>In fact, if you have Word and some skill with VB Script, I believe that it is possible to write a script that opens a (X)HTML file, then saves it as WordML or plain old Word if you're using Word 2003 or older, or as .docx if you have 2007.</p>
http://stackoverflow.com/questions/176764/converting-ooo-macros-to-excel-macros/290342#2903420Answer by Chris Charabaruk for Converting OOo macros to Excel macrosChris Charabaruk2008-11-14T15:05:44Z2008-11-14T15:05:44Z<p>As of OpenOffice.org 3.0, there's nothing that can be done but rewrite the macros. Fortunately VBA and StarBasic are similar enough that the only work that needs to be done is changing over the application document model.</p>
http://stackoverflow.com/questions/104579/cvs-and-visual-studio-2008-integration-options/281337#2813371Answer by Chris Charabaruk for CVS and Visual Studio 2008 - integration optionsChris Charabaruk2008-11-11T16:13:27Z2008-11-11T16:13:27Z<p>You might be stuck with one of those MSSCCI bridges you mentioned. As it is, not too many people still use CVS, especially those using Visual Studio (most of them seem to use Team System's revision control, or Subversion).</p>
<p>There's always the possibility of hacking together your own macros to take care of CVS operations, but this has the disadvantage of not giving you real, in-depth integration the way a an SCC provider, or even an old brige, would.</p>
http://stackoverflow.com/questions/274475/do-you-prefer-verbose-or-shorthand-languages/274502#2745026Answer by Chris Charabaruk for Do you prefer verbose or shorthand languagesChris Charabaruk2008-11-08T07:35:20Z2008-11-08T07:35:20Z<p>Code (and any writing!) should be as short it can be without losing readability.</p>
<ul>
<li>Languages which force a lot of lingual cruft on the programmer are the antithesis of good programming, because all the added verbosity causes readability to be highly diminished, therefore disguising the activities performed by said code.</li>
<li>Languages which use more keywords to do the same as another language lead to poor programming, because it becomes harder to read and comprehend what the code does.</li>
</ul>
<p>Those two points say the same thing. You tell me which is easier to read and understand. :-)</p>
http://stackoverflow.com/questions/257533/can-the-windows-mobile-6-sdk-be-used-to-develop-programs-for-older-versions-of-wi2Can the Windows Mobile 6 SDK be used to develop programs for older versions of Windows Mobile?Chris Charabaruk2008-11-02T22:59:28Z2008-11-03T16:02:55Z
<p>I'd like to develop a few applications for a device I own which has Windows Mobile 2003 on it, but I don't care to hunt down a copy of Visual Studio 2003 to do so. I'd like to know if the Mobile 6 SDK can be used for this purpose.</p>
<p>There's no upgrade path to newer versions of Windows Mobile for this device, and I doubt I'll be getting any newer devices any time soon. Just in case you'd suggest something like that...</p>
http://stackoverflow.com/questions/1836313/what-will-passing-a-dictionary-into-controller-json-return/1836579#1836579Comment by Chris Charabaruk on What will passing a Dictionary into Controller.Json return?Chris Charabaruk2009-12-02T23:23:16Z2009-12-02T23:23:16ZQuite happy with the JSON features I get as part of ASP.NET MVC, tyvm.http://stackoverflow.com/questions/1775309/how-to-use-function12-in-javascript-and-how-does-it-work/1775318#1775318Comment by Chris Charabaruk on how to use function(1)(2) in javascript? and how does it work?Chris Charabaruk2009-11-22T06:40:31Z2009-11-22T06:40:31ZNo need to give a name to the function being returned, btw. <code>return function(n2)</code> would be just as good, and less typing, too.http://stackoverflow.com/questions/1775173/is-a-gaming-machine-better-for-software-development/1775199#1775199Comment by Chris Charabaruk on Is a gaming machine better for software development?Chris Charabaruk2009-11-21T12:51:00Z2009-11-21T12:51:00ZWhat danielkza said. With powerful enough hardware, you can always emulate the target system through virtualization.http://stackoverflow.com/questions/1775309/how-to-use-function12-in-javascript-and-how-does-it-work/1775329#1775329Comment by Chris Charabaruk on how to use function(1)(2) in javascript? and how does it work?Chris Charabaruk2009-11-21T12:44:58Z2009-11-21T12:44:58ZWut. Son, I am disappoint. ಠ_ಠhttp://stackoverflow.com/questions/1752494/detect-if-any-key-is-pressed-in-c-not-a-b-but-anyComment by Chris Charabaruk on Detect if any key is pressed in C# (not A, B, but any)Chris Charabaruk2009-11-17T23:22:44Z2009-11-17T23:22:44ZThat doesn't help.http://stackoverflow.com/questions/1733433/how-to-create-an-event-that-runs-every-24-hours/1733474#1733474Comment by Chris Charabaruk on How to create an event that runs every 24 hours?Chris Charabaruk2009-11-14T06:55:17Z2009-11-14T06:55:17ZPut four spaces in front of each line for those cron entries. That way the code formatting takes over and your answer doesn't look like crap.http://stackoverflow.com/questions/249066/how-to-avoid-httprequestvalidationexception-in-asp-net-mvc-rendering-the-same-vie/552107#552107Comment by Chris Charabaruk on How to avoid HttpRequestValidationException in ASP.NET MVC rendering the same view which caused the exceptionChris Charabaruk2009-11-04T14:02:43Z2009-11-04T14:02:43ZIt'd be so nice if ValidateInputAttribute would accept the name of a field (or a list of names), so that validation could be turned off selectively. All or nothing tends to suck, cause duplication of effort, and generally just makes things more troublesome.http://stackoverflow.com/questions/1637171/how-to-keep-an-engineering-log/1637215#1637215Comment by Chris Charabaruk on How to keep an Engineering LogChris Charabaruk2009-10-28T13:51:34Z2009-10-28T13:51:34ZOh, they keep them, they just don't let you access them. (Which, I guess, amounts to the same thing from a practical point of view.)http://stackoverflow.com/questions/1637019/how-to-get-the-jquery-ajax-error-response-textComment by Chris Charabaruk on How to get the jQuery $.ajax error response text?Chris Charabaruk2009-10-28T13:49:43Z2009-10-28T13:49:43Zthenduks: PHP knows what it is doing. The issue is that because the HTTP status coming back is 500, <code>$.ajax()</code> calls the error function passed to it.http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-aiComment by Chris Charabaruk on What is the best Battleship AI?Chris Charabaruk2009-10-27T18:43:11Z2009-10-27T18:43:11ZBTW, reddited: <a href="http://www.reddit.com/r/programming/comments/9ya6x/can_you_write_the_worlds_best_ai_for_battleship/" rel="nofollow">reddit.com/r/programming/…</a>http://stackoverflow.com/questions/1596139/hidden-features-and-dark-corners-of-stl/1596200#1596200Comment by Chris Charabaruk on Hidden Features and Dark Corners of STL?Chris Charabaruk2009-10-27T15:45:19Z2009-10-27T15:45:19ZAn example would help. I'd add one if I had ever dealt with locales myself... :phttp://stackoverflow.com/questions/1587963/what-are-the-best-ways-of-protecting-my-source-code/1587967#1587967Comment by Chris Charabaruk on What are the best ways of protecting my source code?Chris Charabaruk2009-10-19T10:55:22Z2009-10-19T10:55:22ZIf there's a will, there's a way.http://stackoverflow.com/questions/1587375/what-are-some-quick-tips-for-increasing-jquery-performance/1587396#1587396Comment by Chris Charabaruk on What are some quick tips for increasing jQuery performance?Chris Charabaruk2009-10-19T10:08:01Z2009-10-19T10:08:01ZTrue if you're looking at drastic improvements in speed. However, there are simple tricks which do make for better execution, even if its only 100 or so milliseconds.http://stackoverflow.com/questions/1587375/what-are-some-quick-tips-for-increasing-jquery-performance/1587393#1587393Comment by Chris Charabaruk on What are some quick tips for increasing jQuery performance?Chris Charabaruk2009-10-19T10:05:52Z2009-10-19T10:05:52Z@jpartogi: jQuery creates a new object every time you pass a selector into $() but because its methods return <code>this</code> you can stack them like that. The trick here is to not create three different objects all for the same selector.http://stackoverflow.com/questions/1587375/what-are-some-quick-tips-for-increasing-jquery-performance/1587393#1587393Comment by Chris Charabaruk on What are some quick tips for increasing jQuery performance?Chris Charabaruk2009-10-19T10:04:10Z2009-10-19T10:04:10ZOr if you can't do it all at once, put $("#foo") in a variable and use that rather than recreating $("#foo") every time.