User Peldi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T15:06:23Zhttp://stackoverflow.com/feeds/user/6599http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/408202/what-collaborative-wireframing-ui-mockup-tools-are-out-there/409952#4099523Answer by Peldi for What *collaborative* wireframing / UI mockup tools are out there?Peldi2009-01-03T22:00:03Z2009-08-13T22:32:25Z<p>Hi there, Peldi here from Balsamiq. I am working on a hosted version of Mockups which will also sync with Mockups for Desktop. Stay tuned at <a href="http://balsamiq.com" rel="nofollow">balsamiq.com</a>, or email me if you'd like to be on the very exclusive private beta ;)</p>
http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all7Which is better: shipping a buggy feature or not shipping the feature at all?Peldi2008-09-17T22:28:54Z2009-05-30T09:58:36Z
<p>Hi there, this is a bit of a philosophical question. I am adding a small feature to my software which I assume will be used by most users but only maybe 10% of the times they use the software. In other words, the software has been fine without it for 3 months, but 4 or 5 users have asked for it, and I agree that it should be there.</p>
<p>The problem is that, due to limitations of the platform I'm working with (and possibly limitations of my brain), "the best I can do" still has some non-critical but noticeable bugs - let's say the feature as coded is usable but "a bit wonky" in some cases.</p>
<p>What to do? Is a feature that's 90% there really "better than nothing"? I know I'll get some bug reports which I won't be able to fix: what do I tell customers about those? Should I live with unanswered feature requests or unanswered bug reports?</p>
http://stackoverflow.com/questions/200860/can-an-adobe-air-application-run-via-the-command-line-output-to-console2Can an Adobe AIR Application run via the command line output to console?Peldi2008-10-14T11:59:07Z2009-01-05T20:28:19Z
<p>I have an AIR application that takes command-line arguments via onInvoke. All is good, but I cannot figure out how to print some status messages back to the user (to stdout / console, so to speak). Is it possible?</p>
<p>Even a default log file for traces would be fine, but I can't find any info about it anywhere. Do I need to create my own log file? Now that'd be silly.</p>
http://stackoverflow.com/questions/131923/why-do-my-hot-deployed-files-disappear-sometimes-i-think-apache-eats-them1Why do my hot-deployed files disappear sometimes? (I think Apache eats them)Peldi2008-09-25T07:26:50Z2008-10-06T14:35:31Z
<p>Here's my situation:</p>
<ul>
<li>Windows Server</li>
<li>Apache</li>
<li>CruiseControl</li>
</ul>
<p>The last step of my CruiseControl deploy scripts copies the build to Apache's htdocs folder, in a "demos" folder (I believe this is referred to as a "hot deploy"?)</p>
<p>All is good and dandy, except that SOMETIMES (not common, but it happens enough that it bugs me), the demos folder doesn't contain the files I built! The old one is gone and the new one isn't there, just vanished.</p>
<p>My gut feeling is that if I try to overwrite a file while someone on the web is downloading it, Apache just deletes it after the download is done? I don't know, it doesn't make any sense.</p>
<p>I looked everywhere and couldn't find even a hint...let's see how good this StackOverflow community really is! :)</p>
<p>Here's the "deploy" target in my ANT script:</p>
<pre><code><target name="deploy" depends="revertVersionFile">
<copy todir="${deploy.dir}">
<fileset dir="${bin.dir}"/>
</copy>
<copy todir="${deploy.dir}">
<fileset dir="${bin.dir}"/>
</copy>
<available file="${deploy.dir}/MockupsLive.swf" property="mockupsFile"/>
<fail unless="mockupsFile" message="MockupsLive doesn't exist!"/>
<available file="${deploy.dir}/skins/sketch/sketch.swf" property="skinFile"/>
<fail unless="skinFile" message="sketch.swf doesn't exist!"/>
</target>
</code></pre>
http://stackoverflow.com/questions/62437/how-do-i-prevent-flashs-urlrequest-from-escaping-the-url/87530#875303Answer by Peldi for How do I prevent Flash's URLRequest from escaping the url?Peldi2008-09-17T20:49:48Z2008-09-17T20:49:48Z<p>My friend Luis figured it out:</p>
<p>You should use encodeURI does the UTF8URL encoding
<a href="http://livedocs.adobe.com/flex/3/langref/package.html#encodeURI" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/package.html#encodeURI</a>()</p>
<p>but not unescape because it unescapes to ASCII see
<a href="http://livedocs.adobe.com/flex/3/langref/package.html#unescape" rel="nofollow">http://livedocs.adobe.com/flex/3/langref/package.html#unescape</a>()</p>
<p>I think that is where we are getting a %E9 in the URL instead of the expected %C3%A9.</p>
<p><a href="http://www.w3schools.com/TAGS/ref_urlencode.asp" rel="nofollow">http://www.w3schools.com/TAGS/ref_urlencode.asp</a></p>
http://stackoverflow.com/questions/62437/how-do-i-prevent-flashs-urlrequest-from-escaping-the-url3How do I prevent Flash's URLRequest from escaping the url?Peldi2008-09-15T12:43:39Z2008-09-17T20:49:48Z
<p>I load some XML from a servlet from my Flex application like this:</p>
<p>_loader = new URLLoader();
_loader.load(new URLRequest(_servletURL+"?do=load&id="+_id));</p>
<p>As you can imagine _servletURL is something like <a href="http://foo.bar/path/to/servlet" rel="nofollow">http://foo.bar/path/to/servlet</a></p>
<p>In some cases, this URL contains accented characters (long story). I pass the unescaped string to URLRequest, but it seems that flash escapes it and calls the escaped URL, which is invalid. Ideas?</p>
http://stackoverflow.com/questions/65458/which-version-control-system-would-you-use-for-a-1000-developer-organization-wh/65484#654840Answer by Peldi for Which Version Control System would you use for a 1000+ developer organization? Why?Peldi2008-09-15T18:36:29Z2008-09-15T18:36:29Z<p>Adobe uses Perforce</p>
http://stackoverflow.com/questions/408202/what-collaborative-wireframing-ui-mockup-tools-are-out-there/408730#408730Comment by Peldi on What *collaborative* wireframing / UI mockup tools are out there?Peldi2009-01-03T22:04:46Z2009-01-03T22:04:46ZHi Agent_9191, what are the UI elements you feel are missing? I can add new ones pretty easily. Please email me at peldi@balsamiq.com!http://stackoverflow.com/questions/131923/why-do-my-hot-deployed-files-disappear-sometimes-i-think-apache-eats-them/167589#167589Comment by Peldi on Why do my hot-deployed files disappear sometimes? (I think Apache eats them)Peldi2008-10-03T19:02:20Z2008-10-03T19:02:20Zgood idea Alex, I'll give it a try.http://stackoverflow.com/questions/131923/why-do-my-hot-deployed-files-disappear-sometimes-i-think-apache-eats-them/136751#136751Comment by Peldi on Why do my hot-deployed files disappear sometimes? (I think Apache eats them)Peldi2008-09-26T08:59:01Z2008-09-26T08:59:01ZHey hubbardr, I edited the question with my "deploy" target. I don't delte the files, I just copy over them. Twice, in fact (it makes the problem happen less frequently). It's interesting that the available targets never fail...I don't understand.http://stackoverflow.com/questions/62437/how-do-i-prevent-flashs-urlrequest-from-escaping-the-url/62519#62519Comment by Peldi on How do I prevent Flash's URLRequest from escaping the url?Peldi2008-09-25T07:30:03Z2008-09-25T07:30:03Zthanks, but while prettier, it made no differencehttp://stackoverflow.com/questions/62437/how-do-i-prevent-flashs-urlrequest-from-escaping-the-url/62994#62994Comment by Peldi on How do I prevent Flash's URLRequest from escaping the url?Peldi2008-09-15T14:31:23Z2008-09-15T14:31:23ZThanks, but from that same page it says useCodePage is false by default. Anyways, I'll experiment