User slashnick - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:37:15Z http://stackoverflow.com/feeds/user/21030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1442719/flex-3-set-maximum-and-minimum-x-axis-value-in-bar-chart/1791404#1791404 0 Answer by slashnick for Flex 3 Set Maximum and minimum X Axis value in bar chart slashnick 2009-11-24T16:57:14Z 2009-11-24T16:57:14Z <p>You can do the following:</p> <pre><code>var vAxis:LinearAxis = new LinearAxis(); vAxis.maximum = 100; vAxis.minimum = 0; </code></pre> <p>This won't guarantee a label but it will keep the axis at a fixed size.</p> http://stackoverflow.com/questions/1702415/how-to-isolate-unsecure-javascript-code/1702575#1702575 2 Answer by slashnick for How to isolate unsecure JavaScript code slashnick 2009-11-09T17:40:10Z 2009-11-09T17:40:10Z <p>You could look at <a href="http://code.google.com/p/google-caja/" rel="nofollow">Caja</a> from Google. It's designed for running scripts from third parties safely and securely.</p> http://stackoverflow.com/questions/1537756/how-should-page-and-author-information-be-displayed-in-the-sourcecode-of-html-pag/1537774#1537774 2 Answer by slashnick for How should page and author information be displayed in the sourcecode of html pages? slashnick 2009-10-08T13:22:37Z 2009-10-08T13:22:37Z <p>Meta Tags. That will let you supply the appropriate information. See <a href="http://www.submitcorner.com/Guide/Meta/author.shtml" rel="nofollow">http://www.submitcorner.com/Guide/Meta/author.shtml</a> for an example of the author. Whilst not a comment it will convey the information, and is machine readable (if you're happy for the information to be public).</p> http://stackoverflow.com/questions/828960/how-can-i-add-maven-dependencies-to-the-flex-build-path-in-flex-builder-3 2 How can I add maven dependencies to the flex build path in Flex Builder 3? slashnick 2009-05-06T10:20:54Z 2009-10-01T08:22:14Z <p>We're using maven to build a flex project using <a href="https://docs.sonatype.org/display/FLEXMOJOS/Home" rel="nofollow">flex-mojo's</a>, which is great. The problem is I can't add the swc dependencies specified in the pom to the flex build path. As far as I can see Flex Builder only lets you use an absolute path, so it can't see the maven dependencies even when using the <a href="http://m2eclipse.sonatype.org/" rel="nofollow">m2eclipse plugin</a> to add maven support.</p> <p>Has anyone found a way to build with both maven and Flex Builder without duplicating the dependencies?</p> http://stackoverflow.com/questions/495418/why-cant-i-search-maven-projects-in-eclipse 0 Why can't I search maven projects in eclipse slashnick 2009-01-30T12:55:00Z 2009-09-22T16:00:02Z <p>I'm using the m2Eclipse plugin (<a href="http://m2eclipse.sonatype.org/" rel="nofollow">http://m2eclipse.sonatype.org/</a>) to handle maven modules in eclipse. After enabling a project for dependency management and for nested modules, I can no longer do a 'File Search' over the project. The search finishes instantly with the search window display "0 matches in empty scope".</p> <p>Any ideas how I can make search work again?</p> http://stackoverflow.com/questions/1412096/asynchronous-jquery-request-timing-issue/1412134#1412134 0 Answer by slashnick for Asynchronous jQuery request timing issue slashnick 2009-09-11T17:02:24Z 2009-09-11T17:02:24Z <p>I'm not sure if I fully understand the problem but why not chain the requests rather than using a <code>setTimeout</code>? So at the end of the response handler of one request fire off the next request.</p> http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411429#1411429 65 Answer by slashnick for How to become a "faster" programmer? slashnick 2009-09-11T15:00:01Z 2009-09-11T15:00:01Z <p>Really, really learn your editor. If you use an IDE make sure you're using all the features it offers. Get a cheat sheet to learn the keyboard shortcuts for your editor of choice. If you're using a shell set up shortcuts for commonly used directories</p> http://stackoverflow.com/questions/1211531/does-localconnection-in-flash-player-randomly-fail-sometimes 1 Does localConnection in flash player randomly fail sometimes? slashnick 2009-07-31T09:21:43Z 2009-09-03T23:00:02Z <p>I have two flash movies communicating with each other using <a href="http://livedocs.adobe.com/flex/3/langref/flash/net/LocalConnection.html" rel="nofollow">localConnection</a>, passing an object from swfA to swfB. This seems to work fine, but will occasional fail. The only information we have is that the status event is fired with a level of <code>error</code>, there is no other information. Once a connection has failed it will continue to do so.</p> <p>I don't know why it's happening but it is not a security problem (both movies are running on the same domain) and all communication is wrapped in a <code>try..catch</code>.</p> <p>Has anyone ever seen this or can anyone suggest an alternative method for communicating between movies? I've tried using <code>ExternalInterface</code> but it's too slow for the number of updates that are sent.</p> http://stackoverflow.com/questions/1211531/does-localconnection-in-flash-player-randomly-fail-sometimes/1259750#1259750 1 Answer by slashnick for Does localConnection in flash player randomly fail sometimes? slashnick 2009-08-11T11:20:31Z 2009-08-11T11:20:31Z <p>We seem to have fixed the problem but are not entirely sure why (we may just have greatly reduced the number of failures). We have implemented the following:</p> <ul> <li>Reduced the number of localConnections moving as everything to <code>externalInterface</code> where speed wasn't an issue</li> <li>Generated a globally unique id for each movie by appending a timestamp each time the page is refreshed (rather than re-using the same id). This seemed to reduce the occurrence of fails greatly (although they did still happen)</li> <li>Added '_' to LocalConnection id (see docs for why). Unsure if this helped but seems a good practise.</li> <li>Force a reconnect each time a fail occurs. Again, a good thing to implement to improve robustness but since no fails occur now this isn't responsible for directly fixing the bug.</li> </ul> <p>So no conclusive fix it just seems together these solved the problem.</p> http://stackoverflow.com/questions/828960/how-can-i-add-maven-dependencies-to-the-flex-build-path-in-flex-builder-3/1259727#1259727 0 Answer by slashnick for How can I add maven dependencies to the flex build path in Flex Builder 3? slashnick 2009-08-11T11:14:58Z 2009-08-11T11:14:58Z <p>Flex-mojos now supports doing this using the <a href="http://www.sonatype.com/books/maven-book/reference/flex-dev-sect-flexbuilder.html" rel="nofollow"><code>flexmojos:flexbuilder</code></a> goal. It's not perfect for nested projects but seems to work well in all other cases.</p> http://stackoverflow.com/questions/1153593/firebug-like-debug-tool-for-flash-applications-that-run-in-a-browser/1153615#1153615 0 Answer by slashnick for Firebug-like debug tool for flash applications that run in a browser? slashnick 2009-07-20T13:32:58Z 2009-07-20T13:32:58Z <p>You could try <a href="http://lab.kapit.fr/display/kapinspect/Kap+Inspect" rel="nofollow">Kap Inspect</a>. It doesn't look like firebug but it will let you inspect elements. There's no debugger as far as I'm aware but you can see data bindings. There's no net tab equivalent but you could run your movie in firefox and use either firebug or <a href="http://tamperdata.mozdev.org/" rel="nofollow">Tamper Data</a>.</p> http://stackoverflow.com/questions/1142011/is-it-possible-to-access-task-with-mylyn 2 Is it possible to access @task with mylyn? slashnick 2009-07-17T08:26:00Z 2009-07-17T22:51:24Z <p>It looks like we are migrating our from Jira to <a href="http://www.attask.com/" rel="nofollow">@task</a> for our feature requests/bug tracking. Does anyone know if @task can be accessed from <a href="http://www.eclipse.org/mylyn/" rel="nofollow">Mylyn</a> in Eclipse?</p> http://stackoverflow.com/questions/1145382/is-there-a-way-to-choose-an-mxml-component-at-ui-construction-time-based-on-the-v/1145548#1145548 1 Answer by slashnick for Is there a way to choose an MXML component at UI construction time based on the value of a field? slashnick 2009-07-17T20:33:27Z 2009-07-17T20:42:16Z <p>I think you have to use action script for any conditions. An conditional statement doesn't seem to exist in mxml. Although you could include both elements and use inline as to set the visible state.</p> <pre><code>&lt;mx:Repeater id="r" dataProvider="{list}"&gt; &lt;mx:RadioButton label="{r.currentItem.@text}" visible="{r.currentItem.@type == 'radio'}" /&gt; &lt;custom:Specify label="{r.currentItem.@text}" visible="{r.currentItem.@type == 'specify'}" /&gt; &lt;/mx:Repeater&gt; </code></pre> <p>See <a href="http://www.firemoss.com/post.cfm/Powerful-MXML-Bindings-with-Ternary--Operators" rel="nofollow">http://www.firemoss.com/post.cfm/Powerful-MXML-Bindings-with-Ternary--Operators</a> for more examples.</p> http://stackoverflow.com/questions/1143369/help-interpreting-a-javascript-regex/1143433#1143433 0 Answer by slashnick for Help interpreting a javascript Regex slashnick 2009-07-17T13:54:27Z 2009-07-17T13:54:27Z <p><code>[^\[]</code> will match any character that is not <code>[</code>, the '+' means one or more times. So [^[]+ will match contactDetails. The brackets will capture this for later use. The '\' is an escape symbol so the end <code>\[0\]</code> will match <code>[0]</code>. The replace string will use $1 which is what was captured in the brackets and add the new index.</p> http://stackoverflow.com/questions/1143021/compile-a-swc-using-compc-excluding-3rd-party-libs/1143061#1143061 0 Answer by slashnick for Compile a SWC using COMPC, excluding 3rd party libs. slashnick 2009-07-17T12:46:58Z 2009-07-17T12:46:58Z <p>I don't think you can just require that someone else has the dependencies. It could use the third party libraries as Runtime Shared Libraries, you will need the third party libs available on the url and use the following when compiling <code>-runtime-shared-libraries=<a href="http://www.yourhost.com/my.swf" rel="nofollow">http://www.yourhost.com/my.swf</a> -external-library-path+=my.swc</code>. See the <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=rsl%5F02.html#220679" rel="nofollow">Adobe docs for full details about RSLs</a></p> http://stackoverflow.com/questions/1142561/what-are-the-best-blogs-for-staying-up-to-date-on-c-asp-net-linq-sql-c-ru/1142570#1142570 2 Answer by slashnick for What are the best blogs for staying up to date on C#, ASP.Net, LINQ, SQL, C++, Ruby, Java, Python? slashnick 2009-07-17T10:52:09Z 2009-07-17T10:52:09Z <p><a href="http://www.infoq.com/" rel="nofollow">InfoQ</a> covers most of those subjects, plus you can tailor it to only list the things you are interested in. I'd suggest the <a href="http://blogs.msdn.com/adonet/default.aspx" rel="nofollow">ADO.NET blog</a> for Linq to SQL.</p> http://stackoverflow.com/questions/1142345/css-hacks-a-right-way/1142406#1142406 2 Answer by slashnick for Css Hacks a right way? slashnick 2009-07-17T10:05:00Z 2009-07-17T10:05:00Z <p>The easiest way is to use <a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">conditional comments</a> and have an additional stylesheet specifically for problem versions of IE6. It does mean you have special cases, but not really hacks.</p> http://stackoverflow.com/questions/877361/how-to-run-a-script-embedded-in-the-page-in-selenium-ide 1 How to run a script embedded in the page in Selenium IDE? slashnick 2009-05-18T11:58:28Z 2009-06-16T09:04:29Z <p>I'm testing a page with <a href="http://seleniumhq.org/projects/ide/" rel="nofollow">Selenium IDE</a> and want to execute a method already in the page. I've tried <code>getEval(window.name.space.function())</code> but it just returns <code>window.name</code> is undefined. Is this possible?</p> http://stackoverflow.com/questions/916152/is-it-possible-to-rotate-a-dynamically-added-line-with-flex 1 Is it possible to rotate a dynamically added line with Flex? slashnick 2009-05-27T14:47:14Z 2009-05-27T15:25:44Z <p>I'm adding a line to a canvas using <code>canvas.moveTo(0, 0); canvas.lineTo(100, 100);</code>, but I then want the user to move the mouse to set the rotation of the line. Google suggests using the <code>rotation</code> property, but I don't have a reference to the line object. Can I get a reference to the line or should I rotate the whole canvas? Is any of this possible?</p> http://stackoverflow.com/questions/785705/which-mvc-framework/785723#785723 1 Answer by slashnick for Which MVC framework slashnick 2009-04-24T12:57:54Z 2009-04-24T12:57:54Z <p>If you're happy with java <a href="http://www.springsource.org/" rel="nofollow">Spring</a> offers a pretty robust MVC framework, as well as a lot of other things which may be a plus or a minus depending on your needs. It meets all of you're requirements but I doubt it'll help with video embedding.</p> http://stackoverflow.com/questions/525441/javascript-and-mysql/525497#525497 0 Answer by slashnick for Javascript and MySQL slashnick 2009-02-08T10:21:55Z 2009-02-08T10:21:55Z <p>You could look at <a href="http://triplify.org/Overview" rel="nofollow">triplify</a> which should expose your database as json and rdf. I haven't actually used this but I would imagine that would let you bypass writing any server side js and talk to the database directly in a language javascript understands, using an ajax request and json.</p> http://stackoverflow.com/questions/504261/acceptable-css-hacks-fixes/504303#504303 10 Answer by slashnick for Acceptable CSS hacks/fixes slashnick 2009-02-02T18:29:22Z 2009-02-02T18:29:22Z <p>For the majority of IE bugs I think you're best of using <a href="http://en.wikipedia.org/wiki/Conditional_comment" rel="nofollow">conditional comments</a> around a link to a browser specific stylesheet. It tends to keep things pretty neat and it's quite self documenting.</p> http://stackoverflow.com/questions/503026/how-to-disable-javacript-error-messages/504280#504280 1 Answer by slashnick for How to disable javacript error messages? slashnick 2009-02-02T18:25:48Z 2009-02-02T18:25:48Z <p>After some Googling it seems you might get this if your user-agent string is too long. See <a href="http://blogs.msdn.com/scicoria/archive/2009/01/15/adding-web-parts-via-ie-7-and-the-not-enough-storage-is-available-to-complete-this-operation-javascript-error-message.aspx" rel="nofollow">here</a> and <a href="http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/d863c31c-8a50-4e9d-9482-ec479d330658/" rel="nofollow">here</a>. I'm not convinced this will fix it but it might be worth a try.</p> http://stackoverflow.com/questions/503026/how-to-disable-javacript-error-messages/504221#504221 0 Answer by slashnick for How to disable javacript error messages? slashnick 2009-02-02T18:14:34Z 2009-02-02T18:14:34Z <p>If you don't want to hide all other errors wrap the call to the code in a try/catch.</p> <pre><code>try { callDodgyCode(); } catch(e) { // Eat error } </code></pre> http://stackoverflow.com/questions/495418/why-cant-i-search-maven-projects-in-eclipse/495436#495436 1 Answer by slashnick for Why can't I search maven projects in eclipse slashnick 2009-01-30T13:03:11Z 2009-01-30T13:03:11Z <p>It would appear the plugin marks any non java folder as 'derived', which is why it gets ignored by the search. Right clicking on the non java folders and deselecting the check box fixed this.</p> http://stackoverflow.com/questions/240264/where-has-windows-working-sets-gone-in-eclipse-3-4 0 Where has windows working sets gone in Eclipse 3.4 slashnick 2008-10-27T15:17:26Z 2009-01-07T21:34:00Z <p>Where can I find the option to switch between the Windows Working Set in Eclipse 3.4 (Ganymede)? In the previous version it was under then Window menu, but it appears to have moved.</p> http://stackoverflow.com/questions/322467/what-css-js-html-xml-plugins-do-you-use-in-eclipse/322478#322478 2 Answer by slashnick for What CSS/JS/HTML/XML plugin(s) do you use in Eclipse? slashnick 2008-11-26T23:06:39Z 2008-11-26T23:06:39Z <p>Sounds like you need the <a href="http://www.eclipse.org/webtools/" rel="nofollow">Web Tools Project</a></p> http://stackoverflow.com/questions/300210/html-xml-data-islands/300302#300302 0 Answer by slashnick for HTML - xml data islands slashnick 2008-11-18T22:03:48Z 2008-11-18T22:03:48Z <p>Ajax Patterns has some good examples for using data islands: <a href="http://ajaxpatterns.org/wiki/index.php?title=XML_Data_Island" rel="nofollow">http://ajaxpatterns.org/wiki/index.php?title=XML_Data_Island</a></p> http://stackoverflow.com/questions/297251/html-css-li-wrapping/297275#297275 0 Answer by slashnick for HTML CSS LI Wrapping slashnick 2008-11-17T22:57:25Z 2008-11-17T22:57:25Z <p>You would also need to give the style the ul:</p> <pre><code>ul{ width:250px; overflow:auto; } </code></pre> http://stackoverflow.com/questions/265074/does-the-onchange-event-propagate 4 Does the onchange event propagate? slashnick 2008-11-05T13:01:50Z 2008-11-05T19:21:52Z <p>I'm using event delegation to listen for events lower in the DOM, but it's not working for an onchange event on a select box. Does the onchange event propagate or bubble up the DOM?</p> <p>Googling has failed in finding a conclusive answer.</p> http://stackoverflow.com/questions/1412439/html-which-form-element-caused-submit Comment by slashnick on HTML - Which form element caused submit slashnick 2009-09-11T18:16:49Z 2009-09-11T18:16:49Z Do you have an example of the code you're using? http://stackoverflow.com/questions/81451/upload-files-in-google-app-engine/1240820#1240820 Comment by slashnick on Upload files in Google App Engine slashnick 2009-09-09T19:55:26Z 2009-09-09T19:55:26Z It may be because you are using the get method, try setting it to post instead. I'm not certain if it'll work but it's worth trying. http://stackoverflow.com/questions/240264/where-has-windows-working-sets-gone-in-eclipse-3-4/240346#240346 Comment by slashnick on Where has windows working sets gone in Eclipse 3.4 slashnick 2008-10-28T09:26:37Z 2008-10-28T09:26:37Z Correct, although I had to customize the perspective to show it (window &gt; customize perspective) http://stackoverflow.com/questions/208016/how-to-list-the-properties-of-a-javascript-object/208020#208020 Comment by slashnick on How to list the properties of a javascript object slashnick 2008-10-16T12:30:00Z 2008-10-16T12:30:00Z doh' I've updated it now http://stackoverflow.com/questions/140462/testing-for-multiple-screens-with-javascript/140501#140501 Comment by slashnick on Testing for multiple screens with javascript slashnick 2008-09-30T12:31:28Z 2008-09-30T12:31:28Z Some machines (my own) are set up as two seperate desktops so the height and width are only returned for the screen the browser is on. http://stackoverflow.com/questions/140462/testing-for-multiple-screens-with-javascript/140489#140489 Comment by slashnick on Testing for multiple screens with javascript slashnick 2008-09-26T16:19:52Z 2008-09-26T16:19:52Z I wonder if it's something a project like Gears might implement?