User Theo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T19:33:59Zhttp://stackoverflow.com/feeds/user/1109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143403/how-does-the-portability-of-puremvc-benefit-the-application-developer3How does the portability of PureMVC benefit the application developer?Theo2008-09-27T10:55:36Z2009-12-09T10:23:20Z
<p>One of the stated goals of the PureMVC framework is to avoid platform dependencies in order to be portable. Considering that because of language and API differences application code will always be heavily dependent on the platform, and that avoiding platform dependencies makes the framework reinvent the wheel and/or only provide a least-common-denominator feature set, in what way does the portability of the framework benefit me as an application developer?</p>
http://stackoverflow.com/questions/696338/when-to-use-memoization-in-ruby-on-rails/1847194#18471942Answer by Theo for When to use memoization in Ruby on RailsTheo2009-12-04T14:15:04Z2009-12-04T14:15:04Z<p>I think many Rails developers don't fully understand what memoization does and how it works. I've seen it applied to methods that return lazy loaded collections (like a Sequel dataset), or applied to methods that take no arguments but calculate something based on instance variables. In the first case the memoization is nothing but overhead, and in the second it's a source of nasty and hard to track down bugs.</p>
<p>I would <em>not</em> apply memoization if </p>
<ul>
<li>the returned value is merely slightly expensive to calculate. It would have to be <em>very</em> expensive, and not further optimizable, for it to be worth memoization.</li>
<li>the returned value is or could be lazy loaded</li>
<li>the method is not a pure function, i.e. it is guaranteed to return exactly the same value for the same arguments -- and only uses the arguments to do it's work, or other pure functions. Using instance variables or calling methods that in turn uses instance variables means that the method could return different results for the same arguments.</li>
</ul>
<p>There are other situations too where memoization isn't appropriate, such as the one in the question and the answers above, but these are three that I think aren't as obvious.</p>
<p>The last item is probably the most important: memoization caches a result based on the arguments to the method, if the method looks like this it cannot be memoized:</p>
<pre><code>def unmemoizable1(name)
"%s was here %s" % name, Time.now.strftime('%Y-%m-%d')
end
def unmemoizable2
find_by_shoe_size(@size)
end
</code></pre>
<p>Both can, however, be rewritten to take advantage of memoization (although in these two cases it should obviously not be done for other reasons):</p>
<pre><code>def unmemoizable1(name)
memoizable1(name, Time.now.strftime('%Y-%m-%d')
end
def memoizable1(name, time)
"#{name} was here #{time}"
end
memoize :memoizable1
def unmemoizable2
memoizable2(@size)
end
def memoizable2(size)
find_by_shoe_size(size)
end
memoize :memoizable2
</code></pre>
<p>(assuming that <code>find_by_shoe_size</code> didn't have, or relied on, any side effects)</p>
<p>The trick is to extract a pure function from the method and apply memoization to that instead. </p>
http://stackoverflow.com/questions/1811864/possible-to-load-nokogiri-in-jruby-without-installing-nokogiri-java/1812111#18121110Answer by Theo for possible to load nokogiri in jruby without installing nokogiri-java ?Theo2009-11-28T09:45:38Z2009-11-28T09:45:38Z<p>Nokogiri should work under FFI in JRuby. See <a href="http://www.ruby-forum.com/topic/186274" rel="nofollow">http://www.ruby-forum.com/topic/186274</a></p>
http://stackoverflow.com/questions/1812059/regular-expression-neeed-help-for-url-rewritting/1812098#18120981Answer by Theo for Regular expression : neeed help for url rewritting Theo2009-11-28T09:35:36Z2009-11-28T09:35:36Z<p><em>2) is my regex correct?</em></p>
<p>No, you should probably change it to <code>^/articles/([^/]+)/.+$</code>, otherwise the first capture will gobble up "3/name_of_article" and not just "3", and you don't need the second capture group. You can also write it with a non-greedy match in the capture group, e.g. <code>^/articles/(.+?)/.+$</code>.</p>
http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php/60496#6049661Answer by Theo for Best way to stop SQL Injection in PHPTheo2008-09-13T12:30:26Z2009-11-06T20:30:58Z<p>Use prepared statements. These are SQL statements that sent to and parsed by the database server separately from any parameters.</p>
<p>If you use PDO you can work with prepared statements like this:</p>
<pre><code>$preparedStatement = $db->prepare('SELECT * FROM employees WHERE name = :name');
$preparedStatement->execute(array(':name' => $name));
$rows = $preparedStatement->fetchAll();
</code></pre>
<p>(where <code>$db</code> is a PDO object, see <a href="http://php.net/manual/en/book.pdo.php" rel="nofollow">the PDO documentation</a>)</p>
<p>What happens is that the SQL statement you pass to <code>prepare</code> is parsed and compiled by the database server. By specifying parameters (either a <code>?</code> or a named parameter like <code>:name</code> in the example above) you tell the database engine where you want to filter on. Then when you call <code>execute</code> the prepared statement is combined with the parameter values you specify. </p>
<p>The important thing here is that the parameter values are combined with the compiled statement, not a SQL string. SQL injection works by tricking the script into including malicious strings when it creates SQL to send to the database. So by sending the actual SQL separately from the parameters you limit the risk of ending up with something you didn't intend. Any parameters you send when using a prepared statement will just be treated as strings (although the database engine may do some optimization so parameters may end up as numbers too, of course). In the example above, if the <code>$name</code> variable contains <code>'Sarah'; DELETE * FROM employees</code> the result would simply be a search for the string "'Sarah'; DELETE * FROM employees", and you will not end up with an empty table.</p>
<p>Another benefit with using prepared statements is that if you execute the same statement many times in the same session it will only be parsed and compiled once, giving you some speed gains.</p>
<p>Oh, and since you asked about how to do it for an insert, here's an example:</p>
<pre><code>$preparedStatement = $db->prepare('INSERT INTO table (column) VALUES (:column)');
$preparedStatement->execute(array(':column' => $unsafeValue));
</code></pre>
http://stackoverflow.com/questions/1607939/date-increment-issue/1607996#16079960Answer by Theo for Date Increment IssueTheo2009-10-22T15:23:58Z2009-10-22T15:29:06Z<p>It seems to me that the + binds to the 3 in the first case. That is the interpreter sees <code>Date.today(+3)</code>. If there's a space after the plus the interpreter instead sees <code>(Date.today) + (3)</code>.</p>
<p>Using + to denote positive numbers isn't very common since numbers are positive to begin with, but consider the case of negative numbers: it's easier to see that <code>Date.today -3</code> means something else than <code>Date.today - 3</code>.</p>
http://stackoverflow.com/questions/1516755/multiple-windows-in-adobe-air/1516765#15167654Answer by Theo for Multiple Windows in Adobe AIRTheo2009-10-04T16:10:34Z2009-10-05T07:15:44Z<p>The best way to handle this is to make the main class a subclass of <code>Application</code> instead of <code>WindowedApplication</code>, and set the <code>initialWindow</code>s <code>visible</code> setting to <code>false</code>. Then, in your main class you create as many <code>Window</code> instances as you want.</p>
<p>Main class:</p>
<pre><code><Application xmlns="http://www.adobe.com/2006/mxml">
<applicationComplete>main()</applicationComplete>
<Script>
<![CDATA[
private function main( ) : void {
var window : Window;
for ( var i = 0; i < 5; i++ ) {
window = new Window();
window.width = 200;
window.height = 300;
window.open(true);
}
}
]]>
</Script>
</Application>
</code></pre>
<p>App config:</p>
<pre><code><application xmlns="http://ns.adobe.com/air/application/1.5">
...
<initialWindow>
...
<visible>false</visible>
</initialWindow>
</application>
</code></pre>
http://stackoverflow.com/questions/1487020/how-can-an-objective-c-method-refer-to-the-object-that-invoked-it/1487044#14870449Answer by Theo for How can an Objective-C method refer to the object that invoked it?Theo2009-09-28T13:30:09Z2009-09-28T15:27:51Z<p>The common idiom for acomplishing this is to pass a parameter called <code>sender</code> with the message, more or less like in your example. This is for example how methods bound as user interface actions are specified -- e.g. </p>
<pre><code>-(IBAction)doTheThing:(id)sender
</code></pre>
<p>There is no built in way to get hold of the object that sent the message, and it's very rarely needed.</p>
http://stackoverflow.com/questions/446423/how-do-you-detect-when-the-mouse-leaves-the-stage-in-actionscript-21How do you detect when the mouse leaves the stage in ActionScript 2?Theo2009-01-15T11:28:51Z2009-08-06T17:42:10Z
<p>I have the bad luck of having to downport some ActionScript 3 code to ActionScript 2 and I have a problem with detecting when the mouse leaves the stage.</p>
<p>In ActionScript 3 there is an event called <code>Event.MOUSE_LEAVE</code>, which can be used to detect when the mouse leaves the stage, but there is no equivalent in ActionScript 2 as far as I can see.</p>
<p>How would you best emulate the same functionality?</p>
<p><em>Listening for mouse movement and checking the mouse coordinates against the bounds of the stage doesn't work because the mouse coordinates stop updating when the mouse leaves the stage.</em></p>
http://stackoverflow.com/questions/446423/how-do-you-detect-when-the-mouse-leaves-the-stage-in-actionscript-2/1240383#12403830Answer by Theo for How do you detect when the mouse leaves the stage in ActionScript 2?Theo2009-08-06T17:42:10Z2009-08-06T17:42:10Z<p>There are three categories of solutions to this problem:</p>
<ol>
<li><p>Check the mouse position against the stage bounds (for example <a href="#1107447" rel="nofollow">Mayhew's answer</a>). This is the naive solution and had it worked I would never have asked the question. The problem is that the mouse coordinates stop updating when the mouse leaves the stage, and they will retain their last position, which is always inside the stage.</p></li>
<li><p>Create a border around the stage and detect mouse movements inside this border (for example <a href="#446512" rel="nofollow">grapefrukt's answer</a>. Works if the border is very wide, but you get a lot of false positives -- and if the mouse stops inside the border and then starts moving again you get a false mouse enter. Also suffers from the same problems as 1, the mouse can always move quickly enough that you will not detect it moving over the border.</p></li>
<li><p>Keep track of the direction and velocity of the mouse, so that when you stop receive mouse move events you can calculate where the mouse ought to be and see if that point is outside the stage. Can be fooled in edge cases, but works much better than both 1 and 2. Requires much more code though.</p></li>
</ol>
http://stackoverflow.com/questions/157318/resumable-downloads-when-using-php-to-send-the-file/157447#15744721Answer by Theo for Resumable downloads when using PHP to send the file?Theo2008-10-01T12:56:45Z2009-07-16T08:05:35Z<p>The first thing you need to do is to send the <code>Accept-Ranges: bytes</code> header in all responses, to tell the client that you support partial content. Then, if request with a <code>Range: bytes=x-y</code> header is received (with <code>x</code> and <code>y</code> being numbers) you parse the range the client is requesting, open the file as usual, seek <code>x</code> bytes ahead and send the next <code>y</code> - <code>x</code> bytes. Also set the response to <code>HTTP/1.0 206 Partial Content</code>.</p>
<p>Without having tested anything, this could work, more or less:</p>
<pre><code>$filesize = filesize($file);
$offset = 0;
$length = $filesize;
if ( isset($_SERVER['HTTP_RANGE']) ) {
// if the HTTP_RANGE header is set we're dealing with partial content
$partialContent = true;
// find the requested range
// this might be too simplistic, apparently the client can request
// multiple ranges, which can become pretty complex, so ignore it for now
preg_match('/bytes=(\d+)-(\d+)?/', $_SERVER['HTTP_RANGE'], $matches);
$offset = intval($matches[1]);
$length = intval($matches[2]) - $offset;
} else {
$partialContent = false;
}
$file = fopen($file, 'r');
// seek to the requested offset, this is 0 if it's not a partial content request
fseek($file, $offset);
$data = fread($file, $length);
fclose($file);
if ( $partialContent ) {
// output the right headers for partial content
header('HTTP/1.1 206 Partial Content');
header('Content-Range: bytes ' . $offset . '-' . ($offset + $length) . '/' . $filesize);
}
// output the regular HTTP headers
header('Content-Type: ' . $ctype);
header('Content-Length: ' . $filesize);
header('Content-Disposition: attachment; filename="' . $fileName . '"');
header('Accept-Ranges: bytes');
// don't forget to send the data too
print($data);
</code></pre>
<p>I may have missed something obvious, and I have most definitely ignored some potential sources of errors, but it should be a start.</p>
<p>There's a <a href="http://tools.ietf.org/id/draft-ietf-http-range-retrieval-00.txt" rel="nofollow">description of partial content here</a> and I found some info on partial content on the documentation page for <a href="http://se.php.net/manual/en/function.fread.php" rel="nofollow">fread</a>.</p>
http://stackoverflow.com/questions/1088160/how-to-keep-a-nativewindow-on-top/1088237#10882370Answer by Theo for how to keep a nativewindow on topTheo2009-07-06T17:31:33Z2009-07-06T17:31:33Z<p>Listening for <code>Event.DEACTIVATE</code> and calling <code>event.preventDefault()</code> should work. Not sure if that is what you have tried, but I have an app where that does the trick.</p>
http://stackoverflow.com/questions/927892/running-ruby-scripts-under-jruby-rack-as-if-they-were-cgis/1088208#10882081Answer by Theo for Running Ruby scripts under JRuby/Rack as if they were CGIsTheo2009-07-06T17:27:12Z2009-07-06T17:27:12Z<p>You should check out <a href="http://kenai.com/projects/warbler/pages/Home" rel="nofollow">Warbler</a>. It's a gem that lets you package up a Ruby application as a WAR file and run it in a servlet container (with a little help from <a href="http://kenai.com/projects/jruby-rack/pages/Home" rel="nofollow">JRuby-Rack</a>).</p>
<p>You should also take a look at the <a href="http://wiki.glassfish.java.net/Wiki.jsp?page=JRuby" rel="nofollow">Glassfish</a> gem, which contains a stripped-down version of the Glassfish app server, which makes it a snap to load up a Rack-compatible application and run it in JRuby.</p>
<p>There's a screencast on how to run a JRuby app in Glassfish here: <a href="http://netbeans.tv/technologies/First-JRuby-app-in-GlassFish-86/" rel="nofollow">http://netbeans.tv/technologies/First-JRuby-app-in-GlassFish-86/</a></p>
<p>There are a ton of other resources to be found here:
<a href="http://kenai.com/projects/jruby/pages/WalkthroughsAndTutorials" rel="nofollow">http://kenai.com/projects/jruby/pages/WalkthroughsAndTutorials</a></p>
http://stackoverflow.com/questions/1088104/problem-in-returning-values-from-javascript-function-to-flex/1088121#10881211Answer by Theo for Problem in returning values from javascript function to flexTheo2009-07-06T17:10:11Z2009-07-06T17:10:11Z<p>The call to <code>google.language.transliterate</code> in the JavaScript code is asynchronous, that is why it seems like you have to press the button twice. The anonymous function that is passed as the fourth argument doesn't run until some data has been loaded.</p>
<p>Perhaps you should show some kind of loading indicator just before calling <code>google.language.transliterate</code> and then hiding it in the handler? That way you would see when it's loading data.</p>
http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings3How do you do an extended insert using JDBC without building strings?Theo2009-07-02T08:07:43Z2009-07-02T09:37:59Z
<p>I've got an application that parses log files and inserts a huge amount of data into database. It's written in Java and talks to a MySQL database over JDBC. I've experimented with different ways to insert the data to find the fastest for my particular use case. The one that currently seems to be the best performer is to issue an extended insert (e.g. a single insert with multiple rows), like this:</p>
<pre><code>INSERT INTO the_table (col1, col2, ..., colN) VALUES
(v1, v2, v3, ..., vN),
(v1, v2, v3, ..., vN),
...,
(v1, v2, v3, ..., vN);
</code></pre>
<p>The number of rows can be tens of thousands.</p>
<p>I've tried using prepared statements, but it's nowhere near as fast, probably because each insert is still sent to the DB separately and the tables needs to be locked and whatnot. My colleague who worked on the code before me tried using batching, but that didn't perform well enough either.</p>
<p>The problem is that using extended inserts means that as far as I can tell I need to build the SQL string myself (since the number of rows is variable) and that means that I open up all sorts of SQL injection vectors that I'm no where intelligent enough to find myself. There's got to be a better way to do this.</p>
<p>Obviously I escape the strings I insert, but only with something like <code>str.replace("\"", "\\\"");</code> (repeated for ', ? and \), but I'm sure that isn't enough.</p>
http://stackoverflow.com/questions/695350/running-ant-with-jdk-1-6-on-mac-os-x/1052547#10525472Answer by Theo for Running Ant with JDK 1.6 on Mac OS XTheo2009-06-27T10:10:03Z2009-06-27T10:10:03Z<p>I've added the line</p>
<pre><code>export JAVA_HOME=`/usr/libexec/java_home`
</code></pre>
<p>To my .zshrc file, it seems to do the trick (.bash_profile or whatever if you use bash).</p>
http://stackoverflow.com/questions/1049910/size-the-height-of-a-flex-component-to-fill-the-space-available-on-stage/1050231#10502312Answer by Theo for size the height of a flex component to fill the space available on stageTheo2009-06-26T17:19:43Z2009-06-26T17:19:43Z<pre><code><Module layout="vertical" xmlns="...">
<Canvas width="100%" height="100%">
<HBox width="100%" height="30"/>
</Module>
</code></pre>
<p>By setting <code>layout="vertical"</code> the <code>Module</code> will work more or less like a <code>VBox</code>. The <code>Canvas</code> is set to fill 100% vertical and horizontal, but space will be left for the <code>HBox</code>, because it has an explicit height.</p>
http://stackoverflow.com/questions/1049980/flex-how-does-a-component-know-whether-one-of-its-styles-got-changed/1050210#10502102Answer by Theo for Flex: How does a component know whether one of its styles got changed?Theo2009-06-26T17:15:01Z2009-06-26T17:15:01Z<p>If you want the text field to play nicely with containers and other components in Flex you may want to wrap it in a <code>UIComponent</code>, or have the subclass implement the <code>IUIComponent</code> and <code>IStyleClient</code> or <code>ISimpleStyleClient</code> interfaces (which <code>UIComponent implements). If you do the component will work with Flex' style system and every time a style changes a method called </code>styleChanged` will be called:</p>
<pre><code>public function styleChanged(styleProp:String):void
</code></pre>
<p>See <a href="http://livedocs.adobe.com/flex/3/langref/mx/core/UIComponent.html#styleChanged%28%29" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/mx/core/UIComponent.html#styleChanged()</a></p>
http://stackoverflow.com/questions/9769/can-i-script-flexbuilder-without-writing-an-extension0Can I script FlexBuilder without writing an extension?Theo2008-08-13T13:09:58Z2009-06-17T07:00:01Z
<p>I'd like to script FlexBuilder so that I can run debug or profile without having to switch to FlexBuilder and manually clicking the button (or using the key combo). Is this possible without writing an extension?</p>
<p>To be more specific, this is exactly what I want to do: I want to create a TextMate command that talks to FlexBuilder and makes it run the debug target for the currently selected project. TextMate already has support for interacting with Xcode in this way, and it would be great to be able to do the same with FlexBuilder.</p>
http://stackoverflow.com/questions/981891/how-do-i-compile-multple-independent-mxml-files-at-one-time/986551#9865511Answer by Theo for How do I compile multple independent mxml files at one time?Theo2009-06-12T13:08:02Z2009-06-12T13:08:02Z<p>One way to speed it up a bit is to compile everything but the top-level classes into one big SWC using <code>compc</code>, then compiling the top-level classes and using the SWC as a library. That way classes that are used by more than one application will only be compiled once.</p>
<p>However, a large contributor to the time it takes to compile a Flex application is the JVM startup time, and each compile will start up it's own JVM (plus one for the Ant process). One way to avoid this is to use the Flex Compiler Shell (<code>fcsh</code>) instead of Ant, but that has it's downsides of course. Another way is to try <a href="http://stopcoding.wordpress.com/2008/06/17/hellfire%5Fcompiler/" rel="nofollow">HellFire</a>, which runs the compiler in a separate always-on process, meaning no more waiting for the JVM to start.</p>
http://stackoverflow.com/questions/982667/how-i-can-split-as-code-and-mxml-in-flex/986527#9865270Answer by Theo for How I can split AS code and MXML in FlexTheo2009-06-12T13:02:00Z2009-06-12T13:02:00Z<p>Besides the techniques described by the other posters here there are more advanced that are not about in which file the code is stored, but how to organize the collaborators and logic of your views. The <a href="http://www.martinfowler.com/eaaDev/PresentationModel.html" rel="nofollow">Presentation Model pattern</a> works very well in Flex, but there are also others. I recommend reading <a href="http://weblogs.macromedia.com/paulw/archives/2007/09/presentation%5Fpa.html" rel="nofollow">Paul Willams introduction to presentation patterns</a>.</p>
http://stackoverflow.com/questions/406252/using-rake-with-a-non-ruby-project/952791#9527910Answer by Theo for Using rake with a non-ruby projectTheo2009-06-04T20:03:50Z2009-06-04T20:03:50Z<p>I use it to compile Flex applications. I've written <a href="http://github.com/iconara/flexutils" rel="nofollow">wrappers around the Flex SDK command line tools</a> -- it's easy to do for any tool chain that can be called from the command line. </p>
http://stackoverflow.com/questions/53025/best-way-to-implement-11-asynchronous-callbacks-events-in-actionscript-3-flex/53843#538432Answer by Theo for Best way to implement 1:1 asynchronous callbacks/events in ActionScript 3 / Flex / AIR?Theo2008-09-10T12:06:00Z2009-05-19T18:58:08Z<p>I'll try one more idea:</p>
<p>Have your Data Access Object return their own AsyncTokens (or some other objects that encapsulate a pending call), instead of the AsyncToken that comes from the RPC call. So, in the DAO it would look something like this (this is very sketchy code):</p>
<pre><code>public function deleteThing( id : String ) : DeferredResponse {
var deferredResponse : DeferredResponse = new DeferredResponse();
var asyncToken : AsyncToken = theRemoteObject.deleteThing(id);
var result : Function = function( o : Object ) : void {
deferredResponse.notifyResultListeners(o);
}
var fault : Function = function( o : Object ) : void {
deferredResponse.notifyFaultListeners(o);
}
asyncToken.addResponder(new ClosureResponder(result, fault));
return localAsyncToken;
}
</code></pre>
<p>The <code>DeferredResponse</code> and <code>ClosureResponder</code> classes don't exist, of course. Instead of inventing your own you could use <code>AsyncToken</code> instead of <code>DeferredResponse</code>, but the public version of <code>AsyncToken</code> doesn't seem to have any way of triggering the responders, so you would probably have to subclass it anyway. <code>ClosureResponder</code> is just an implementation of <code>IResponder</code> that can call a function on success or failure.</p>
<p>Anyway, the way the code above does it's business is that it calls an RPC service, creates an object encapsulating the pending call, returns that object, and then when the RPC returns, one of the closures <code>result</code> or <code>fault</code> gets called, and since they still have references to the scope as it was when the RPC call was made, they can trigger the methods on the pending call/deferred response.</p>
<p>In the command it would look something like this:</p>
<pre><code>public function execute( ) : void {
var deferredResponse : DeferredResponse = dao.deleteThing("3");
deferredResponse.addEventListener(ResultEvent.RESULT, onResult);
deferredResponse.addEventListener(FaultEvent.FAULT, onFault);
}
</code></pre>
<p>or, you could repeat the pattern, having the <code>execute</code> method return a deferred response of its own that would get triggered when the deferred response that the command gets from the DAO is triggered.</p>
<p>But. I don't think this is particularly pretty. You could probably do something nicer, less complex and less entangled by using one of the many application frameworks that exist to solve more or less exactly this kind of problem. My suggestion would be <a href="http://mate.asfusion.com" rel="nofollow">Mate</a>.</p>
http://stackoverflow.com/questions/862452/mate-propertyinjectors-inject-to-as3-class/863044#8630441Answer by Theo for Mate PropertyInjectors - Inject to as3 class?Theo2009-05-14T12:29:09Z2009-05-14T12:29:09Z<p>Could you be more specific? There's no difference between an "MXML" class and a class defined in ActionScript, it's just different ways of writing the same thing.</p>
<p>All that is needed for injection to work is a source property that is bindable and a destination property that is public (either a public setter or a public instance variable). If those two requirements are met and the code compiles it should work.</p>
<p>Look at the code for the example application you can find here: <a href="http://code.google.com/p/mate-examples/wiki/DocumentBasedExampleIntro" rel="nofollow">http://code.google.com/p/mate-examples/wiki/DocumentBasedExampleIntro</a> and you will find a ton of injectors that target classes not defined using MXML (look for injectors targeting classes whose names end in "Model" especially). You can also find countless examples in the <a href="http://mate.asfusion.com/forums" rel="nofollow">Mate forums</a>.</p>
http://stackoverflow.com/questions/843080/mate-framework-check-data-before-making-remote-call/843550#8435504Answer by Theo for Mate Framework - Check data before making remote callTheo2009-05-09T16:06:54Z2009-05-09T16:06:54Z<p>Most things in Mate are indirect. You have managers that manage your data, and you set up injectors (which are bindings) between the managers and your views. The injectors make sure your views are synchronized with your managers. That way the views always have the latest data. Views don't get updated as a <em>direct</em> consequence of dispatching an event, but as an <em>indirect</em> consequence.</p>
<p>When you want to load new data you dispatch an event which is caught by an event map, which in turn calls some service, which loads data and returns it to the event map, and the event map sticks it into the appropriate manager.</p>
<p>When the manager gets updated the injectors make sure that the views are updated.</p>
<p>By using injectors you are guaranteed to always have the latest data in your views, so if the views have data the data is loaded -- unless you need to update periodically, in which case it's up to you to determine if data is stale and dispatch an event that triggers a service call, which triggers an update, which triggers the injectors to push the new data into the views again, and round it goes.</p>
<p>So, in short the answer to your question is that you need to make sure you use injectors properly. If this is a too high-level answer for you I know you can get more help in the <a href="http://mate.asfusion.com/forums" rel="nofollow">Mate forums</a>.</p>
http://stackoverflow.com/questions/506339/is-there-a-workaround-for-the-missing-externalinterface-objectid-in-actionscript1Is there a workaround for the missing ExternalInterface.objectID in ActionScript 2Theo2009-02-03T08:23:15Z2009-04-23T07:28:03Z
<p>I'm downporting some ActionScript 3 to ActionScript 2 (some ad agencies sadly still refuse to embrace the future) and I've run into the issue that in ActionScript 2 <code>ExternalInterface</code> has no <code>objectID</code> property, as it does in ActionScript 3.</p>
<p>The code I'm working on calls a lot of JavaScript, and some of that code requires the script to know the ID of the Flash object/embed (for example to find the position on the page, and to resize the object/embed).</p>
<p>Is there a simple workaround to get hold of the object/embed ID in ActionScript 2?</p>
<p>I have managed to write some JavaScript code that basically searches all object and embed nodes on the page until it finds one with a special method (set with <code>ExternalInterface.addCallback</code>) and that way managed to get the ID into the ActionScript environment, but it feels like a hacky and unsafe method to rely on. Surely there is a simpler way?</p>
<p><em>Edit: I don't have control over the code that embeds the SWF, so passing in the ID doesn't work.</em></p>
http://stackoverflow.com/questions/657028/adobe-air-reading-a-file-in-the-same-folder-outside-air-package/665316#6653161Answer by Theo for Adobe AIR - reading a file in the same folder outside AIR packageTheo2009-03-20T08:18:38Z2009-03-20T08:18:38Z<p>From what I can find there is no way to get that without doing some work yourself. If we assume that the <code>File.applicationDirectory</code> points to the wrong place only on Mac (which seems like the case), we can do this:</p>
<pre><code>var appDir = File.applicationDirectory
if ( appDir.resolvePath("../../Contents/MacOS").exists ) {
appDir = appDir.resolvePath("../../..");
}
</code></pre>
<p>That is, check if the parent directories of the app directory match the Mac .app bundle directory structure, and in that case use the parent's parent's parent (which should then be the directory containing the .app bundle).</p>
http://stackoverflow.com/questions/560816/advice-on-converting-a-design-by-accretion-flex-project-to-mate/560934#5609343Answer by Theo for Advice on converting a design-by-accretion Flex project to MateTheo2009-02-18T12:51:21Z2009-02-18T12:51:21Z<p>I did a similar thing a couple of months back. What I did was that I created a new package structure and moved all "ported" code there as I went along. I started with the overall view structure and moved my way towards the "branches". The new code referenced the old where needed, but no old code referenced the new. Having a new package structure helped in making it clear what had been ported and what had not, and it was also easy to see when I made progress.</p>
http://stackoverflow.com/questions/482085/flex-mate-framework-dispatching-events/482620#4826203Answer by Theo for Flex - Mate framework - dispatching events Theo2009-01-27T08:13:29Z2009-01-27T08:13:29Z<p>The way it's usually done is to inject the event map's dispatcher into the object:</p>
<pre><code><MethodInvoker generator="{MyClass}" method="someMethod" arguments="{[a, b]}">
<Properties dispatcher="{scope.dispatcher}"/>
</MethodInvoker>
</code></pre>
<p>The inner <code>Properties</code> tag sets properties on the object being created by the <code>MethodInvoker</code>, and the properties are guaranteed to be set before the method is invoked.</p>
<p>The class obviously needs to have a public property called <code>dispatcher</code> (or whatever name you prefer) for this to work. To dispatch events that you want to listen for in the event map call <code>dispatcher.dispatchEvent(...)</code>.</p>
<p>If the object created by the <code>MethodInvoker</code> will be used more than once, if it's a manager, say, the common idiom is to create it using an <code>ObjectBuilder</code> is an event handler block that gets triggered by <code>FlexEvent.INITIALIZE</code>:</p>
<pre><code><EventHandlers type="{FlexEvent.INITIALIZE}">
<ObjectBuilder generator="{MyClass}" constructorArguments="{scope.dispatcher}"/>
</EventHandlers>
</code></pre>
<p>In this example the event dispatcher is injected as a constructor argument, but you can use an inner <code>Properties</code> tag just as with <code>MethodInvoker</code>.</p>
http://stackoverflow.com/questions/108889/objectively-what-are-the-pros-and-cons-of-cairngorm-over-puremvc/109038#1090389Answer by Theo for Objectively, what are the pros and cons of Cairngorm over PureMVC?Theo2008-09-20T19:08:37Z2009-01-20T17:43:47Z<p><a href="http://stackoverflow.com/questions/37043/flex-mvc-frameworks">The question has already been asked</a>, however since you ask specifically for the benefits of Cairngorm and PureMVC specifically, these are my thoughts:</p>
<ul>
<li><p>Both PureMVC and Cairngorm make it hard to write testable code. This is mostly down to their use of global variables that tie your application code together tightly, making it hard to isolate any part for testing. This is more true of Cairngorm than PureMVC, but both are pretty bad.</p></li>
<li><p>PureMVC is more invasive than Cairngorm (meaning that your code is heavily dependent on the framework, e.g. you have to subclass/implement the framework classes/interfaces), but that doesn't mean that Cairngorm isn't.</p></li>
<li><p>Cairngorm is full of anti-patterns like heavy use of global variables, PureMVC hides the worst parts of itself.</p></li>
<li><p>PureMVC is anti-Flex, Cairngorm just doesn't use many of the good parts of Flex. By this I mean that PureMVC reinvents many things that Flex already have, because it wants to be platform agnostic, and because of its architecture, specifically the mediators, it makes it harder to use bindings to their full power. Cairngorm just skips over things like event bubbling, and instead opts for solutions involving global variable.</p></li>
</ul>
<p>In short, Cairngorm is the VisualBasic of Flex, it works but will teach you a lot of bad habits. PureMVC isn't so bad, it just isn't a very good fit for writing Flex applications.</p>
<p>What I think you should look at is <a href="http://mate.asfusion.com" rel="nofollow">Mate</a>, which uses Flex to it's full potential, and it isn't built around global variables. Instead it helps you write loosely coupled, testable, reusable and maintainable code without the heavy and needless dependencies on the framework that you see in other application frameworks.</p>
<p>If you for some reason don't like Mate, try <a href="http://code.google.com/p/swizframework/" rel="nofollow">Swiz</a>, which is a great improvement over Cairngorm, but still has some weird preference for using global variables for central event dispatching (which is completely bizarre considering that one of the points of the framework is to avoid the evil global variables of Cairngorm).</p>
http://stackoverflow.com/questions/13569/mysqli-or-pdo-what-are-the-pros-and-cons/13571#13571Comment by Theo on mysqli or PDO - what are the pros and cons?Theo2009-11-11T17:28:16Z2009-11-11T17:28:16Zit's fine to just edit the questionhttp://stackoverflow.com/questions/143403/how-does-the-portability-of-puremvc-benefit-the-application-developer/1681761#1681761Comment by Theo on How does the portability of PureMVC benefit the application developer?Theo2009-11-06T20:30:20Z2009-11-06T20:30:20ZTo say "there is no reason why [application] code has to be tied deeply to your platform in order to be optimal" strikes me as naive. What do you even mean by that? Of course my application code will be tied to the platform, it's written for that platform, and designed to make full use of it's benefits. Should I need to change platform I would want to use all of the power of the new one, not trying to fit into some kind of lowest common denominator.http://stackoverflow.com/questions/695350/running-ant-with-jdk-1-6-on-mac-os-x/1052547#1052547Comment by Theo on Running Ant with JDK 1.6 on Mac OS XTheo2009-08-16T09:03:04Z2009-08-16T09:03:04ZI'm on OS X, it's there.http://stackoverflow.com/questions/446423/how-do-you-detect-when-the-mouse-leaves-the-stage-in-actionscript-2/1229101#1229101Comment by Theo on How do you detect when the mouse leaves the stage in ActionScript 2?Theo2009-08-06T17:32:01Z2009-08-06T17:32:01ZDuplicate answer, and a worse one.http://stackoverflow.com/questions/157318/resumable-downloads-when-using-php-to-send-the-file/157447#157447Comment by Theo on Resumable downloads when using PHP to send the file?Theo2009-07-16T08:09:23Z2009-07-16T08:09:23ZYou're right and I've changed it. However, I it's too simplistic anyway, according to the specs you can do "bytes=x-y", "bytes=-x", "bytes=x-", "bytes=x-y,a-b", etc. so the bug in the previous version was the missing end slash, not the lack of a question mark.http://stackoverflow.com/questions/446423/how-do-you-detect-when-the-mouse-leaves-the-stage-in-actionscript-2/1107447#1107447Comment by Theo on How do you detect when the mouse leaves the stage in ActionScript 2?Theo2009-07-10T09:55:28Z2009-07-10T09:55:28ZThis is the naive implementation and it doesn't work, please read the last sentence of the question (the one that is emphasised).http://stackoverflow.com/questions/1088160/how-to-keep-a-nativewindow-on-top/1088237#1088237Comment by Theo on how to keep a nativewindow on topTheo2009-07-07T12:59:00Z2009-07-07T12:59:00ZI've found AIR's window handling to be somewhat lacking... not being able to create proper modal dialogs is sometimes a pain.http://stackoverflow.com/questions/1088160/how-to-keep-a-nativewindow-on-top/1088184#1088184Comment by Theo on how to keep a nativewindow on topTheo2009-07-06T17:32:03Z2009-07-06T17:32:03ZYou didn't bother looking at the tags, did you?http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings/1073445#1073445Comment by Theo on How do you do an extended insert using JDBC without building strings?Theo2009-07-02T10:17:49Z2009-07-02T10:17:49ZThat doesn't take prepared statements into account though. To make a fair comparison you need to load the data into an application that first prepared the INSERT statement, added each row in a batch and ran it. I still think you are right in the end, but this doesn't actually say if prepared statements + batching would be as fast as extended inserts.http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings/1073115#1073115Comment by Theo on How do you do an extended insert using JDBC without building strings?Theo2009-07-02T08:43:32Z2009-07-02T08:43:32ZFair enough, it looks like batching is certainly worth trying again, but if what he says is true (and it seems he never commited the code, just tried it and discarded) there's a huge difference in performance between extended inserts and batching. I guess it all comes down to where the bottleneck is: is it sending the data to the database that is slow, or is it locking and all that inside the database that is the issue. If it's the latter batching doesn't solve the problem, if it's the former it may perform just as good and I get more security.http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings/1073118#1073118Comment by Theo on How do you do an extended insert using JDBC without building strings?Theo2009-07-02T08:26:16Z2009-07-02T08:26:16ZI think it's a fair enough suggestion. Writing CSV files and using LOAD DATA INFILE can be really, really fast in my experience. It's a bit more complex since it involves writing the CSV files and making sure MySQL can find them, though.http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings/1073115#1073115Comment by Theo on How do you do an extended insert using JDBC without building strings?Theo2009-07-02T08:23:33Z2009-07-02T08:23:33ZBatching seems to be a solution, but according to my colleague who worked on the code before me it doesn't compare to using extended inserts (I've edited the question to include this).http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings/1073108#1073108Comment by Theo on How do you do an extended insert using JDBC without building strings?Theo2009-07-02T08:22:40Z2009-07-02T08:22:40ZSorry, my colleague informed me that batching didn't solve the problem (I've edited the question to include this).http://stackoverflow.com/questions/1073101/how-do-you-do-an-extended-insert-using-jdbc-without-building-strings/1073108#1073108Comment by Theo on How do you do an extended insert using JDBC without building strings?Theo2009-07-02T08:12:32Z2009-07-02T08:12:32ZWould that issue one insert, or multiple? Or does the batching make the overhead of issuing many prepared statements go away?http://stackoverflow.com/questions/1049980/flex-how-does-a-component-know-whether-one-of-its-styles-got-changed/1050210#1050210Comment by Theo on Flex: How does a component know whether one of its styles got changed?Theo2009-06-27T10:12:48Z2009-06-27T10:12:48ZStefan: you should be able to change the accepted answer.