User Jason - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T23:39:09Z http://stackoverflow.com/feeds/user/18969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/217030/flash-cs3-movie-fails-in-browser/217125#217125 0 Answer by Jason for Flash CS3 movie fails in browser Jason 2008-10-19T23:01:04Z 2008-10-19T23:01:04Z <p>shot in the dark - are you running the correct version of the flash player in the browser? keep in mind that the browser installed player and the IDE player are not necessarilly in sync.</p> http://stackoverflow.com/questions/210901/how-do-you-scale-http-server-like-google/210907#210907 3 Answer by Jason for How do you scale HTTP server like Google? Jason 2008-10-17T02:12:24Z 2008-10-17T02:12:24Z <p><a href="http://www.akamai.com" rel="nofollow">http://www.akamai.com</a></p> <p>Or, translated into English (and perhaps elaborating on Chris's answer), use a content delivery network (CDN) with nodes around the world - note that these are not just data-centers but actual web servers (though I'm sure most wouldn't make huge bones over the distinction). Akamai is but one example; hit google for "content delivery network" and you're bound to find others.</p> <p>You can also implement a caching strategy, though that will likely not get you quite as far. ;)</p> http://stackoverflow.com/questions/210421/how-do-you-get-people-to-value-abstraction-and-flexibility-over-just-getting-it/210897#210897 2 Answer by Jason for How do you get people to value abstraction and flexibility over "just getting it done"? Jason 2008-10-17T02:01:30Z 2008-10-17T02:01:30Z <p>I actually hate to take the dissenting opinion on this, but...</p> <p>To quote Van Halen (quoting cliche), "there's a time and place for everything." While I certainly don't advocate writing badly, ever, sometimes you do need to just get it done, and find that happy medium between robust/enduring and hacked/documented. (The documented part being particularly important, on two fronts: one, that you clearly indicate that whatever it is you're doing is being done simply in the interests of getting it done and is taking certain shortcuts; and, two, a rough idea as to what the more correct way of approaching the problem might be.</p> <p>As programmers, we often strive to write the perfect code (well, some of us do), and sometimes lose sight of the big picture - there are any number of reasons why it might be ok (on a level) to play fast and loose with the code, while minimizing the impact that will have down the road.</p> <p>Please do not use this as justification - the 80/20 rule applies here, of course. Most of the time you absolutely want to crush any shortcuts along these lines; but sometimes...</p> http://stackoverflow.com/questions/206286/how-do-you-tell-someone-theyre-writing-bad-code/207217#207217 1 Answer by Jason for How do you tell someone they're writing bad code? Jason 2008-10-16T02:21:24Z 2008-10-16T02:21:24Z <p>Not that I'm really adding all that much to this, but I have to agree that the two most important things to consider in your approach to this are to explain your reasoning, and to allow the coder in question to explain their reasoning. Bad code doesn't come from nowhere (and, yes, "bad code" is certainly a term up for discussion - I'm somewhat assuming in this situation that you are in a position to define what constitutes good vs. bad code).</p> <p>I've found that a questioning, educational approach works well with my team. I try to never say "do it like this" without any discussion or explanation as to why.</p> <p>And while you should be somewhat sensitive about it, you can't sugar coat the issue. The ideal is that your team is thinking about the code they're writing, not just in terms of what the code is doing but in how it's written.</p> <p>Lastly, I'd add that there are numerous books worth exploring on the topic - my favourite at this point is "Framework Design Guidelines" by Brad Abrams and Krystof Kwalina (et al), of the .NET BCL team at Microsoft. It does an amazing job of discussing and explaining the decisions that were made, and showcases places where the guidelines weren't followed internally and the fallout that resulted.</p>