User Peldi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:06:23Z http://stackoverflow.com/feeds/user/6599 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/408202/what-collaborative-wireframing-ui-mockup-tools-are-out-there/409952#409952 3 Answer by Peldi for What *collaborative* wireframing / UI mockup tools are out there? Peldi 2009-01-03T22:00:03Z 2009-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-all 7 Which is better: shipping a buggy feature or not shipping the feature at all? Peldi 2008-09-17T22:28:54Z 2009-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-console 2 Can an Adobe AIR Application run via the command line output to console? Peldi 2008-10-14T11:59:07Z 2009-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-them 1 Why do my hot-deployed files disappear sometimes? (I think Apache eats them) Peldi 2008-09-25T07:26:50Z 2008-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>&lt;target name="deploy" depends="revertVersionFile"&gt; &lt;copy todir="${deploy.dir}"&gt; &lt;fileset dir="${bin.dir}"/&gt; &lt;/copy&gt; &lt;copy todir="${deploy.dir}"&gt; &lt;fileset dir="${bin.dir}"/&gt; &lt;/copy&gt; &lt;available file="${deploy.dir}/MockupsLive.swf" property="mockupsFile"/&gt; &lt;fail unless="mockupsFile" message="MockupsLive doesn't exist!"/&gt; &lt;available file="${deploy.dir}/skins/sketch/sketch.swf" property="skinFile"/&gt; &lt;fail unless="skinFile" message="sketch.swf doesn't exist!"/&gt; &lt;/target&gt; </code></pre> http://stackoverflow.com/questions/62437/how-do-i-prevent-flashs-urlrequest-from-escaping-the-url/87530#87530 3 Answer by Peldi for How do I prevent Flash's URLRequest from escaping the url? Peldi 2008-09-17T20:49:48Z 2008-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-url 3 How do I prevent Flash's URLRequest from escaping the url? Peldi 2008-09-15T12:43:39Z 2008-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&amp;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#65484 0 Answer by Peldi for Which Version Control System would you use for a 1000+ developer organization? Why? Peldi 2008-09-15T18:36:29Z 2008-09-15T18:36:29Z <p>Adobe uses Perforce</p> http://stackoverflow.com/questions/408202/what-collaborative-wireframing-ui-mockup-tools-are-out-there/408730#408730 Comment by Peldi on What *collaborative* wireframing / UI mockup tools are out there? Peldi 2009-01-03T22:04:46Z 2009-01-03T22:04:46Z Hi 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#167589 Comment by Peldi on Why do my hot-deployed files disappear sometimes? (I think Apache eats them) Peldi 2008-10-03T19:02:20Z 2008-10-03T19:02:20Z good 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#136751 Comment by Peldi on Why do my hot-deployed files disappear sometimes? (I think Apache eats them) Peldi 2008-09-26T08:59:01Z 2008-09-26T08:59:01Z Hey hubbardr, I edited the question with my &quot;deploy&quot; 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#62519 Comment by Peldi on How do I prevent Flash's URLRequest from escaping the url? Peldi 2008-09-25T07:30:03Z 2008-09-25T07:30:03Z thanks, but while prettier, it made no difference http://stackoverflow.com/questions/62437/how-do-i-prevent-flashs-urlrequest-from-escaping-the-url/62994#62994 Comment by Peldi on How do I prevent Flash's URLRequest from escaping the url? Peldi 2008-09-15T14:31:23Z 2008-09-15T14:31:23Z Thanks, but from that same page it says useCodePage is false by default. Anyways, I'll experiment