User bart - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:02:28Z http://stackoverflow.com/feeds/user/19966 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1703379/employer-wants-any-non-technical-staff-to-be-able-to-modify-content-easy-soluti/1703893#1703893 0 Answer by bart for Employer wants any non-technical staff to be able to modify content - easy solution? bart 2009-11-09T21:19:19Z 2009-11-09T21:19:19Z <p>I used to think that for user friendly editing, you need a WYSIWYG editor, such as the TinyMCE that has already mentioned. Not any more. </p> <p>Editing content in such a rich text editor is <em>not</em> very handy. Very often you end up messing up the content, and either does a technically savvy person have to come to help, or you have to switch to CODE view (= HTML) to clean up the mess.</p> <p>Now I'd be far more inclined to use something Markdown, like this site (and Reddit) uses. For most purposes, you <em>don't</em> need rich text, and it is just as handy a WYSIWYG tool. If you need a few rich text touches, like making some text bold or italic, this works quite easily too. Lists, either numbered or bulletted, are a snap. And making links... Those WYSIWYG tools always seem to be able to mess it up in ways you can't even imagine.</p> <p>Plus, this way, the resulting HTML is <em>always</em> clean and minimal, and it's extremely hard for the user to mess up.</p> http://stackoverflow.com/questions/1318052/how-can-i-remove-a-file-based-on-its-creation-date-time-in-perl/1318152#1318152 4 Answer by bart for How can I remove a file based on its creation date time in Perl? bart 2009-08-23T09:31:47Z 2009-08-23T09:31:47Z <p>On Unix you can't, because <em>the file's creation date is not stored in the filesystem</em>.</p> <p>You may want to check out <a href="http://perldoc.perl.org/functions/stat.html" rel="nofollow">stat</a>, and <a href="http://perldoc.perl.org/functions/-X.html" rel="nofollow">-M</a> (modification time)/<a href="http://perldoc.perl.org/functions/-X.html" rel="nofollow">-C</a> (<em>inode change time</em>)/<a href="http://perldoc.perl.org/functions/-X.html" rel="nofollow">-A</a> (access time) if you want a simple expression with relative timestamps (how long ago).</p> http://stackoverflow.com/questions/1243952/how-can-i-speed-up-a-mysql-query-with-a-large-offset-in-the-limit-clause/1244053#1244053 1 Answer by bart for How can I speed up a MySQL query with a large offset in the LIMIT clause? bart 2009-08-07T10:35:16Z 2009-08-07T10:40:19Z <p>There's a blog post somewhere on the internet on how you should best make the <em>selection of the rows</em> to show should be as compact as possible, thus: just the ids; and producing the complete results should in turn fetch all the data you want <em>for only the rows you selected</em>.</p> <p>Thus, the SQL might be something like (untested, I'm not sure it actually will do any good):</p> <pre><code>select A.* from table A inner join (select id from table order by whatever limit m, n) B on A.id = B.id order by A.whatever </code></pre> <p>If your SQL engine is too primitive to allow this kind of SQL statements, or it doesn't improve anything, against hope, it might be worthwhile to break this single statement into multiple statements and capture the ids into a data structure.</p> <p><strong>Update</strong>: I found the blog post I was talking about: it was Jeff Atwood's <a href="http://www.codinghorror.com/blog/archives/001281.html" rel="nofollow">"All Abstractions Are Failed Abstractions"</a> on Coding Horror.</p> http://stackoverflow.com/questions/1233129/is-there-a-perl-module-that-works-similarly-to-the-unix-which-command/1233172#1233172 1 Answer by bart for Is there a Perl module that works similarly to the Unix "which" command? bart 2009-08-05T13:12:35Z 2009-08-05T13:12:35Z <p>Have you seen this Snippet?</p> <p><a href="http://www.perlmonks.org/?node%5Fid=545096" rel="nofollow"><code>which</code> (for Windows) in pure perl</a></p> <p>The follow-up points to the module <a href="http://search.cpan.org/perldoc?File::Which" rel="nofollow">File::Which</a> on CPAN.</p> http://stackoverflow.com/questions/1160888/how-do-i-merge-join-mp3-files-with-c/1161062#1161062 1 Answer by bart for How do I merge/join mp3 files with c# bart 2009-07-21T18:57:12Z 2009-07-21T18:57:12Z <p>MP3 files consist out of "frames", that each represent a short snippet (I think around 25ms) of audio. </p> <p>So yes, you <em>can</em> just concatenate them without problem.</p> http://stackoverflow.com/questions/993841/is-there-a-php-function-to-call-all-variables-from-a-form/993911#993911 1 Answer by bart for Is there a PHP function to call all variables from a form? bart 2009-06-14T22:19:53Z 2009-06-14T22:19:53Z <p>I think you should start out with a list of all variables that you expect, and loop only over those. If you don't, hackers can inject <em>any</em> variable name... In fact, you're reemplementing the old, terribly bad idea of <a href="http://en.wikibooks.org/wiki/PHP%5FProgramming/Register%5FGlobals" rel="nofollow">Register Globals</a>. So, don't do that...</p> <p>In fact, why not keep the input in an associative array, just like $_POST? You might still want to remove those values that you didn't expect.</p> http://stackoverflow.com/questions/856303/not-allow-zero-in-textbox/856530#856530 8 Answer by bart for Not allow zero in textbox. bart 2009-05-13T07:20:14Z 2009-05-13T07:20:14Z <p>The way you plan to do this, is very annoying for a user. You're guessing what a user wants to enter, and act upon your guess, but you can be so wrong.</p> <p>It also has holes, for example, a user can enter "10" and then delete the "1". Or he could paste in a "0" -- you do allow paste, don't you?</p> <p>So my solution would be: let him enter any digit he likes, any way he likes, and validate the input only <em>after</em> he finished, for example, when the input loses focus.</p> http://stackoverflow.com/questions/834751/isnt-ajax-on-pageload-a-bad-thing/835866#835866 0 Answer by bart for Isn't AJAX on pageload a bad thing? bart 2009-05-07T16:58:22Z 2009-05-07T16:58:22Z <p>The best reason to do this is to have a <strong>single source</strong> for the content: instead of getting the first instance embedded in the page, and updated instances coming from Ajax, now every instance comes from Ajax. </p> <p>In other words: doing it your way is double work, with a chance (due to bugs) that the two versions behave differently.</p> http://stackoverflow.com/questions/803055/how-do-i-do-convolution-in-f/803374#803374 1 Answer by bart for How do I do convolution in F#? bart 2009-04-29T17:16:29Z 2009-04-29T17:16:29Z <p>In principle, it should be possible to use the (Fast) Fourier Transform, or the related (Discrete) Cosine Transform, to calculate the convolution of two functions reasonably efficiently. You calculate the FFT for both functions, multiply them, and apply the inverse FFT on the result. </p> <p><a href="http://www.cs.cf.ac.uk/Dave/Vision%5Flecture/node19.html" rel="nofollow">mathematical background</a></p> <p>That's the theory. In practice you'd probably best find a math library that implements it for you.</p> http://stackoverflow.com/questions/782375/which-is-more-popular-currently-by-recent-install-base-svn-or-cvs/782663#782663 1 Answer by bart for Which is more popular (currently, by recent install base) SVN or CVS? bart 2009-04-23T17:04:20Z 2009-04-23T17:04:20Z <p>I don't know about "installed base", but from the (large) number of developers I know from the internet, SVN is quite popular, unlike CVS; but Git is quickly coming up as a possible new favorite.</p> http://stackoverflow.com/questions/713043/your-favorite-programming-book-available-for-free-download/713216#713216 3 Answer by bart for Your Favorite Programming Book available for FREE download bart 2009-04-03T09:31:02Z 2009-04-03T09:31:02Z <p><a href="http://thinking-forth.sourceforge.net/" rel="nofollow">Thinking FORTH</a>, Leo Brodie. One of the first texts about refactoring and similar techniques.</p> <p><a href="http://hop.perl.plover.com/" rel="nofollow">Higher Order Perl</a>, Mark-Jason Dominus</p> http://stackoverflow.com/questions/626498/what-regex-will-capitalize-any-letters-following-whitespace/626874#626874 0 Answer by bart for What regex will capitalize any letters following whitespace? bart 2009-03-09T16:03:14Z 2009-03-09T16:21:14Z <p>You want to match letters behind whitespace, or at the start of a string.</p> <p>Perl can't do variable length lookbehind. If it did, you could have used this:</p> <pre><code>s/(?&lt;=\s|^)(\w)/\u$1/g; # this does not work! </code></pre> <p>Perl complains:</p> <pre><code>Variable length lookbehind not implemented in regex; </code></pre> <p>You can use double negative lookbehind to get around that: the thing on the left of it must not be anything that is not whitespace. That means it'll match at the start of the string, but <em>if</em> there is anything in front of it, it must be whitespace.</p> <pre><code>s/(?&lt;!\S)(\w)/\u$1/g; </code></pre> <p>The simpler approach in this exact case will probably be to just match the whitespace; the variable length restriction falls away, then, and include that in the replacement.</p> <pre><code>s/(\s|^)(\w)/$1\u$2/g; </code></pre> <p>Occasionally you can't use this approach in repeated substitutions because that what precedes the actual match has already been eaten by the regex, and it's good to have a way around that.</p> http://stackoverflow.com/questions/625656/favourite-command-line-trick/626109#626109 2 Answer by bart for Favourite command line trick bart 2009-03-09T12:57:03Z 2009-03-09T12:57:03Z <p>Here's a way to show any file in Windows Explorer (open window and highlight file; at least, if the file's directory window is not already open):</p> <pre><code>explorer /select,"c:\windows\notepad.exe" </code></pre> <p>Or, if you like "explore" (show file tree) better:</p> <pre><code>explorer /E,/select,"c:\windows\notepad.exe" </code></pre> <p>(I'm just taking notepad as an example, as that path probably exists on your PC.)</p> <p>Note that Explorer will crash if the path does not exist.</p> http://stackoverflow.com/questions/528864/a-regex-problem-i-cant-figure-out-negative-lookbehind/528892#528892 7 Answer by bart for A regex problem I can't figure out (negative lookbehind) bart 2009-02-09T16:36:37Z 2009-02-09T16:36:37Z <p>Assuming your regex engine supports (negative) lookbehind:</p> <pre><code>/(?&lt;!-)-myString/ </code></pre> <p>Perl does, Javascript doesn't, for example.</p> http://stackoverflow.com/questions/503052/javascript-is-ip-in-one-of-these-subnets/503238#503238 3 Answer by bart for JavaScript: Is IP In One Of These Subnets? bart 2009-02-02T13:37:35Z 2009-02-02T13:42:38Z <p>The best approach is IMO making use of bitwise operators. For example, <code>123.123.48.0/22</code> represents <code>(123&lt;&lt;24)+(123&lt;&lt;16)+(48&lt;&lt;8)+0</code> (=2071670784; this might be a negative number) as a 32 bit numeric IP address, and <code>-1&lt;&lt;(32-22)</code> = -1024 as a mask. With this, and likewise, your test IP address converted to a number, you can do:</p> <pre><code>(inputIP &amp; testMask) == testIP </code></pre> <p>For example, 123.123.49.123 is in that range, as <code>2071671163 &amp; -1024</code> is 2071670784</p> <p>So, here are some tool functions:</p> <pre><code>function IPnumber(IPaddress) { var ip = IPaddress.match(/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/); if(ip) { return (+ip[1]&lt;&lt;24) + (+ip[2]&lt;&lt;16) + (+ip[3]&lt;&lt;8) + (+ip[4]); } // else ... ? return null; } function IPmask(maskSize) { return -1&lt;&lt;(32-maskSize) } </code></pre> <p>test:</p> <pre><code>(IPnumber('123.123.49.123') &amp; IPmask('22')) == IPnumber('123.123.48.0') </code></pre> <p>yields <code>true</code>.</p> <p>In case your mask is in the format '255.255.252.0', then you can use the IPnumber function for the mask, too.</p> http://stackoverflow.com/questions/490508/left-function-in-javascript-or-jquery/491636#491636 1 Answer by bart for Left() function in Javascript or jQuery bart 2009-01-29T13:44:24Z 2009-01-29T13:44:24Z <p>Left() is of almost no use here, as you'd first have to calculate the offset. You could, however, use a regular expression, to either pull out the number, or delete illegal characters:</p> <pre><code>var value = "1080px"; var num = value.replace(/[^\d]+/g, ''); // or var num = value.replace(/\D+/g, ''); // or var num = value.match(/\d+/)[0]; </code></pre> <p>That is, in case parseInt() isn't enough for you... :)</p> http://stackoverflow.com/questions/429005/how-dangerous-is-it-send-html-in-ajax-as-opposed-to-sending-json-and-building-the/430021#430021 0 Answer by bart for How dangerous is it send HTML in AJAX as opposed to sending JSON and building the HTML? bart 2009-01-09T22:40:31Z 2009-01-09T22:40:31Z <blockquote> <p>The only reason I'm interested in doing this is because of the huge pain it is for front-end developers every time there's a DOM structure/CSS change so you now have to go figure out where in the Javascript HTML building process you may have to update.</p> </blockquote> <p>You must be doing it wrong.</p> <p>The data coming back from AJAX should only be <em>semantic data</em>, i.e. stuff that doesn't change if only the layout changes. Converting the data to DOM manipulation is best left to a Javascript function defined in the master page itself.</p> http://stackoverflow.com/questions/389738/is-it-possible-to-detect-if-microsoft-excel-is-installed-from-a-web-application/389798#389798 1 Answer by bart for Is it possible to detect if Microsoft Excel is installed from a Web Application bart 2008-12-23T19:14:34Z 2008-12-23T19:14:34Z <p>Why Excel? What if I have OpenOffice.org instead?</p> <p>Just warn the user what you're going to send them, mark the link with "Excel file", and let him decide.</p> http://stackoverflow.com/questions/380171/regular-expression-for-finding-parts-of-a-string-within-another/382458#382458 0 Answer by bart for regular expression for finding parts of a string within another bart 2008-12-19T22:44:53Z 2008-12-19T22:44:53Z <p>The best way to do it with regular expressions is, IMO:</p> <p>A. Sort the characters in the large string (search space) Thus: turn "catdog" into "acdgot"</p> <p>B. </p> <ol> <li><p>Do the same with the string of which you search the characters of: "gott" becomes, eh, "gott"... </p></li> <li><p>Insert "<code>.*</code>" between each of these characters</p></li> <li><p>Use the latter as the regular expression to search in the former.</p></li> </ol> <p>For example, some Perl code (if you don't mind):</p> <pre><code>$main = "catdog"; $search = "gott"; # break into individual characters, sort, and reconcatenate $main = join '', sort split //, $main; $regexp = join ".*", sort split //, $search; print "Debug info: search in '$main' for /$regexp/ \n"; if($main =~ /$regexp/) { print "Found a match!\n"; } else { print "Sorry, no match...\n"; } </code></pre> <p>This prints:</p> <pre><code>Debug info: search in 'acdgot' for /g.*o.*t.*t/ Sorry, no match... </code></pre> <p>Drop one "t" and you get a match.</p> http://stackoverflow.com/questions/361041/flash-video-stopping-or-sticking-after-2-or-3-seconds/380373#380373 0 Answer by bart for Flash Video stopping or sticking after 2 or 3 seconds bart 2008-12-19T08:35:44Z 2008-12-19T08:35:44Z <p>I think it's likely just a shortage of free RAM. I don't just see it with Flash, but with Quicktime too.</p> http://stackoverflow.com/questions/344460/why-is-1-empty-in-my-substitution/344577#344577 11 Answer by bart for Why is $1 empty in my substitution? bart 2008-12-05T17:19:31Z 2008-12-05T17:19:31Z <p>There's an error in your regex so that phrase will never match anything:</p> <pre><code>inline99_*?\.jpg ^^^ </code></pre> <p>I think you forgot <code>\d</code> in front of the star, judging by the example data you are trying to match.</p> <p>You're not even asking that it'll match, as you put a <code>*?</code> after the captured group. So, it just doesn't match anything. So that's what you get: nothing.</p> <p>Besides:</p> <pre><code>($PATTERN)*? </code></pre> <p>will only capture the last thing it matched. That probably isn't what you want, either. For example:</p> <pre><code>$_ = 'one two three'; s/(\w+\s*)*/$1/; print; </code></pre> <p>prints "three".</p> http://stackoverflow.com/questions/344158/xml-to-doc-to-pdf/344300#344300 0 Answer by bart for XML to DOC to PDF bart 2008-12-05T15:58:58Z 2008-12-05T15:58:58Z <p>The <a href="http://oreilly.com/catalog/9780596007119/index.html" rel="nofollow">XML Hacks book</a> offers 2 solutions:</p> <ol> <li><p>hack # 47: a commercial tool to create PDF files from XML + CSS: Prince; see <a href="http://yeslogic.com" rel="nofollow">YesLogic</a> and <a href="http://www.princexml.com/" rel="nofollow">Prince XML</a>. There's a "personal" version available for non-commercial use, which puts a logo on page one, but which is good enough to try out if it's something for you.</p></li> <li><p>hack # 48: XSL-FO, using Apache FOP. You can imagine XSL-FO as a page layout file format, in an XML file.</p></li> </ol> <p>To me it looks like the first solution is the one that will give the quickest satisfactory results.</p> http://stackoverflow.com/questions/328281/why-content-length-0-in-post-requests/328628#328628 0 Answer by bart for Why "Content-Length: 0" in POST requests? bart 2008-11-30T08:21:00Z 2008-11-30T08:21:00Z <p>I suspect the proxy. My guess is that the browser actually doesn't send a Content-Length header, and that the proxy fills it in with the value it "sees": no value == 0.</p> http://stackoverflow.com/questions/325323/is-there-anyway-to-avoid-this-security-issue-in-lua/325361#325361 1 Answer by bart for Is there anyway to avoid this security issue in Lua? bart 2008-11-28T09:33:31Z 2008-11-28T09:38:33Z <p>I have no solution (I don't use Lua, I'm just interested in it from afar), but what you're after is called a "sandbox". Google for <a href="http://www.google.com/search?q=Lua+sandbox" rel="nofollow">Lua sandbox</a>, I found a few seemingly interesting pages that way. For example: <a href="http://lua-users.org/wiki/SandBoxes" rel="nofollow">http://lua-users.org/wiki/SandBoxes</a>.</p> http://stackoverflow.com/questions/323065/how-to-version-control-a-record-in-a-database/323192#323192 1 Answer by bart for How to version control a record in a database bart 2008-11-27T08:10:42Z 2008-11-27T08:10:42Z <p>You don't say what database, and I don't see it in the post tags. If it's for Oracle, I can recommend the approach that is built in in Designer: use <a href="http://www.google.com/search?hl=en&amp;q=journal+tables+Oracle" rel="nofollow">journal tables</a>. If it's for any other database, well, I basically recommend the same way, too...</p> <p>The way it works, in case you want to replicate it in another DB, or maybe if you just want to understand it, is that for a table there is a shadow table created too, just a normal database table, with the same field specs, plus some extra fields: like what action was last taken (string, typical values "INS" for insert, "UPD" for update and "DEL" for delete), datetime for when the action took place, and user id for who did it.</p> <p>Through triggers, <em>every</em> action to any row in the table inserts a new row in the journal table with the new values, what action was taken, when, and by what user. You don't ever delete any rows (at least not for the last few months). Yes it'll grow big, easily millions of rows, but you can easily track the value for <em>any</em> record at <em>any point in time</em> since the journaling started or the old journal rows got last purged, and who made the last change.</p> <p>In Oracle everything you need is generated automatically as SQL code, all you have to do is to compile/run it; and it comes with a basic CRUD application (actually only "R") to inspect it.</p> http://stackoverflow.com/questions/302993/why-doesnt-seem-to-work-as-a-coalesce-default-operator-in-javascript/303154#303154 0 Answer by bart for Why doesn't || seem to work as a coalesce/default operator in JavaScript? bart 2008-11-19T19:56:57Z 2008-11-19T19:56:57Z <blockquote> <p>But if I type that into Firebug or use it in code, it complains that b is not defined, at list on FF3/win</p> </blockquote> <p>What do you mean, "is not defined"? You mean Javascript doesn't know the variable? Then you may use <code>window.b</code> as "window" is the top level object, or first declare b with <code>var b;</code>; but only if it <em>is</em> a variable.</p> <p>If it is a DOM element, you may have to try to hunt it down first, for example with <code>document.getElementById</code>:</p> <pre><code>a = document.getElementById('b') || 'blah' </code></pre> <p>works for me.</p> http://stackoverflow.com/questions/49547/making-sure-a-web-page-is-not-cached-across-all-browsers/301355#301355 -3 Answer by bart for Making sure a web page is not cached, across all browsers. bart 2008-11-19T09:12:22Z 2008-11-19T09:12:22Z <p>Use POST instead of GET. That should fix most issues.</p> <p>And yes, that implies using forms instead of plain links.</p> http://stackoverflow.com/questions/294741/oracle-using-package/297681#297681 1 Answer by bart for Oracle - Using Package bart 2008-11-18T02:26:02Z 2008-11-18T02:26:02Z <p>You put code for the procedures, functions etc in the package body, together with declarations for private variables. You put the declarations of those procedures and functions, as well as public variables, in the package. Only the latter are accessible from outside the package, and for that you need to prefix their names with the package name and a dot.</p> <p>You can define data stucture types for this package too: if public procedures use them as input or output, then they must be made public; if not, then you're free to choose.</p> <p>Example code, from memory and not tested, so there could be bugs in it:</p> <pre><code>create or replace package foo as a number; function test1(s1 in varchar2) return varchar2; procedure test2(i1 in integer); end; / create or replace package body foo as b number; -- internal only function internalfunc(s in varchar2) return varchar2; function test1(s1 in varchar2) return varchar2 is s varchar2(32000); -- variables ... begin -- code ... return internalfunc(s); end; procedure test2(i1 in integer) is -- variables ... begin -- code ... end; function internalfunc(s in varchar2) return varchar2 is begin return INITCAP(LOWER(s)); end; end; / </code></pre> <p>Use <code>foo.a</code>, <code>foo.test1</code> etc to use these functions and variables. You can not access internal functions from outside the package. They only need to be declared early in the package body if they're being called higher up than their implementation.</p> <p>Packages have an extra advantage over plain functions and procedures: you can overload their names, have several different procedures with the same name but with different parameter types in the same package, and the proper function will be called depending on what parameter types you use. By contrast, the name for a standalone function or procedure must be unique. </p> <p>HTH.</p> http://stackoverflow.com/questions/293946/how-do-i-get-an-original-row-in-a-sql-join-from-disappearing/293993#293993 0 Answer by bart for How do I get an original row in a SQL join from disappearing? bart 2008-11-16T15:31:06Z 2008-11-16T15:41:24Z <p>You should be counting the number of users for whom User.CanAccessSystem is true. Think of something like</p> <pre><code> count(case when User.CanAccessSystem then true end) </code></pre> <p>The case expression will return NULL in case User.CanAccessSystem is false (default), and <code>count(expr)</code> counts the number of items for which the expression is not null.</p> <p>So... This?</p> <pre><code>SELECT COUNT(case when User.CanAccessSystem then true end) AS UserCount, Company.* FROM Company LEFT JOIN User ON Company.id = user.companyId -- I had to guess, this seems to be missing in your query WHERE Company.CanAccessSystem= true GROUP BY Company.Id </code></pre> <p>p.s. I used LEFT JOIN instead of INNER JOIN in order not to exclude companies without users.</p> http://stackoverflow.com/questions/292965/what-is-a-uuid/293024#293024 3 Answer by bart for What is a UUID? bart 2008-11-15T20:37:44Z 2008-11-15T20:37:44Z <p>It's a very long string of bits that is supposed to be unique now and forever, i.e. no possible clash with any other UUID produced by you or anybody else in the world .</p> <p>The way it works is simply that the current timestamp, and an internet related unique property of the computer that generated it (like the IP address, which ought to be unique at the moment you're connected to internet; or the MAC address, which is more low level, a hardwired id for your network card) is part of the bitstring.</p> <p>Originally every network card in the word had its own unique MAC address, but in later generations, you can change the MAC address by software, so that is not as reliable as a unique ID, any more.</p> http://stackoverflow.com/questions/1683843/is-sql-injection-a-risk-today/1683869#1683869 Comment by bart on Is SQL injection a risk today? bart 2009-11-05T22:25:31Z 2009-11-05T22:25:31Z magic quotes &quot;fix&quot; the input to be Mysql compatible. It doesn't work on other databases... and if you directly use input data instead of going through the database, you'll suddenly start seeing extra mysterious backslashes... http://stackoverflow.com/questions/1636221/why-doesnt-my-cgi-scripts-die-message-display-in-the-browser/1636266#1636266 Comment by bart on Why doesn't my CGI script's "die" message display in the browser? bart 2009-10-28T10:47:46Z 2009-10-28T10:47:46Z Try using <code>use CGI::Carp qw(fatalsToBrowser);</code> if only for testing purposes http://stackoverflow.com/questions/1516038/if-given-a-15-digit-number-whats-the-best-way-to-find-the-next-palindrome/1516059#1516059 Comment by bart on if given a 15 digit number whats the best way to find the next palindrome? bart 2009-10-04T10:30:53Z 2009-10-04T10:30:53Z Oh, I forgot: in the last case, flip the incremented first part and use that as the new last part. http://stackoverflow.com/questions/1516038/if-given-a-15-digit-number-whats-the-best-way-to-find-the-next-palindrome/1516059#1516059 Comment by bart on if given a 15 digit number whats the best way to find the next palindrome? bart 2009-10-04T10:25:57Z 2009-10-04T10:25:57Z There are so many bugs that I doubt your algorithm is even useful. 1. Flip the <i>first</i> part, and use as last part. If the result is larger than the original number, you're don. 2. If it's smaller, increment the <i>middle</i> part. 3. If the middle part was 9 (now 10), make it 0 and increment first part. http://stackoverflow.com/questions/1282015/the-fastest-way-to-compare-a-partial-string/1282151#1282151 Comment by bart on The fastest way to compare a partial string? bart 2009-08-15T16:31:26Z 2009-08-15T16:31:26Z spelling error in &quot;Length&quot; http://stackoverflow.com/questions/1242040/how-can-i-join-two-hashes-in-perl-without-using-a-loop/1242125#1242125 Comment by bart on How can I join two hashes in Perl without using a loop? bart 2009-08-10T20:04:28Z 2009-08-10T20:04:28Z I expect this to be more efficient than the other reply, because that one recreates the hash also for the already existing items, while this one just adds keys for the new items. If there were many items in %a, compared to %b, the difference can be respectable. http://stackoverflow.com/questions/1226406/is-markdown-with-striptags-sufficient-to-stop-xss-attacks/1226592#1226592 Comment by bart on Is Markdown (with strip_tags) sufficient to stop XSS attacks? bart 2009-08-04T09:52:43Z 2009-08-04T09:52:43Z &quot;More safety&quot;? Duh?? http://stackoverflow.com/questions/1181618/would-you-program-better-if-programming-languages-were-in-your-native-language/1181717#1181717 Comment by bart on Would you program better if programming languages were in your native language? bart 2009-07-25T10:42:22Z 2009-07-25T10:42:22Z Why is this downvoted? It's an excellent example of why mixing up programming with natural language is a bad idea. The fact that you can do it simpler even in COBOL doesn't change that. A programming language should be very simple at the core, and not verbose, like this. http://stackoverflow.com/questions/1181618/would-you-program-better-if-programming-languages-were-in-your-native-language/1181630#1181630 Comment by bart on Would you program better if programming languages were in your native language? bart 2009-07-25T10:37:44Z 2009-07-25T10:37:44Z Agreed with the OP, Dutch is far too complex to program in. English has the superficially simple syntax to make programming in it, work. http://stackoverflow.com/questions/1166488/is-ruby-here-to-stay/1166521#1166521 Comment by bart on is Ruby here to stay? bart 2009-07-22T17:11:05Z 2009-07-22T17:11:05Z As Ruby is already 13-14 years old, I don't think you need to worry about Ruby itself. http://stackoverflow.com/questions/1160888/how-do-i-merge-join-mp3-files-with-c/1161062#1161062 Comment by bart on How do I merge/join mp3 files with c# bart 2009-07-22T13:07:41Z 2009-07-22T13:07:41Z No problem if your audio player can handle VBR files, because that's exactly how VBR works. http://stackoverflow.com/questions/743319/why-isnt-the-d-language-picking-up/744095#744095 Comment by bart on Why isn't the 'D' language picking up? bart 2009-06-29T22:30:28Z 2009-06-29T22:30:28Z I'm reading it differently: if you find that D steps on any IP rights, please tell Digital Mars. Well, &quot;please&quot;... You <i>must</i> tell Digital Mars. http://stackoverflow.com/questions/743319/why-isnt-the-d-language-picking-up/744328#744328 Comment by bart on Why isn't the 'D' language picking up? bart 2009-06-29T22:26:37Z 2009-06-29T22:26:37Z The current controversy of C#/Mono on Linux is a clear indicator of why one would prefer D over C#, and that is not even considering language features. http://stackoverflow.com/questions/1036788/dll-as-src-of-script/1036852#1036852 Comment by bart on DLL as `src` of `<script>` bart 2009-06-24T07:42:07Z 2009-06-24T07:42:07Z I wonder if the Javascript code is static (I guess, as there are no parameters), and if so, why they bother to dynamically generate it; or, at least: appear to do so. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/245194#245194 Comment by bart on What is the worst interviewee answer? bart 2009-05-21T09:18:34Z 2009-05-21T09:18:34Z Soon, he'll try to patent it.