User bedwyr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T13:07:34Zhttp://stackoverflow.com/feeds/user/66575http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857556/what-should-i-learn-over-christmas-break/1857609#18576092Answer by bedwyr for What should I learn over Christmas break?bedwyr2009-12-07T03:12:27Z2009-12-07T03:12:27Z<p>Here are a few ideas. Obviously, time off between semesters is a good time to relax and recoup, so take these as nothing more than well-intentioned suggestions and find ways to enjoy the break :)</p>
<ul>
<li><p>Learn a scripting language. Python is fantastic (my personal favorite), but Perl would likewise serve you well. Professional projects you encounter in your professional career may have features written in a scripting language; it will help pad your resume and give you some good experience to learn one. You might also find some tools which will help you in future classes. Perl helped me in two networking classes when I didn't want to deal with parsing huge files in Bash :)</p></li>
<li><p>If you don't have any experience working with a different OS, get some. Install Linux if you haven't already and setup a few services. Being able to program is a fantastic thing; understanding how/why things work on various systems will give you a solid boost.</p></li>
<li><p>Check out an Open-Source project and review the code. Often you'll learn a lot simply by reading and attempting to understand other developers' code. Heck, you'll have to do it anyway when you're a professional so it's good to get accustomed to it ;)</p></li>
<li><p>Get together with other programmers in your area and share thoughts/ideas/experience. I really wish I had tapped into the tech communities where I live before my life became so busy with work and a family. If you can't find a local group to join, consider forming your own.</p></li>
</ul>
http://stackoverflow.com/questions/662605/parsing-a-flex-application-object-hierarchy-using-funfx0Parsing a Flex Application Object Hierarchy Using FunFXbedwyr2009-03-19T15:19:08Z2009-12-03T00:33:53Z
<p>I'm attempting to test a Flex application in which Objects do not have static IDs. I'd like to use FunFX for automation, since it can easily be kicked off from a Linux shell.</p>
<p>This said, FunFX doesn't appear to contain functions which allow users to access children via their parent objects (e.g. <code>parent.get_child_at(<index>)</code> or <code>parent.children()</code> for iteration). I see methods which return the <em>number</em> of children beneath a parent, but I don't see any iteration functionality which would allow me to parse the hierarchical structure.</p>
<p>Has anyone used FunFX to test a black-box Flex app where object IDs are not known? If so, how did you accomplish accessing the various objects & components to drive their functionality?</p>
http://stackoverflow.com/questions/1776758/software-development-on-mac/1776783#17767836Answer by bedwyr for Software development on Macbedwyr2009-11-21T21:06:43Z2009-11-21T21:06:43Z<p>As a Linux fanboy, I held out against purchasing a new Mac for quite a while. I finally bit the bullet, however, and picked up the new Macbook after pouring several cups of coffee into my previous laptop (which was running CrunchBang and Linux Mint). It was one of the best purchases I've made in a long time.</p>
<p>I'm using the Macbook for coding in Java and Python, and plan on installing the next version of Flex Builder when Adobe releases it (I've been doing Flex development on my Linux PC for the past 8 months). I'm also learning the Cocao framework and the XCode IDE for developing Mac apps (just for fun). The tools I use to develop (Eclipse, Emacs, Vim, to name a few) were either included or easy to install, and I haven't had any problems with day-to-day coding. I'm also running CruchBang Linux in VirtualBox on the laptop, so I have a Linux distro immediately at hand.</p>
<p>I would highly recommend making the switch, if you are ready for a new system.</p>
http://stackoverflow.com/questions/1373736/flex-how-to-access-component-inside-another-component-in-mxml/1373781#13737810Answer by bedwyr for Flex - How to access component inside another component in MXML?bedwyr2009-09-03T14:34:33Z2009-09-03T15:55:07Z<p>I'm updating the code here to include a reference to the outer class. I'm not 100% certain this is what you're looking for, but I'll do my best to give you a</p>
<p>OuterClass:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:local="*">
<local:InnerClass id="inner" width="100%" height="100%" />
</mx:VBox>
</code></pre>
<p>InnerClass:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:CheckBox id="innerCheckbox" selected="true" />
</mx:VBox>
</code></pre>
<p>Edit: Here's the updated version of the Application</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="horizontal" xmlns:local="*">
<mx:Binding source="{outer.inner.innerCheckbox.selected.toString()}"
destination="checkLabel.text" />
<mx:Label id="checkLabel" />
<local:OuterClass id="outer" width="100%" height="100%" />
</mx:Application>
</code></pre>
<p>Here's a brief explanation of what this does:</p>
<ol>
<li><p>There are 3 MXML files:</p>
<ul>
<li>OuterClass: an MXML file which contains InnerClass</li>
<li>InnerClass: an MXML file which contains a checkbox</li>
<li>Application: the main app which contains the OuterClass</li>
</ul></li>
<li><p>There is a binding in the Main app which takes the checkbox value (via the Object hierarchy) and sets the Label's text field appropriately. This works just like ActionScript would: with the . operator to access nested objects.</p></li>
<li><p>When the checkbox updates, the value of the Label updates accordingly.</p></li>
</ol>
<p>Hope this makes things a little clearer.</p>
http://stackoverflow.com/questions/1343227/can-pythons-logging-format-be-modified-depending-on-the-message-log-level2Can Python's logging format be modified depending on the message log level?bedwyr2009-08-27T19:13:52Z2009-08-27T19:20:42Z
<p>I'm using Python's <code>logging</code> mechanism to print output to the screen. I could do this with print statements, but I want to allow a finer-tuned granularity for the user to disable certain types of output. I like the format printed for errors, but would prefer a simpler format when the output level is "info."</p>
<p>For example:</p>
<pre><code> logger.error("Running cmd failed")
logger.info("Running cmd passed")
</code></pre>
<p>In this example, I would like the format of the error to be printed differently:</p>
<blockquote>
<pre><code># error
Aug 27, 2009 - ERROR: Running cmd failed
# info
Running cmd passed
</code></pre>
</blockquote>
<p>Is it possible to have different formats for different log levels without having multiple logging objects? I'd prefer to do this without modifying the logger once it's created since there are a high number of if/else statements to determine how the output should be logged.</p>
http://stackoverflow.com/questions/842665/how-do-you-work-around-the-need-to-cast-an-interfaced-object-back-to-its-base-cla1How do you work around the need to cast an interfaced object back to its base class?bedwyr2009-05-09T04:37:54Z2009-08-25T15:45:32Z
<p>This question is meant to apply to interfaces in general, but I'll use AS3/Flex for my language. It should be [mostly] obvious how to apply it in different languages.</p>
<p>If I create a base class, and it extends an interface, there is an explicit contract defined: for every method in the interface, the base class <em>must</em> implement said method.</p>
<p>This is easy enough. But I don't understand why you have the capacity to cast an interfaced instance back to its original base class. Of course, I've had to do this a few times (the example below is very close to the situation I'm struggling with), but that doesn't mean I understand it :^)</p>
<p>Here's a sample interface:</p>
<pre><code>public interface IFooable extends IUIComponent {
function runFoo():void;
}
</code></pre>
<p>Let's say I create a base class, which extends VBox and implements the interface:</p>
<pre><code>public class Foo extends VBox implements IFooable {
public Foo() {
super();
//stuff here to create Foo..blah blah
}
public function runFoo():void {
// do something to run foo
}
}
</code></pre>
<p>Now, the reason I used the interface, is because I want to guarantee "runFoo" is always implemented. It is a common piece of functionality all of my classes should have, regardless of how they implement it. Thus, my parent class (an Application) will instantiate Foo via its interface:</p>
<pre><code>public function init():void {
var foo:IFooable = new Foo();
foo.percentHeight = 100; //works because of IUIComponent
}
</code></pre>
<p><em>But</em>, if I want to add Foo to the Application container, I now have to cast it back to the base class (or to a different base class):</p>
<pre><code>public function init():void {
var foo:IFooable = new Foo();
foo.percentHeight = 100;
addChild(foo as DisplayObject); //_have_ to cast, because addChild takes a 'DisplayObject' class type
//could also do this:
//addChild(foo as VBox);
}
</code></pre>
<p>Wasn't the original intention to hide the implementation of Foo? There is still an assumption that Foo <em>is</em> a DisplayObject. Unfortunately, being able to add the custom object to a container seems impossible without casting.</p>
<p>Am I missing something entirely? Is this really just a phenomenon in Flex/AS3? If you have a container in the base API of a language, and it only allows you to add children of a certain class type, how do you then abstract out implementation?</p>
<p>For the record, <a href="http://stackoverflow.com/questions/539436/cast-interface-to-its-concrete-implementation-object-or-vice-versa">this question</a> appears to ask if this sort of operation is <em>possible</em>, but it doesn't really address why it might be bad design (and how to fix it).</p>
<p><hr /></p>
<p>2nd Thought:</p>
<p><strong>Abstract Classes</strong>:</p>
<p>As Matthew pointed out, abstract classes helps solve some of this: I could create a base abstract class which inherits from the DisplayObject (or, in my case, the VBox, since it is a child of DisplayObject), and have the base class implement the interface. Thus, any class which extends the abstract class would then be required to implement the methods therein.</p>
<p>Great idea -- but AS3 doesn't have abstract classes (to my knowledge, anyway).</p>
<p>So, I <em>could</em> create a base class which implements interface and extends the VBox, and inherit from it, and I could insert code in those methods which need to be extended; such code would throw an error if the base class is the executor. Unfortunately, this is run-time checking as opposed to compile-time enforcement.</p>
<p>It's still a solution, though.</p>
<p><hr /></p>
<p><strong>Context</strong>:</p>
<p>Some context might help:</p>
<p>I have an application which can have any number of sub-containers. Each of these sub-containers will have their own respective configuration options, parameters, etc.
http://stackoverflow.com/questions/1322857/in-puremvc-should-proxies-send-notifications-themselves-or-do-so-via-the-applic0In PureMVC, should Proxies send Notifications themselves, or do so via the ApplicationFacade?bedwyr2009-08-24T14:50:56Z2009-08-24T15:46:56Z
<p>In the <a href="http://puremvc.org" rel="nofollow">PureMVC</a> framework, Proxies communicate with the ApplicationFacade (and thus any interested components) via a Notification. Should this Notification be sent via their own instance, or the Singleton instance of the ApplicationFacade? Frankly, does it matter?</p>
<p>Here are two ways of doing this (in Flex/AS):</p>
<pre><code>// from the proxy itself
this.sendNotification(ApplicationFacade.NOTIFY_ALL);
// via the ApplicationFacade instance
ApplicationFacade.getInstance().notifyObservers(new Notification(ApplicationFacade.NOTIFY_ALL));
</code></pre>
<p>The second method looks more verbose and less intuitive to me. Moreover, the Proxy has the ability to send Notifications, which, in my mind, means it probably <em>should</em>. Are there instances where the Proxy should only send a Notification via the ApplicationFacade instance?</p>
http://stackoverflow.com/questions/1300667/how-much-logic-should-be-included-in-a-flex-mxml-attribute0How much logic should be included in a Flex MXML attribute?bedwyr2009-08-19T15:22:50Z2009-08-19T22:00:46Z
<p>Should programmatic logic be inserted into an MXML Attribute? I have a few Buttons which may or may not dispatch events based on the state of related components (e.g. <code>DataGrid</code> or <code>List</code>), and I'm trying to figure out if the logic is simple enough to simply embed in one of the Event attributes in the MXML.</p>
<p>Here's how I've been doing things:</p>
<pre><code><mx:Script>
<![CDATA[
private function sendEvent1():void {
if (list.selectedIndex != -1) {
dispatchEvent(new Event("click!"));
}
}
]]>
</mx:Script>
<mx:List id="list" dataProvider={listData} />
<mx:Button label="Click!" click="sendEvent1()" />
</code></pre>
<p>In this example, the ActionScript contained in the Script tag contains the logic for determining whether or not the event should be dispatched.</p>
<p>The Button, however, can be modified a bit, removing the need for the <code>sendEvent1</code> function:</p>
<pre><code><mx:Button label="Click!" click="if (list.selectedIndex != -1) dispatchEvent(new Event("click!")" />
</code></pre>
<p>Ignoring some of the obvious issues in these snippets (e.g. static strings, missing code for the data provider, etc.), there are a few concerns I have with the second example:</p>
<ul>
<li>The MXML is less readable (it gets long and cluttered)</li>
<li>As more function calls are required for clicking the Button, the logic in the MXML becomes much more unwieldy.</li>
<li>Embedding logic in the MXML makes it less intuitive (for me at least). If I want to know the logic of the MXML, I'm more inclined to look in the <code>Script</code> tag, where I expect the ActionScript.</li>
</ul>
<p>Are there other pros behind inserting logic in an MXML attribute? I've been seeing this use more and more often, and I want to make sure I'm not missing any compelling reasons to change how I've been doing things.</p>
http://stackoverflow.com/questions/1279663/why-are-mediators-coupled-to-proxies-in-flex-puremvc0Why are Mediators coupled to Proxies in Flex PureMVC?bedwyr2009-08-14T19:15:13Z2009-08-17T11:51:43Z
<p>I've just recently learned the <a href="http://puremvc.org" rel="nofollow">PureMVC</a> framework, and am a little confused as to the coupling between Proxy and Mediator objects. The links on <a href="http://puremvc.org/content/view/98/189/" rel="nofollow">this</a> page connect to some documents describing the framework. (Please note, the links on the aforementioned page open PDFs.)</p>
<p>The diagrams and examples of PureMVC I've examined often show a direct coupling between a Mediator and Proxy. When the proxy's state is updated, rather than sending a new Notification, the Mediator (which retrieves a reference to the Proxy from the Facade) has its state updated.</p>
<p>This certainly seems to simplify the logic of the code, but it also directly couples two seemingly disparate components together. To my understanding, a Mediator's purpose is to translate Events from a view into PureMVC Notifications. Proxies are meant to perform some function to gather data and relay it back to the view. These two components seem to exist in different layers of the application, and perhaps shouldn't necessarily be coupled together.</p>
<p>Wouldn't it make more sense to have the Proxy objects send their own Notifications when their state updates, which are forwarded to the interested Mediator by the Facade?</p>
http://stackoverflow.com/questions/1278749/how-do-i-detect-missing-fields-in-a-csv-file-in-a-pythonic-way3How do I detect missing fields in a CSV file in a Pythonic way?bedwyr2009-08-14T16:10:36Z2009-08-14T17:02:10Z
<p>I'm trying to parse a CSV file using Python's <code>csv</code> module (specifically, the <code>DictReader</code> class). Is there a Pythonic way to detect empty or missing fields and throw an error?</p>
<p>Here's a sample file using the following headers: NAME, LABEL, VALUE</p>
<pre><code>foo,bar,baz
yes,no
x,y,z
</code></pre>
<p>When parsing, I'd like the second line to throw an error since it's missing the VALUE field.</p>
<p>Here's a code snippet which shows how I'm approaching this (disregard the hard-coded strings...they're only present for brevity):</p>
<pre><code>import csv
HEADERS = ["name", "label", "value" ]
fileH = open('configFile')
reader = csv.DictReader(fileH, HEADERS)
for row in reader:
if row["name"] is None or row["name"] == "":
# raise Error
if row["label"] is None or row["label"] == "":
# raise Error
...
fileH.close()
</code></pre>
<p>Is there a cleaner way of checking for fields in the CSV file w/out having a bunch of <code>if</code> statements? If I need to add more fields, I'll also need more conditionals, which I would like to avoid if possible.</p>
http://stackoverflow.com/questions/1269400/is-this-a-fair-question-to-ask-in-a-software-engineering-interview-phase-1/1269671#126967114Answer by bedwyr for Is this a fair question to ask in a Software Engineering Interview, phase 1?bedwyr2009-08-13T02:04:33Z2009-08-13T02:04:33Z<p>The question on its face is pretty unreasonable. No one should have to pound out an HTTP server, on the spot, in one hour, and then be judged on the merits of their code. Most people will either choke, or be so bogged down in the details that they wouldn't finish.</p>
<p>This said, however, I can definitely see some merits of using a question like this to look for certain attributes in a prospective employee.</p>
<ol>
<li>Can you code? Yes, we all know how to do a recursive Fibonacci series. This question pushes the bounds of what a person can memorize quickly before an interview. If you're a competent programmer, you should <em>at least</em> be able to create a functioning program with some stub-code showing where your knowledge is failing. Note: I <em>wouldn't</em> expect the program to run according to the requirements.</li>
<li>Can you problem-solve? Again, it's not hard to quickly reproduce a simple recursive program; this question forces the interviewee to break a sizeable problem into manageable parts. I would be very interested to know <em>how</em> they worked through the program, and whether or not they can start on their own initiative.</li>
<li>What's your attitude like when asked to accomplish difficult tasks? Yes, this is a pretty unreasonable task (depending on how the results are dealt with). However, there are <em>many</em> unreasonable tasks which are requested in a programming career, and if the prospective employee is going to cop an attitude when asked to do difficult work, it's better to know ahead of time. Frankly, if the interviewee informed me of the <em>stupidity</em> of the task, I'd probably terminate the interview early and chuck their resume. I'd certainly be open to them questioning the merits of such a question, but I'd be analyzing their tone and level of respect.</li>
</ol>
<p>I think the real question is how the rest of the interview went. Did the employer analyze your attempts and try to illicit any understanding of how you approached the program? Did they take the opportunity to learn about you and how you work? If so, then I think the question is quite fair.</p>
<p>Did they lock you in a room, ask you to code, and then grade the result? If so, I would say the question is unreasonable and you're lucky to know this ahead of time.</p>
http://stackoverflow.com/questions/1249037/resizing-hbox-width-to-fit-content/1249245#12492450Answer by bedwyr for Resizing HBox width to fit contentbedwyr2009-08-08T16:16:50Z2009-08-08T16:16:50Z<p>I've not done this myself, but here are a few links which might be helpful:</p>
<ul>
<li><a href="http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postId=13087" rel="nofollow">Make control resize itself to the children content </a></li>
<li><a href="http://blog.flexexamples.com/2007/08/27/resizing-a-flex-accordion-container-to-fit-its-contents/" rel="nofollow">Resizing a Flex Accordion container to fit its contents</a></li>
</ul>
http://stackoverflow.com/questions/1235590/why-cant-perl-find-the-library-in-my-t-directory/1235666#12356660Answer by bedwyr for Why can't Perl find the library in my t/ directory?bedwyr2009-08-05T20:48:57Z2009-08-05T21:13:16Z<p>Have you declared the TestUtil.pm as a TestUtil module?</p>
<pre><code># in your TestUtil module...
package TestUtil;
</code></pre>
<p>EDIT:</p>
<p>Is your Perl module (TestUtil.pm) returning a status? Try adding this to the end of the TestUtil.pm file:</p>
<pre><code>1;
</code></pre>
http://stackoverflow.com/questions/1124968/most-harmful-misconception-of-beginners-about-programming/1135058#11350581Answer by bedwyr for Most harmful misconception of beginners about programming?bedwyr2009-07-16T01:57:44Z2009-07-16T01:57:44Z<p>That a 500+ line function is acceptable provided it's well-commented. I've seen experienced developers do this, and refuse to break it down into maintainable chunks because the function "only did what it was supposed to, and each operation was commented."</p>
http://stackoverflow.com/questions/989792/singleton-example/989810#9898100Answer by bedwyr for Singleton examplebedwyr2009-06-13T02:50:10Z2009-06-13T02:50:10Z<p>In one application, I had a manifest which was used to hold XML data retrieved from a server. This acted as a type of "cache" to prevent lookups from happening multiple times. Rather than passing a reference to the manifest from object to object, I created a Singleton which was accessed by whichever objects needed it at runtime.</p>
http://stackoverflow.com/questions/958712/custom-convenience-functions-methods/958843#9588432Answer by bedwyr for Custom convenience functions/methodsbedwyr2009-06-06T02:16:05Z2009-06-06T02:16:05Z<p>First of all, as Zifre mentioned, don't reinvent the wheel. Comb through the API to make sure the functionality doesn't already exist. If it does, and not it's in an experimental package (one which language developers don't guarantee from one version to another), use it. If you can find third-party coders who have a solution, and you're not violating any license agreements or their conditions of use, try to leverage their code (it doesn't always work). If you simply cannot find what you're looking for (or it's small enough to justify not spending time to research it), move on to writing it yourself.</p>
<p>Second, try to organize your libraries logically so they can be leveraged and delivered as a "component" in other applications. I'm not versed in PHP, but Java libraries can be built into a jar file; these can be included in other program's classpath, allowing them to also access this functionality. Depending your development environment, you will likely have an option to build projects using this set of libraries as an "external" reference, allowing you to keep and maintain them in a single location. The key concept here is keeping the location of your libraries in one place, and allowing other applications to leverage them as needed.</p>
<p>Third, avoid the copy/paste methodology as much as is humanly possible. A single bug in your library will suddenly need fixed in multiple locations, and any attempt at extending the functionality will have to take into account every project which leverages it. Most experienced developers can give you instances of where copy & paste bit them severely and caused a world of issues in the long term. It's not a habit you want to get into.</p>
<p>If there's a concern (as Matt pointed out) about autoloading large libraries in a PHP application, try to break the libraries down even further so only those necessary parts get included. It might take more work in the short term, but if you take into account the future of your code, it's well worth it.</p>
http://stackoverflow.com/questions/958260/appending-url-parameters-to-urls-in-actionscript/958570#9585700Answer by bedwyr for Appending URL parameters to URLs in ActionScriptbedwyr2009-06-05T23:32:37Z2009-06-05T23:32:37Z<p>You could use the <a href="http://livedocs.adobe.com/flex/3/langref/mx/rpc/http/HTTPService.html" rel="nofollow">HttpService</a> utility and leverage it's ability to take in parameters via an Object. Parameters can be sent in as key-value pairs, and the class handles the rest.</p>
<p>Here's an example of a utility method which does exactly this:</p>
<pre><code>public static function sendViaHttpService(url:String,
format:String,
method:String,
onComplete:Function,
onFail:Function,
parameters:Object=null):void {
var http:HTTPService = new HTTPService();
http.url = url;
http.resultFormat = format;
http.method = method;
// create callback functions which remove themselves from the http service
// Don't want memory leaks
var pass:Function = function(event:ResultEvent):void {
onComplete(event);
http.removeEventListener(ResultEvent.RESULT, pass);
}
var fail:Function = function(event:FaultEvent):void {
onFail(event);
http.removeEventListener(FaultEvent.FAULT, fail);
}
http.addEventListener(ResultEvent.RESULT, pass);
http.addEventListener(FaultEvent.FAULT, fail);
// yeah, we're going to send this in with the date to prevent
// browser-caching...kludgey, but it works
if (parameters == null) {
parameters = new Object();
}
// always get new date so the URL is not cached
parameters.date = new Date().getTime();
http.send(parameters);
} //sendViaHttpService()
</code></pre>
<p>Parameters can be passed into this static function like this:</p>
<pre><code>var complete:Function = function(event:ResultEvent):void { /* your
callback here */ };
var fail:Function = function(event:FaultEvent):void { /* your
failure callback here */ };
var url:String = "<your URL here>";
sendViaHttpService(url, URLLoaderDataFormat.TEXT, URLRequestMethod.GET, complete, fail, { param1: 'value1', param2: 'value2' });
</code></pre>
http://stackoverflow.com/questions/928081/flex-warning-unable-to-bind-to-property-foo-on-class-object-class-is-not-an/928294#9282940Answer by bedwyr for Flex Warning: Unable to bind to property 'foo' on class 'Object' (class is not an IEventDispatcher)bedwyr2009-05-29T21:45:25Z2009-05-29T21:45:25Z<p>I haven't been using Flex for very long, and this might not fit your requirements, but why not use XML? I believe you can set the TextInput text value to attributes in the XML.</p>
<p>I'm using pseudo-code, but something like this makes sense to me:</p>
<pre><code>[Bindable] private static const currentLink:XML = <root>
<trigger1 value=""/>
<trigger2 value="" />
</root>;
...
<mx:TextInput id="trigger1" width ... text="{currentLink.trigger1.@value}" />
</code></pre>
<p>Something like this, perhaps?</p>
http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/879427#8794270Answer by bedwyr for Hidden features of Eclipsebedwyr2009-05-18T19:43:23Z2009-05-18T19:43:23Z<p>I'm surprised no one mentioned the Emacs keybinding setting available in Eclipse. This is one of my favorite little features; it allows me to transition from Emacs to Eclipse with little adjustment in my navigation preferences.</p>
<p>Windows->Preferences->General->Keys->Scheme.</p>
http://stackoverflow.com/questions/873696/calling-a-global-array/873776#8737761Answer by bedwyr for Calling a global Arraybedwyr2009-05-17T02:25:55Z2009-05-17T02:25:55Z<p>You have an incompatibility between static methods and instance variables.</p>
<p>Think about it this way: an instance variable is associated with a specific <em>instance</em> of a class; a static variable is associated with the <em>class</em> itself. You call static methods via the class:</p>
<pre><code>ClassI.callStaticMethod();
</code></pre>
<p>Whereas you call an instance method via an instance of the class:</p>
<pre><code>public ClassI classObj = new ClassI();
classObj.callInstanceMethod();
</code></pre>
<p>In the code you posted, there's an instance variable ("canvas") being set in a static method (<code>main</code> is associated with the Class, not an instance).</p>
<p>Therefore, you'll need to create instance methods to modify/update your "canvas", and create an instance of the class within the static function. This object (an "instance") can be used to update the instance variable.</p>
<p>Here's an example:</p>
<pre><code>public class Foo {
public char canvas[][];
public static void main(String[] args) {
Foo fooObj = new Foo(); //creates an instance of this class
fooObj.createCanvas(2, 2);
fooObj.modifyCanvas(0, 0, 'c');
}
public void createCanvas(int x, int y) {
canvas = new char[x][y];
}
public void modifyCanvas(int x, int y, char c) {
canvas[x][y] = c;
}
}
</code></pre>
<p>This obviously isn't a one-to-one correlation to your assignment, but I'm sure you'll be able to adapt it to what you're doing :-)</p>
http://stackoverflow.com/questions/870622/how-can-i-nicely-animate-between-viewstacks/870869#8708690Answer by bedwyr for How can I nicely animate between viewstacksbedwyr2009-05-15T21:04:42Z2009-05-15T21:04:42Z<p>One thing you can try is a little more advanced swapping in and out of views. When the 'switch' button is clicked, perform the move and don't do the swap until the move is finished.</p>
<p>Perhaps something like this:</p>
<pre><code>private function switchTab():void {
var move:Move = new Move(stack.selectedChild as DisplayObject); //not sure about the casting right now...might need to check on that
// implement move details here...
//closure to make sure the next child is swapped in after the animation completes
var done:Function = function(event:Event):void {
// do the change here in this closure
if (stack.selectedChild == stack1) {
stack.selectedChild = stack2;
}
else {
stack.selectedChild = stack1;
}
// remove the EventListener..don't want memory leaks :)
move.removeEventListener(EffectEvent.END, done);
}
// make sure 'move' performs the 'done' function when the animation finishes
move.addEventListener(EffectEvent.END, done);
move.play();
}
</code></pre>
http://stackoverflow.com/questions/870356/how-do-i-remove-http-from-a-string-in-actionscript/870370#8703704Answer by bedwyr for How do I remove "http://" from a string in actionscript?bedwyr2009-05-15T19:16:34Z2009-05-15T19:16:34Z<p>Try this:</p>
<p><code>url.replace("http:\/\/","");</code></p>
http://stackoverflow.com/questions/868968/what-programming-concept-technique-has-boosted-your-productivity/869286#8692861Answer by bedwyr for What programming concept/technique has boosted your productivity?bedwyr2009-05-15T15:17:12Z2009-05-15T15:17:12Z<ol>
<li><p>Design Patterns. Learning how to break dependence upon implementation and inheritance, and depending on interfaces (contracts) instead changed the way I think about programming.</p></li>
<li><p>Debugging. Once I figured out how to actually step through the code and go line-by-line, examining the underlying state, it revolutionized how I troubleshoot code.</p></li>
<li><p>Practice, practice practice: I didn't realize how important it is to keep working on my skills apart from work until a relatively short time ago. Mistakes and solutions I make at home make me a better programmer at work, and vice a versa. Learning should never stop if you want to be good at something, and programming isn't an exception.</p></li>
</ol>
http://stackoverflow.com/questions/738331/does-the-scrum-process-ultimately-divest-team-members-from-their-respective-skill12Does the Scrum process ultimately divest team members from their respective skills?bedwyr2009-04-10T17:45:30Z2009-05-12T19:22:40Z
<p>My organization has been experimenting with the introduction of more "Agile" methods. We've been trying the Scrum approach for a short while, and most of the team has, more or less, adapted to it. I like it as a whole, but I'm concerned about one potentially severe impact of the methodology: as teams are consistently focused on features and backlog items, and testers are more integrated with the overall development process, it seems like skill sets are becoming blurred, and people are sensing less respect for their individual abilities.</p>
<p>Some of our developers are excellent at server-side technologies and optimization of heavy-weight data provisioning. Others have invested a large amount of their careers learning GUI technologies and have developed a fundamental understanding of users and usability in an application. Neither skill set is better than the other, but they are certainly different.</p>
<p>Is this an inevitable result of the Scrum process? Since everyone on the team (as I understand it) contributes to satisfying the next feature/requirement, backlog item, or testing goal at hand, the underlying philosophy seems to be "anyone can do it." This is, in my experience, simply not true. Most engineers (developers, testers, etc.) have a particular skill set they have honed over the years, and the Scrum methodology, in my mind, tends to devalue those very abilities they were previously respected for.</p>
<p>Here's an example for clarification:</p>
<p>If a sudden change of technology occurs on the server-side data provisioning, and every item on the to-do list for the sprint is based on this new change, the GUI developers (who likely haven't had time to become acclimated with the new technology) might not be able to contribute to the sprint. At the very least, they will need to invest time to get ramped up, and then their code will be suspect because of their lack of experience.</p>
<p>I understand the need for rapid development to discourage "role silos" but doesn't this discount one fundamental reality: people develop <em>skills</em> in accordance to necessity, their interests, or their experiences. People seem to be less motivated when they perceive their position is one of "plug-ability" (e.g. we can "plug" anyone in to do this particular task). How does Scrum address this? If it doesn't, has anyone addressed this when adopting the Scrum methodology?</p>
http://stackoverflow.com/questions/666791/web-charting-serverside-or-client-side/846328#8463281Answer by bedwyr for Web Charting, serverside or client side?bedwyr2009-05-10T23:53:45Z2009-05-10T23:53:45Z<p>I would recommend determining your performance/provisioning needs and making the decision from there. If you are expecting a large number of clients, each requiring a large number of charts which may need to update periodically, offloading the processing onto the clients will likely be the better solution. As jesper mentioned, you would also be able to do more interaction directly with the charts on the client, rather than requiring callbacks to the server for more complex functionality.</p>
<p>If the general use-model for your charts is simple (e.g. static charts being generated on the fly by the server, w/out needs for updating), and the number of clients is low, you might be fine using hardware to better improve performance. Server-side would probably be sufficient in this case.</p>
<p>Scalability and performance can be hard to implement later down the road. If you have the potential to mitigate this from the beginning, you should do so, since current use models so often change as future users decide they need faster/better functionality.</p>
http://stackoverflow.com/questions/846139/whats-the-quickest-way-for-a-ruby-programmer-to-pick-up-python/846168#8461682Answer by bedwyr for What's the quickest way for a Ruby programmer to pick up Python?bedwyr2009-05-10T21:37:33Z2009-05-10T21:37:33Z<p>After running through some tutorials on-line (the ones posted so far look pretty good), find a current Ruby project you've done (or are working on) and re-write it in Python. I've used this technique to transition from various languages, and it's helped enormously.</p>
http://stackoverflow.com/questions/844381/what-tools-are-recommended-for-creating-flash-animations-on-linux/844500#8445001Answer by bedwyr for What tools are recommended for creating Flash animations on Linux?bedwyr2009-05-10T01:26:30Z2009-05-10T01:26:30Z<p>I agree with James Ward about using the Flex SDK. Unfortunately, the future of FB in Linux is not clear.</p>
<p><a href="http://stackoverflow.com/questions/803581/development-tools-for-adobe-flex-air/803719#803719">This post</a> contains some information regarding using Emacs to develop Flex in Linux. It might help you out.</p>
http://stackoverflow.com/questions/827843/installing-flash-9-debugger-in-linux/827889#8278890Answer by bedwyr for Installing flash 9 debugger in linuxbedwyr2009-05-06T03:18:15Z2009-05-09T03:29:03Z<p>I haven't seen the issues you have, and perhaps your requirements restrict you to an older version, but I've had great success with <a href="http://www.adobe.com/support/flashplayer/downloads.html" rel="nofollow">flashplayer 10's debugger</a>. You might try this one and see if it works.</p>
<p>Edit: Ahh, I just noticed one very pertinent statement you made: you require flashplayer 9. Sorry =( </p>
<p>Edit 2: I just had the same thing happen to me on Linux. When I extracted the tar.gz from Adobe, the installation script wasn't present. This said, I <em>was</em> able to get the debugger version of 9 installed anyway.</p>
<p>When you extracted, did you see a <code>libflashplayer.so</code> file? I didn't have an installation script, but I <em>did</em> get this file. If so, all you need to do is this:</p>
<ol>
<li>Close <em>all</em> instances of Firefox</li>
<li>Backup your current <code>libflashplayer.so</code> module: <code>~/.mozilla/plugins/libflashplayer.so.org</code> (this way, if something goes wrong, you can always put it back)</li>
<li>Copy the version you extracted from the Flash player download to the same plugins directory: <code>cp /path/to/vers/9/libflashplayer.so ~/.mozilla/plugins/</code></li>
<li>Restart Firefox, open a Flash app, and right-click to check for the version</li>
</ol>
<p>These steps worked perfectly for me, and I was able to run Flex Builder's debugger in Linux. Hope it works for you!</p>
http://stackoverflow.com/questions/841785/how-do-i-include-a-perl-module-thats-in-a-different-directory/841806#8418064Answer by bedwyr for How do I include a Perl module that's in a different directory?bedwyr2009-05-08T21:10:48Z2009-05-08T21:10:48Z<p>'use lib' can also take a single string value...</p>
<pre><code>#!/usr/bin/perl
use lib '<relative-path>';
use <your lib>;
</code></pre>
http://stackoverflow.com/questions/832672/should-qa-people-write-some-production-code-and-should-devs-do-some-qa/832801#8328016Answer by bedwyr for Should QA people write some production code and should devs do some QA?bedwyr2009-05-07T03:41:19Z2009-05-07T03:41:19Z<p>Speaking as a QA guy, I find the idea intriguing. Having the chance to develop professional code sounds like a great idea; I also like the idea of exposing the developers to the QA world, so they know what it takes to advocate for a defect fix. </p>
<p>Here are few thoughts regarding pros/cons of such an approach.</p>
<p>Pros:</p>
<ol>
<li>QA would gain a better feel for working
in a true development environment.
Very often, QA is relegated to ad
hoc script creation, where automated
tests are written in a somewhat
rushed and slipshod manner. This
might give them an opportunity to
expand their horizons into a more
structured development cycle. This
would also provide some insight into
how they are writing their scripts,
and may give a few ideas for better
test development.</li>
<li>QA might have a little more stake in
the release cycle. Though from a
personal standpoint, I would say I
associate a lot of my pride with
our releases and the quality
therein, sometimes it really does
seem like QA doesn't have much
investment in the overall product.
We are often seen as "bug finders"
rather than engineers, and I wonder
if this type of approach would give
an even greater veneer of
professionalism (for lack of a
better word) to the QA team.</li>
<li>Developers would possibly gain a
better feel for QA as a practice. I've
often had developers tell me they
have no idea what I do for a living.
Having developers test code would
give them a slight taste of "eating
your own dog food," so to speak.</li>
<li>This would give the QA a chance to
expand their resume a bit. Many QA
personnel I know are concerned about
their marketability. Good
developers are typically able to
pick up jobs relatively quickly;
testing positions seem harder
to find. Anything which helps
employees to broaden their
experience in the field would be an
attractive proposal.</li>
</ol>
<p>Cons:</p>
<ol>
<li>Developers should not be relied upon to
test their own code. In the same
vein, QA should not be relied upon
to test their own code.
"Cross-pollination" (to steal
Lance's excellent phrase) is dangerous
inasmuch as it could result in
people validating their own work.
Generally speaking, this is not a
good idea. People are often blind
to their own shortcomings or
mistakes, and developed code is best
validated when tested by third
parties. Of course, proper
monitoring and management of this
process could mitigate the
process...but it's a concern.</li>
<li>QA are not professional developers
and developers are not professional
QA. I cringe whenever a developer
hands me code he/she has "tested."
It's not that I look down on their
skill set: on the contrary, I
couldn't write the code they have.
But I also recognize the differences
between our definition of "tested
code." In the same way, I wouldn't,
as a QA guy, want my code to be
given high-visibility to a customer
which could hurt or impede the
customer's relationship. Note: I
don't necessarily mean mission
critical: sometimes a customer relationship
can be impaired by simple usability
flaws -- a somewhat common
mistake for an immature developer.
My concern would be <em>high
visibility</em> (which I think includes
mission critical); I know I'm not a
professional developer, and I
wouldn't want to be held to the same
standard.</li>
<li>This increases the chance for
rework. I don't necessarily trust
developers to adequately test code,
and they shouldn't test me to
adequately develop a solution. In
both cases, the possibility for
someone needing to go back over
previous work to do it "right" would
be a concern.</li>
</ol>
<p>On the whole, I think the idea is very interesting, and it would be great to hear of stories where this has been attempted.</p>
<p>One similar approach I've been involved in are "bug days." These are days where developers sit alongside QA and they team up to find as many defects as possible. Days like this are outstanding: professional relationships between the QA and development teams are strengthened, and respect for each other's skills typically increases: devs can better understand how QA works to find bugs, and QA can better understand how much the devs know as they rattle off solutions to the bugs you find. It's not a perfect way to address the issue: QA still doesn't do much production-level code. But it really aids in promoting better understanding between the positions.</p>
http://stackoverflow.com/questions/662605/parsing-a-flex-application-object-hierarchy-using-funfx/1836909#1836909Comment by bedwyr on Parsing a Flex Application Object Hierarchy Using FunFXbedwyr2009-12-06T23:23:47Z2009-12-06T23:23:47ZWow, an answer after such a long time -- thanks! I'm not doing testing any longer, but I appreciate the response.http://stackoverflow.com/questions/1373736/flex-how-to-access-component-inside-another-component-in-mxml/1373781#1373781Comment by bedwyr on Flex - How to access component inside another component in MXML?bedwyr2009-09-03T16:07:29Z2009-09-03T16:07:29ZIf you're still working on this (no worries if you're not interested -- I'm just trying to help :), see the latest edits.http://stackoverflow.com/questions/687/keyboard-for-programmers/178760#178760Comment by bedwyr on Keyboard for programmersbedwyr2009-09-02T13:33:27Z2009-09-02T13:33:27Z+1 without a doubt, the best keyboard I've ever used. I have one for work and another at homehttp://stackoverflow.com/questions/1343227/can-pythons-logging-format-be-modified-depending-on-the-message-log-level/1343273#1343273Comment by bedwyr on Can Python's logging format be modified depending on the message log level?bedwyr2009-08-27T20:10:48Z2009-08-27T20:10:48ZOutstanding - that worked perfectly. I modified the format() method to check levelno and change the message if need be. Otherwise it resets it back to the original string I passed in. Thanks!http://stackoverflow.com/questions/1322857/in-puremvc-should-proxies-send-notifications-themselves-or-do-so-via-the-applic/1323160#1323160Comment by bedwyr on In PureMVC, should Proxies send Notifications themselves, or do so via the ApplicationFacade?bedwyr2009-08-24T16:37:49Z2009-08-24T16:37:49ZThanks for your input -- makes sense :)http://stackoverflow.com/questions/1305687/should-programming-according-to-the-interface-hide-everything/1305706#1305706Comment by bedwyr on Should programming according to the interface hide everything?bedwyr2009-08-20T12:12:49Z2009-08-20T12:12:49ZCould you just instantiate 'b' as an IFoo object rather than casting it later? "IFoo b = new Bar();" I know this works in Java and Flex/ActionScript, but maybe not in the language you're using :)http://stackoverflow.com/questions/1300667/how-much-logic-should-be-included-in-a-flex-mxml-attributeComment by bedwyr on How much logic should be included in a Flex MXML attribute?bedwyr2009-08-19T15:51:10Z2009-08-19T15:51:10ZYeah, quick typing for code snippets usually results in crappy function names and ids..the real code has better naming conventions ;) Thanks for your thoughts!http://stackoverflow.com/questions/1294590/how-to-remove-all-svn-directories-from-my-app-directoriesComment by bedwyr on How to remove all .svn directories from my app directories.bedwyr2009-08-18T15:26:45Z2009-08-18T15:26:45ZYou might also want to modify the delete command "rm -rfi" just to make sure you are positive you want to delete the directories.http://stackoverflow.com/questions/1279663/why-are-mediators-coupled-to-proxies-in-flex-puremvc/1280385#1280385Comment by bedwyr on Why are Mediators coupled to Proxies in Flex PureMVC?bedwyr2009-08-16T18:23:38Z2009-08-16T18:23:38ZActually that does make more sense -- thanks. I was reading through some posts in the PureMVC forums, and this subject appears to have a number of different opinions, many of which are pretty rabidly held. Thanks for your thoughts!http://stackoverflow.com/questions/1279663/why-are-mediators-coupled-to-proxies-in-flex-puremvc/1280385#1280385Comment by bedwyr on Why are Mediators coupled to Proxies in Flex PureMVC?bedwyr2009-08-14T22:00:35Z2009-08-14T22:00:35ZSorry, I don't understand. If the Mediator receives a Notification from the facade (which was sent by the Proxy), and it contains a data object which is used to update the view, how is it coupled to the Proxy? Do you mean they are indirectly coupled through the Notification?http://stackoverflow.com/questions/1278749/how-do-i-detect-missing-fields-in-a-csv-file-in-a-pythonic-way/1278792#1278792Comment by bedwyr on How do I detect missing fields in a CSV file in a Pythonic way?bedwyr2009-08-14T18:07:22Z2009-08-14T18:07:22Z@balpha, your second edit is exactly what I'm looking for. I actually prefer it bailing if an extra field is added to the file. Thanks!http://stackoverflow.com/questions/1235590/why-cant-perl-find-the-library-in-my-t-directory/1235789#1235789Comment by bedwyr on Why can't Perl find the library in my t/ directory?bedwyr2009-08-05T21:18:14Z2009-08-05T21:18:14ZThat's a good point: it would be helpful to know how the script is being invoked, and where the modules are located.http://stackoverflow.com/questions/1235590/why-cant-perl-find-the-library-in-my-t-directory/1235764#1235764Comment by bedwyr on Why can't Perl find the library in my t/ directory?bedwyr2009-08-05T21:14:43Z2009-08-05T21:14:43Z@Kys, it's best to edit your original question. I like to use "EDIT" statements to show where my answer has been revised.http://stackoverflow.com/questions/1235590/why-cant-perl-find-the-library-in-my-t-directory/1235764#1235764Comment by bedwyr on Why can't Perl find the library in my t/ directory?bedwyr2009-08-05T21:13:48Z2009-08-05T21:13:48ZSee my original post -- one more quick idea. This worked for me when I copied your code.http://stackoverflow.com/questions/1235590/why-cant-perl-find-the-library-in-my-t-directory/1235764#1235764Comment by bedwyr on Why can't Perl find the library in my t/ directory?bedwyr2009-08-05T21:09:00Z2009-08-05T21:09:00ZJust an etiquette-thing: it's best to post any updates to your question in the original source of the question. This way your responses don't get lost when other potential solutions are up-voted.