davr
|
Registered User
|
Hello World
|
|
2h |
asked | Advantage of winelib? |
|
Dec 15 |
comment |
Cheapest Java Code Signing Certificate? (not self-signed) It's a little trickier than that, since certs can be chained. eg startssl might inherit from comodo for example, and in that case it would be accepted without complaining. |
|
Dec 11 |
comment |
C or Python best for learning network programming? Worst question title ever. People are lazy...they don't want to read paragraphs of text to find out what you're talking about, give us a summary by putting a useful title. |
|
Dec 9 |
comment |
What are your favorite git features or tricks? The main difference with SVN is that you had to manually tell it what revisions to merge. Once you did that, it was about as easy as git 98% of the time. Now supposedly SVN can figure out the revisions...but it doesn't always work. |
|
Dec 9 |
comment |
What are your favorite git features or tricks? you can right-click and cherry-pick directly in gitk, no need for the final command. |
|
Dec 8 |
revised |
De-Duplication API in Java added 5 characters in body |
|
Dec 8 |
comment |
De-Duplication API in Java This is just pseudo-code... ie I didn't bother putting in all the Java-specific syntax idiosyncrasies. |
|
Dec 7 |
awarded | ● Nice Answer |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 5 |
comment |
Objective reasons for using Python or Ruby for a new REST Web API Why not PHP? It's one of the most popular web server-side language these days. I'd probably avoid Ruby mainly because Twitter was written in it, and it sucked. But that could be more Twitter's fault than Ruby's. |
|
Dec 5 |
answered | De-Duplication API in Java |
|
Dec 2 |
comment |
What’s your favorite “programmer” cartoon? It's not a fake XKCD cartoon... stick figures existed before XKCD you know. |
|
Dec 2 |
comment |
Fiddler/Firebug for Adobe AIR? I use this all the time, well worth the license cost. |
|
Nov 24 |
awarded | ● Popular Question |
|
Nov 13 |
comment |
Disable Flex CSS type selector warning? This works, thanks! The GUI is a little different in Flex 4 (since it's based off a newer version of Eclipse), but the same basic idea works, it's in the secret little menu hidden by that triangle in the upper right corner of the Problems view. |
|
Nov 6 |
awarded | ● Popular Question |
|
Nov 3 |
answered | A road map to learning Flex for dummies. |
|
Nov 3 |
comment |
terminal sudo command Maybe explain what the magic letters 'sh' do, the asker seems pretty new and might not understand why they are needed. |
|
Nov 3 |
comment |
terminal sudo command -1 because rtf contains random formatting chars...99% chance executing it like this wont work. See pumpkin's answer |
|
Nov 3 |
answered | Creating a custom trace() class in AS3 |
|
Nov 2 |
answered | AS3 -TypeError #1009 - any easy way to find out *which* object reference is null? |
|
Oct 29 |
awarded | ● Popular Question |
|
Oct 29 |
awarded | ● Nice Question |
|
Oct 27 |
comment |
Custom Preloader in Flex 4? why do you need a code sample? I already found the problem... |
|
Oct 22 |
accepted | Can gmail’s random-signatures-from-an-RSS-feed be used for truly dynamic signatures? |
|
Oct 22 |
comment |
Javascript: How can I block the backspace character? webster, thanks for the code example, but it's not appreciated for you to stuff links to your unrelated site in your answers. |
|
Oct 21 |
comment |
JSObject-like stuff in ActionScript 3? It only violates it if you didn't set the correct parameters when embedding the flash object. |
|
Oct 20 |
accepted | Possible to programmatically enable “show redraw regions” in Flash debug player? |
|
Oct 20 |
answered | Possible to programmatically enable “show redraw regions” in Flash debug player? |
|
Oct 20 |
comment |
What’s the best size for toolbar icons? It depends completely on your application and whatever you feel like...all different sizes are common, there's no one standard. Some applications (eg Firefox) even have multiple icon sizes for different areas of the app |
|
Oct 19 |
revised |
Convert every letter from a paragraph (string) to lowercase before storing it back to the string (C Programming) edited tags |
|
Oct 18 |
awarded | ● Popular Question |
|
Oct 14 |
comment |
Optimizing AS3 SWF files for size? This is pretty cool...one wrinkle I found though. If you have multiple modules in your Flex project, it uses the same link-report.xml file for all of them, meaning it's only possible to see the report of the last compiled file |
|
Oct 14 |
comment |
Link report files for Flex with multiple modules overwrite each other Did you ever find a way to do this? I'm running into the exact same problem now myself. |
|
Oct 14 |
comment |
Optimizing AS3 SWF files for size? Actually I learned you can have PNG-8 with an alpha channel, I'm using that in a couple places now. It's a bit tricky, since most of the major gfx tools don't support PNG8 with an alpha channel, only with a 1-bit transparency on/off mask. So you have to save a PNG24 file, then use a little converter to output PNG8 with alpha. |
|
Oct 12 |
comment |
Why is Google’s “face recognition” feature available only in Picasa WEB and not Picasa for the PC? Correct, as of Picasa 3.5, the face recognition feature is in the PC client. |
|
Oct 12 |
asked | Optimizing AS3 SWF files for size? |
|
Oct 12 |
comment |
SVN - how to take a file off the version control This is a good partion solution...I think you could combine it with svn:ignore to make the perfect solution. |
|
Oct 12 |
comment |
SVN - how to take a file off the version control I think using svn:ignore makes more sense here...so you don't have to uncheck the file every single time you make a commit. |
|
Oct 12 |
revised |
How do I add protocol handler to firefox from extension fix slashes |
|
Oct 12 |
awarded | ● Nice Question |
|
Oct 10 |
answered | Is it possible to set up a private Mercurial repository on Google Code? |
|
Oct 10 |
comment |
Flash AS3 fluid navigation bar. This question looks awfully like "write my code for me". It doesn't seem like you've done any work on your own. |
|
Oct 10 |
comment |
Disable Flex CSS type selector warning? For future reference: if someone asks nicely enough I can upload the compiled compiler...but it's 100MB so I'm not gonna upload it just in case. |
|
Oct 10 |
answered | Disable Flex CSS type selector warning? |
|
Oct 9 |
comment |
Disable Flex CSS type selector warning? All my types in my CSS file are using namespaces. The types resolve ok, the styles get applied fine like I said. |
|
Oct 7 |
asked | Capture contents of Firefox/IE error console through code? |
|
Oct 7 |
comment |
Improve file download performance in Windows 2003 The other option is to switch to Linux for serving files, that's what people generally use when they need high performance serving. |
|
Oct 7 |
comment |
Improve file download performance in Windows 2003 What is the network speed of the servers? You only told us the speed of your local connection is 50mbit, but not the server itself. Perhaps your server's ISP is limiting the speed? |
|
Oct 5 |
comment |
Disable Flex CSS type selector warning? No, the style tag is first thing inside application tag |
