User Nathan Smith - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T12:34:15Z http://stackoverflow.com/feeds/user/4998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856726/how-do-you-encode-xml-safely-with-actionscript-3 0 How do you encode XML safely with ActionScript 3? Nathan Smith 2009-12-06T21:43:50Z 2009-12-07T12:53:40Z <p>I'm capturing data from the user and writing it to an xml string like so:</p> <p>var myXml:XML = {userEnteredText} </p> <p>This is fine and dandy until the user gets cute with special characters like "&amp; &lt; >" etc. Illegal characters are also a problem like 0x19.</p> <p>Is there are method that will sanatize my xml and encode special characters or will I have to roll my own?</p> http://stackoverflow.com/questions/1586808/how-do-you-animate-a-display-object-in-an-arc-in-as3 1 How do you animate a display object in an arc in AS3? Nathan Smith 2009-10-19T03:11:35Z 2009-10-21T15:04:00Z <p>This is for a game in a flash AS3 only project.</p> <p>the player controls a character with a gun. By clicking on the screen the gun fires a missile in an arc to the point clicked.</p> <p>Whats the best way to calculate the x and y co-ordinates of the missile for each frame?</p> http://stackoverflow.com/questions/559013/how-to-route-amf-requests-though-one-trusted-server/1332340#1332340 0 Answer by Nathan Smith for How to route AMF requests though one trusted server Nathan Smith 2009-08-26T04:34:35Z 2009-08-26T04:34:35Z <p>If you happen to be using asp.net in your web server you can use either <a href="http://www.fluorinefx.com/" rel="nofollow">FlourineFx</a> (open source) or <a href="http://www.themidnightcoders.com/" rel="nofollow">WebOrb</a> (commercial) as your server.</p> <p>Both options can be hosted in IIS or act as windows services.</p> <p>You can then just drop your dotnet class libraries for connecting to your secure server within the the bin directories of the servers.</p> http://stackoverflow.com/questions/68624/how-to-parse-a-query-string-into-a-namevaluecollection-in-net 4 How to parse a query string into a NameValueCollection in .NET Nathan Smith 2008-09-16T01:42:35Z 2009-08-24T15:08:27Z <p>I would like to parse a string such as "p1=6&amp;p2=7&amp;p3=8" into a NameValueCollection.</p> <p>What is the most elegant way of doing this when you don't have access to the Page.Request object?</p> http://stackoverflow.com/questions/288673/how-do-you-hook-up-a-module-thats-loaded-dynamically-in-the-puremvc-framework-for 0 How do you hook up a Module thats loaded dynamically in the PureMVC framework for ActionScript 3 Nathan Smith 2008-11-13T22:56:37Z 2009-05-10T01:59:55Z <p>I'm using the PureMVC framework on a FlexBuilder 3 project. I have already hooked up the ApplicationFacade and have executed simple commands successfully.</p> <p>I have a ModuleLoader in my entry point Application.mxml and I set the url of the ModuleLoader when the user logs in from the ApplicationMdiator.</p> <p>Where do I register my module mediator that gets dynamically loaded when the url is set because I don't have an instance available from the ApplicationMediator?</p> <p>Do I need to create another facade for the Module?</p> http://stackoverflow.com/questions/447821/how-do-i-unsubscribe-all-handlers-from-an-event-for-a-particular-class-in-c 2 How do I unsubscribe all handlers from an event for a particular class in C#? Nathan Smith 2009-01-15T18:03:57Z 2009-01-15T18:48:48Z <p>Basic premise:</p> <p>I have a Room which publishes an event when an Avatar "enters" to all Avatars within the Room. When an Avatar leaves the Room I want it to remove all subscriptions for that room.</p> <p>How can I best unsubscribe the Avatar from all events in the room before I add the Avatar to a new Room and subscribe to the new Room's events?</p> <p>The code goes something like this:</p> <pre><code>class Room { public event EventHandler&lt;EnterRoomEventArgs&gt; AvatarEntersRoom; public event EvnetHandler&lt;LeaveRoomEventArgs&gt; AvatarLeavesRoom; public event EventHandler&lt;AnotherOfManyEventArgs&gt; AnotherOfManayAvatarEvents; public void AddPlayer(Avatar theAvatar) { AvatarEntersRoom(this, new EnterRoomEventArgs()); AvatarEntersRoom += new EventHandler&lt;EnterRoomEventArgs&gt;(theAvatar.HandleAvatarEntersRoom); AvatarLeavesRoom += new EventHandler&lt;EnterRoomEventArgs&gt;(theAvatar.HandleAvatarEntersRoom); AnotherOfManayAvatarEvents += new EventHandler&lt;EnterRoomEventArgs&gt;(theAvatar.HandleAvatarEntersRoom); } } class Avatar { public void HandleAvatarEntersRoom(object sender, EnterRoomEventArgs e) { Log.Write("avatar has entered the room"); } public void HandleAvatarLeaveRoom(object sender, LeaveRoomEventArgs e) { Log.Write("avatar has left room"); } public void HandleAnotherOfManayAvatarEvents(object sender, AnotherOfManyEventArgs e) { Log.Write("another avatar event has occurred"); } } </code></pre> http://stackoverflow.com/questions/288673/how-do-you-hook-up-a-module-thats-loaded-dynamically-in-the-puremvc-framework-for/292961#292961 1 Answer by Nathan Smith for How do you hook up a Module thats loaded dynamically in the PureMVC framework for ActionScript 3 Nathan Smith 2008-11-15T19:41:32Z 2008-11-15T19:41:32Z <p>PureMVC comes in two flavours for ActionScript 3 PureMVC Standard and PureMVC Multicore respectively.</p> <p>You will need to use the PureMVC Multicore version if you want to use modules in a flex application.</p> <p>A good reference explanation with linked demos can be found <a href="http://puremvc.org/content/view/75/181/" rel="nofollow">here</a></p> http://stackoverflow.com/questions/222970/scalability-on-the-web/223029#223029 0 Answer by Nathan Smith for Scalability on the web Nathan Smith 2008-10-21T18:53:18Z 2008-10-21T18:53:18Z <p>A compiled language will generally run faster than an interpreted language so I think Ruby and PHP start behind the eight ball but It really comes down to how you use the language and how you structure the code.</p> <p>All languages will have their own best practices and patterns to build scalable applications and often there will be compromises depending on the functionality of the proposed application.</p> http://stackoverflow.com/questions/199113/how-do-you-cast-from-page-master-to-a-specific-master-page-in-asp-net 1 How do you cast from Page.Master to a specific master page in ASP.NET Nathan Smith 2008-10-13T21:34:05Z 2008-10-13T21:39:30Z <p>I have a BasePage which inherits from System.Web.UI.Page and every page that inherits the BasePage will have the same master page.</p> <p>How do I cast the Page.Master of the BasePage to the specific master page so I can access properties on it?</p> http://stackoverflow.com/questions/195951/change-an-elements-css-class-with-javascript 4 Change an element's CSS class with Javascript Nathan Smith 2008-10-12T20:06:43Z 2008-10-12T22:32:09Z <p>I want to change a CSS class of an HTML element in response to an onClick event using javascript.</p> http://stackoverflow.com/questions/146743/how-do-you-store-an-integer-and-boolean-key-value-pair-in-an-un-ordered-collectio 0 How do you store an Integer and Boolean key value pair in an un-ordered collection? Nathan Smith 2008-09-28T21:10:14Z 2008-09-28T22:03:59Z <p>I need to store a list of key value pairs of (integer, boolean) in .NET</p> <p>When I use a dictionary it re-orders them. Is there a built in collection that will handle this.</p> http://stackoverflow.com/questions/90312/selling-points-of-agile-practices/90377#90377 0 Answer by Nathan Smith for selling points of Agile practices Nathan Smith 2008-09-18T05:52:34Z 2008-09-18T05:52:34Z <p>When it comes to convincing management it comes down to numbers. I'm not sure where your revenue model is and agile is a broad term that includes recognized best practices learnt over the past 20 years.</p> <p>I find Test Driven Development reduces the amount of defects in shipped code. The cost of a defect is far more expensive to the company once the code has gone live.</p> <p>A continuous integration server is huge for saving time once its set up.</p> <p>Using the Scrum style of project management gears you towards the release early and release often mindset which means you are actually producing production ready code early on in the life-cycle. Early results are good yes?</p> <p>In my experience you end up with a more satisfied customer as they are part of the process and you can respond to their feedback earlier and with less re-work than you would with more traditional waterfall methodologies. But now we're starting to get into the more subjective reasons of why to go agile - of which there are many but which hold little weight with "The Man"</p> <p>I recomend you adopt agile practices within the development team stealthily so that you can then go to management after a successful release or two under your belt. That way they would have already experienced the benefits. </p> <p>Better to ask for forgiveness than permission.</p> http://stackoverflow.com/questions/58278/design-by-coding-its-wrong-but-easier-to-visualize/58458#58458 0 Answer by Nathan Smith for Design by coding, its wrong but easier to visualize Nathan Smith 2008-09-12T07:44:19Z 2008-09-12T07:44:19Z <p><a href="http://en.wikipedia.org/wiki/Test-driven_development" rel="nofollow">Test Driven Development</a> (TDD) is a technique that immediately springs to mind to support your existing practice of "Design by Coding". Implemented properly this will allow you to refactor your code with confidence and that is essential if you are evolving your design incrementally.</p> <p>Incidentally TDD works very well with a <a href="http://en.wikipedia.org/wiki/Scrum_(development)" rel="nofollow">Scrum</a> style approach to project management which is also usually light on documentation.</p> <p>One of the Agile mantras is to release early and release often. It sounds like you are doing something similar already, you just need to put the structures in place so that you can respond to the changes in design without the fear of breaking your code.</p> http://stackoverflow.com/questions/58107/how-to-find-that-rock-star-junior-developer/58416#58416 4 Answer by Nathan Smith for How to Find that Rock Star Junior Developer? Nathan Smith 2008-09-12T06:50:37Z 2008-09-12T06:50:37Z <p>Always ask for a sample of their favorite code before they come to the interview. I find how a person writes his/her code to be highly revealing about their programming personality and whether they will fit into our team's style.</p> <p>Things I look for when evaluating the code:</p> <ol> <li>How they name their methods and variables.</li> <li>Do methods have a single responsibility or do you write god methods.</li> <li>Is there any exception handling and at what level.</li> <li>What is the code trying to accomplish. Is it interesting?</li> <li>Assess the overall elegance of the code.</li> </ol> <p>If they get an interview - and believe me this will weed out the majority of candidates - I will ask them to justify coding decisions. At this point the programmers we want on our team will give passionate and animated responses.</p> <p>Open source development experience is a bonus but anyone doing that will pass the code review stage anyway.</p> http://stackoverflow.com/questions/1586808/how-do-you-animate-a-display-object-in-an-arc-in-as3/1586822#1586822 Comment by Nathan Smith on How do you animate a display object in an arc in AS3? Nathan Smith 2009-10-19T23:42:02Z 2009-10-19T23:42:02Z If the circle diameter (distance) is bigger doesn't the missile have to travel further around the circumference for each angle increment? http://stackoverflow.com/questions/1586808/how-do-you-animate-a-display-object-in-an-arc-in-as3/1586822#1586822 Comment by Nathan Smith on How do you animate a display object in an arc in AS3? Nathan Smith 2009-10-19T21:36:03Z 2009-10-19T21:36:03Z How do you get a constant speed with different distances. As I increase the angle at a constant rate the missile speeds up the further away it is? http://stackoverflow.com/questions/222981/website-layout-div-positioning-and-placement Comment by Nathan Smith on Website Layout: DIV Positioning and Placement Nathan Smith 2008-10-21T18:45:36Z 2008-10-21T18:45:36Z what is the question here?