User warpr - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:41:49Z http://stackoverflow.com/feeds/user/7700 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/899858/returning-csv-file-from-servlet-using-servletoutputstream-over-https-in-internet/1333953#1333953 1 Answer by warpr for Returning CSV file from Servlet using ServletOutputStream over HTTPS in Internet Explorer warpr 2009-08-26T11:08:22Z 2009-08-26T11:08:22Z <p>I've had a similar problem with downloads over https://. I solved it by setting the appropriate headers to allow Internet Explorer to cache the download.</p> <p>So, set 'pragma: ' to empty or public and make sure you have no 'Cache-Control: ' header or set that appropriately too.</p> <p>(I found this solution here: <a href="http://www.danforys.com/2008/08/06/unsetting-http-headers-in-php/" rel="nofollow">http://www.danforys.com/2008/08/06/unsetting-http-headers-in-php/</a> ).</p> http://stackoverflow.com/questions/739314/easiest-way-to-generate-localization-files/1079473#1079473 1 Answer by warpr for Easiest way to generate localization files warpr 2009-07-03T13:55:24Z 2009-07-03T13:55:24Z <p>I've just done this for a project I'm working on, for us the process is like this:</p> <p>First, I have a POTFILES.in file which contains a list of source files needing translation. We actually have two files (e.g. admin.in and user.in), as the admin interface doesn't always need translating. So we can send translators only the file containing strings the users see.</p> <p>Running the following command will create a .pot template from the POTFILES.in:</p> <pre><code>xgettext --files-from=POTFILES.in --directory=.. --output=messages.pot </code></pre> <p>Run the above command from the po/ directory, which should be a subdirectory of your project and contain the POTFILES.in file. The .pot file has the exact same format as a .po file, but it is a template containing no translations. You create a new template whenever new translatable strings have been added to your source files.</p> <p>To update the already translated .po files and add new strings to them, run:</p> <pre><code>msgmerge --update --no-fuzzy-matching --backup=off da.po messages.pot </code></pre> <p>In the above example I disable fuzzy matching, as our strings are a mess and it did more harm than good. I also disabled backup files, as everything is in subversion here. Run the above command for each language, in this case I updated the danish translation.</p> <p>Finally run msgfmt to create the .mo files from the .po files:</p> <pre><code>msgfmt nl.po --output-file nl.mo </code></pre> <p>Ofcourse, you wouldn't want to run this manually everytime, so create some scripts (or preferably one or more Makefiles) to do this for you.</p> <p>Note that your directory layout is slightly different from my situation, so you will have to adjust output filenames/paths a bit, but the steps should be the same.</p> http://stackoverflow.com/questions/875183/how-to-measure-characters-in-javascript-and-or-with-jquery/875198#875198 1 Answer by warpr for How to measure characters in javascript and/or with jquery warpr 2009-05-17T18:48:04Z 2009-05-17T18:53:34Z <p>There is no easy way to do this in HTML.</p> <p>However, if you really must know, you can probably figure it out with some really ugly javascript:</p> <p>First, create a &lt;div&gt; with the width you need, put some characters in and request its .height() in pixels. Then, keep adding characters to it and keep checking the .height(), when the height of the &lt;div&gt; changes you know it has grown to fit a new line of text.</p> http://stackoverflow.com/questions/875145/remove-javascript-code-from-html/875179#875179 3 Answer by warpr for Remove JavaScript code from HTML warpr 2009-05-17T18:36:39Z 2009-05-17T18:36:39Z <p>Why do you want to filter javascript?</p> <p>If you are trying to prevent cross-site scripting attacks in a web application you're probably better off using a well-tested library for that purpose. It looks like Microsoft has an <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=051ee83c-5ccf-48ed-8463-02f56a6bfc09&amp;DisplayLang=en" rel="nofollow" title="AntiXSS">AntiXSS</a> library, which may be of use.</p> http://stackoverflow.com/questions/874576/is-latex-worth-learning-today/874958#874958 -2 Answer by warpr for Is LaTeX worth learning today? warpr 2009-05-17T16:43:06Z 2009-05-17T16:43:06Z <h2>XHTML</h2> <p>It depends on what your needs are. For me, using LaTeX is overkill, I use XHTML instead.</p> <h2>Pros</h2> <ul> <li>Seperates content from presentation very well. (Or not at all if you prefer).</li> <li>It's easy to create a good looking .pdf if you have access to prince xml (www.princexml.com).</li> <li>As a webdeveloper, I don't have to learn anything new to use it.</li> <li>Easily version controlled (svn/git/bzr/etc...)</li> <li>If you need to publish on the web, no conversion needed :)</li> </ul> <h2>Cons</h2> <p>There is basically one very big downside to it, which is that XHTML is rather limited, and definitely not suited for publishing on paper. So you will often have to add a number of custom XML tags, with some XSL style sheets to parse them and replace them with whatever you need. (For example, princexml doesn't generate a table of contents for you, this isn't too complicated to do with some XSLT, but it will be quite a challenge if you don't speak XPath).</p> http://stackoverflow.com/questions/323269/how-to-generate-pdfs-with-php/323353#323353 0 Answer by warpr for How To Generate PDFs with PHP warpr 2008-11-27T09:59:33Z 2008-11-27T09:59:33Z <p>I have had good experiences with PrinceXML. Their rendering engine is very good. Passes acid2 and has good .svg support so you can include vector images instead of bitmaps to keep the .PDF relatively small (which is important when generating reports which need to be sent as an attachment).</p> <p>(note that princexml is proprietary software). </p> http://stackoverflow.com/questions/272175/is-it-feasible-to-make-iphone-apps-using-just-opengl-and-not-cocoa-touch/272198#272198 3 Answer by warpr for Is it feasible to make iPhone apps using just OpenGL and not Cocoa Touch? warpr 2008-11-07T14:22:55Z 2008-11-07T14:22:55Z <p>Unless you are working on a game, users will expect your user interface widgets to work the same way they do in other applications. You can never emulate that properly, especially if apple decides to fix certain issues in future firmware upgrades, etc...</p> http://stackoverflow.com/questions/272131/dynamic-resizing-repositioning-of-divs-for-multi-column-viewing/272183#272183 3 Answer by warpr for Dynamic resizing / repositioning of divs for multi-column viewing warpr 2008-11-07T14:16:08Z 2008-11-07T14:16:08Z <p>You probably cannot get what you want with just CSS/HTML, but you can get somewhat close.</p> <p>A trick I used for a photo album is this:</p> <ol> <li>Make sure each feed has a fixed width, I would recommend something like '20em';</li> <li>Make sure each feed has the same height.</li> <li>Float everything left.</li> </ol> <p>Because each div has the same dimensions, when they're floated left they will form a grid with exactly the number of columns that will fit in your browser.</p> <p>Unless you actually fix the height of the divs and use CSS to clip the content, you will need javascript for step 2, what I did was:</p> <ol> <li>Iterate over each feed div, finding the tallest div.</li> <li>Iterate over each div again, changing the height to match the div found in the first step.</li> </ol> <p>This is fairly easy to implement, but is obviously not optimal. I look forward to reading any better solutions posted here :)</p> http://stackoverflow.com/questions/270793/how-will-learning-xml-benefit-me/272138#272138 0 Answer by warpr for How will learning XML benefit me? warpr 2008-11-07T13:57:30Z 2008-11-07T13:57:30Z <p>I never saw the point of using XML, until I had to work with some code doing XPath queries on XML documents. </p> <p>Using XML is mostly useful when you need to get information from systems you do not have control over. For your own data, you're probably querying SQL databases. For data in other systems, you probably can export it as XML in some way, or run queries against some webservice or other API to give you data in XML. Now that you have that data, it will never be in the format you need it, with XPath you can basically query that data in a similar way to querying your database with SQL, to get the bits of data you need and ignore everything else.</p> <p>If your output also needs to be XML, then you use an XSL stylesheet to transform the input into output. But XPath queries are useful even outside a stylesheet.</p> <p>To get started, I would recommend opening an XML document in Firefox, and use the <a href="https://addons.mozilla.org/en-US/firefox/addon/1095" rel="nofollow">XPath Checker add on</a> to try and get some data out of that document.</p> http://stackoverflow.com/questions/150043/python-v-perl/169557#169557 0 Answer by warpr for Python v. Perl warpr 2008-10-04T02:02:45Z 2008-10-04T02:02:45Z <p>Perl is fine if you use it regularly (e.g. at work). If you don't, it's just too hard to remember the syntax, there's a fair amount of magic characters in it to make the code unreadable if you don't use the language often enough.</p> <p>If you do use the language regularly, it is a good choice. It allows you to write very dense/concise code, and perl gives you the freedom to do things the way you want to do them.</p> http://stackoverflow.com/questions/169272/what-coding-projects-are-used-to-create-art-and-beauty/169525#169525 2 Answer by warpr for What coding projects are used to create art and beauty? warpr 2008-10-04T01:46:43Z 2008-10-04T01:46:43Z <p>Any place where you will find contemporary art, so museums and art festivals. Interactive installations often use a dataflow programming language such as max/msp or puredata to process input and do something interesting with it. </p> <p>There are also festivals which focus more on how code can be used to create art. An example is <a href="http://piksel.no" rel="nofollow">http://piksel.no</a> in Bergen, Norway. Piksel.no has seminars and workshops, live events, etc.. There are similar festivals in other countries.</p> <p>And you could stretch the definition of art a bit and include the demoscene. I do consider some demoscene productions to be art, but they are rare gems among the drudge. Still, have a look at <a href="http://scene.org/awards.php" rel="nofollow">http://scene.org/awards.php</a> to get some idea of what kind of stuff that community comes up with.</p> http://stackoverflow.com/questions/153527/setting-the-character-encoding-in-form-submit-for-internet-explorer/155133#155133 0 Answer by warpr for Setting the character encoding in form submit for Internet Explorer warpr 2008-09-30T21:16:56Z 2008-09-30T21:16:56Z <p>I seem to remember that Internet Explorer gets confused if the accept-charset encoding doesn't match the encoding specified in the content-type header. In your example, you claim the document is sent as UTF-8, but want form submits in ISO-8859-1. Try matching those and see if that solves your problem.</p> http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all/88378#88378 1 Answer by warpr for Which is better: shipping a buggy feature or not shipping the feature at all? warpr 2008-09-17T22:33:36Z 2008-09-17T22:33:36Z <p>Label what you have now as a 'beta version' and send it out to those people who have asked for it. Get their feedback on how well it works, fix whatever they complain about, and you should then be ready to roll it out to larger groups of users.</p> http://stackoverflow.com/questions/88010/what-is-the-best-way-to-learn-dvorak/88207#88207 10 Answer by warpr for What is the best way to learn Dvorak? warpr 2008-09-17T22:08:15Z 2008-09-17T22:08:15Z <p>I've been using dvorak for about 10 years now. I failed twice before I succeeded in switching, here are some hints based on my experience:</p> <ol> <li><p>You have to switch fully to dvorak from one day to the next, otherwise you risk just grabbing qwerty whenever you're in a hurry. So, make sure you're not in a hurry. I learned dvorak during a summer break from school. I wouldn't recommend switching when you have to be productive at school or work.</p></li> <li><p>Do NOT re-arrange the keys on your keyboard. The whole point of learning to touch-type is that you don't look at the keys. Just tape a small picture of the dvorak layout on your desk or monitor. Learn what the resting position of your hands should be and learn to find that without looking at your keyboard (remember, the F and J keys have ridges just for that purpose).</p></li> <li><p>Practice using some typing tool, look for 'dvorak7min' if you're on linux. You can also practice on a site such as www.typeracer.com.</p></li> <li><p>Though you cannot avoid it entirely, try not to use qwerty at all when you're learning dvorak. Once you're comfortable with dvorak you can start using qwerty again in those situations where switching to dvorak is too much hassle (visiting family, etc...). It will take years before you lose that qwerty proficiency.</p></li> </ol> <p>Finally, doing this is not easy, the only way to do this is to spend the time doing it. It takes about one or two weeks to get up to a decent speed for most people, after three or four weeks you should be near your old qwerty speed I think. These are very rough estimates, it will differ for everyone.</p> http://stackoverflow.com/questions/87889/game-engine-scripting-languages/87977#87977 -1 Answer by warpr for Game Engine Scripting Languages warpr 2008-09-17T21:42:11Z 2008-09-17T21:42:11Z <p>I wouldn't recommend LUA, it has a peculiar syntax so takes some time to get used to. Depending on who will be doing the scripting, this may not be a problem, but I would try to use something fairly accessible.</p> <p>I would probably choose python. It normally compiles to bytecode, so you would need to embed the interpreter. However, if you must you can use PyPy to for example translate the code to C, and then compile it.</p> http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/87858#87858 4 Answer by warpr for What is the easiest or fastest way to make CSS render the same in all browsers warpr 2008-09-17T21:29:21Z 2008-09-17T21:29:21Z <p>Make sure to include the proper DOCTYPE.</p> <p>I still see people regularly coping with box model issues because they forgot to include a doctype. Without the proper doctype Internet Explorer renders in "quirks mode", and so do other browsers to a lesser extent. If you include the proper doctype, browsers switch to "standard mode" and behave very similar to eachother. </p> <p>Other then that, if you do this for a living you will rapidly pick up and remember those subtle corner cases where IE interprets things slightly different from Firefox, etc. With some experience it is entirely possible to design the entire page in your favourite browser and only make very tiny tweaks to the CSS to make it render almost pixel perfect in other browsers.</p> http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/77497#77497 2 Answer by warpr for How do I programmatically create a PDF in my .NET application? warpr 2008-09-16T21:46:01Z 2008-09-16T21:46:01Z <p>I have had good experiences with PrinceXML. It generates a .PDF from a .HTML file, which sounds like a hack at first, but their rendering engine is very good. Passes acid2 and has good .svg support so you can include vector images instead of bitmaps to keep the .PDF relatively small (which is important when generating reports which need to be sent as an attachment).</p> <p>Especially if you have in-house designers who speak html/css they will have no trouble at all creating a good looking .pdf, so IMO it's a perfect match if you're doing web applications.</p> http://stackoverflow.com/questions/65976/report-generation-on-php/77406#77406 1 Answer by warpr for report generation on php? warpr 2008-09-16T21:38:06Z 2008-09-16T21:38:06Z <p>The problem you're facing is solved by so-called Business Intelligence software. This software tends to be bloated and expensive, but if you know your way around them you will be able to crank out such reports in no time at all. </p> <p>I'm only familiar with one particular proprietary solution, which isn't too great either. But a quick search turns up the following page, which lists a number of free/open source alternatives: </p> <p><a href="http://en.wikipedia.org/wiki/Business_intelligence_tools" rel="nofollow">http://en.wikipedia.org/wiki/Business_intelligence_tools</a></p> http://stackoverflow.com/questions/6080/what-to-use-for-login-id/63276#63276 -3 Answer by warpr for What to use for login ID? warpr 2008-09-15T14:15:41Z 2008-09-15T14:15:41Z <p>Using OpenID seems like a particularly bad idea, it has serious security problems, and a fair amount of other issues too.</p> <p>See: <a href="http://idcorner.org/2007/08/22/the-problems-with-openid/" rel="nofollow">http://idcorner.org/2007/08/22/the-problems-with-openid/</a></p> http://stackoverflow.com/questions/502644/how-can-i-do-unit-testing-in-perl/502945#502945 Comment by warpr on How can I do unit testing in Perl? warpr 2009-11-09T18:58:21Z 2009-11-09T18:58:21Z Great introduction, thanks! I'm used to doing unit tests for python and php, but will be involved in a perl project soon, your post definitely helps me get started :) http://stackoverflow.com/questions/1095601/find-module-name-of-the-originating-exception-in-python/1095656#1095656 Comment by warpr on Find module name of the originating exception in Python warpr 2009-08-30T18:32:08Z 2009-08-30T18:32:08Z filename + linenumber is more useful to me, so I appreciate this answer to the question :) http://stackoverflow.com/questions/898/internationalization-in-your-projects/1462#1462 Comment by warpr on Internationalization in your projects warpr 2009-06-29T08:11:56Z 2009-06-29T08:11:56Z &quot;replace strings with a pseudo-translated version that doubles the length and inserts funky characters.&quot; Awesome, that's a great tip, thanks! http://stackoverflow.com/questions/875183/how-to-measure-characters-in-javascript-and-or-with-jquery/875200#875200 Comment by warpr on How to measure characters in javascript and/or with jquery warpr 2009-05-17T19:03:03Z 2009-05-17T19:03:03Z Thanks, some good suggestions here which I didn't think about :) http://stackoverflow.com/questions/281576/web-page-runtime-errors/281693#281693 Comment by warpr on Web page runtime errors warpr 2008-11-11T20:43:04Z 2008-11-11T20:43:04Z For javascript, EcmaUnit exists and has existed for some time it seems (<a href="http://debris.demon.nl/" rel="nofollow">debris.demon.nl</a>). (disclaimer: I don't have any experience with it :) http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/10104#10104 Comment by warpr on Practical non-image based CAPTCHA approaches? warpr 2008-10-25T08:36:30Z 2008-10-25T08:36:30Z That will work for NOW, but as soon as enough sites use an approach like that, spammers will render the html to an image and OCR the result. http://stackoverflow.com/questions/169272/what-coding-projects-are-used-to-create-art-and-beauty/169525#169525 Comment by warpr on What coding projects are used to create art and beauty? warpr 2008-10-04T02:18:04Z 2008-10-04T02:18:04Z Maybe I've just seen Rob is Jarig a few times too many :) http://stackoverflow.com/questions/150043/python-v-perl/150080#150080 Comment by warpr on Python v. Perl warpr 2008-10-04T02:09:30Z 2008-10-04T02:09:30Z No, regular expressions in python are a lot more hassle. A substitute regex such as 's,foo,bar,gi' is split up in python, you have to enter the search string, the replacement string and any flags seperately. re.sub() doesn't even accept flags, so you are forced to compile the regex first. http://stackoverflow.com/questions/88010/what-is-the-best-way-to-learn-dvorak/88567#88567 Comment by warpr on What is the best way to learn Dvorak? warpr 2008-09-18T09:00:40Z 2008-09-18T09:00:40Z Switching to dvorak is not about speed. I don't type faster than I did with qwerty. I do make less typos and typing in general is more comfortable.