User Eli - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:08:34Z http://stackoverflow.com/feeds/user/5958 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1650946/mysql-create-table-if-not-exists-error-1050/1651007#1651007 0 Answer by Eli for MySQL "CREATE TABLE IF NOT EXISTS" -> Error 1050 Eli 2009-10-30T16:47:21Z 2009-10-30T16:47:21Z <p>Works fine for me in 5.0.27</p> <p>I just get a warning (not an error) that the table exists;</p> http://stackoverflow.com/questions/1649793/why-do-people-want-to-deliver-both-json-and-xml-as-output-to-their-rest-interface/1649821#1649821 0 Answer by Eli for Why do people want to deliver both Json and XML as output to their REST interfaces? Eli 2009-10-30T13:30:15Z 2009-10-30T13:30:15Z <p>I wouldn't read too much into it. I think some developers prefer one over the other and (especially depending on your framework) it's pretty easy to provide both.</p> <p>Most of the APIs I've seen that take this approach don't bother with XML namespaces</p> http://stackoverflow.com/questions/1646327/google-analytics-like-module-for-drupal-site-behind-firewall/1646443#1646443 1 Answer by Eli for Google Analytics-like module for Drupal site behind firewall? Eli 2009-10-29T20:45:46Z 2009-10-29T20:45:46Z <p><a href="http://www.webtrends.com/Products/Analytics/Software.aspx" rel="nofollow">WebTrends</a> can do that -- but it's <em>not</em> cheap.</p> http://stackoverflow.com/questions/1641141/is-there-any-foss-lib-for-reading-excel-files-using-c/1641337#1641337 0 Answer by Eli for Is there any FOSS lib for reading Excel files using C Eli 2009-10-29T02:43:10Z 2009-10-29T02:43:10Z <p>It's a pain. I'd use TSV unless you <em>really</em> need native Excel.</p> http://stackoverflow.com/questions/1641111/sqlite3-helper/1641329#1641329 0 Answer by Eli for SQLite3 helper? Eli 2009-10-29T02:39:57Z 2009-10-29T02:39:57Z <p><a href="http://sqlitebrowser.sourceforge.net/" rel="nofollow">SQLite Database Browser</a> runs on OS-X, though it's a bit flaky.</p> <p>Honestly the command line sqlite3 app is pretty solid for what it is (e.g. you can import/export to CSV). Type <code>.help</code> from the prompt for commands.</p> http://stackoverflow.com/questions/1626919/how-to-suppress-the-browsers-authentication-required-dialog-when-doing-an-ajax/1627036#1627036 0 Answer by Eli for How to suppress the browser's "authentication required" dialog when doing an ajax call that requires authentication? Eli 2009-10-26T20:06:16Z 2009-10-26T20:06:16Z <p><a href="http://dothow.blogspot.com/2009/05/http-basic-authentication-with-jquery.html" rel="nofollow">http://dothow.blogspot.com/2009/05/http-basic-authentication-with-jquery.html</a></p> http://stackoverflow.com/questions/1616197/find-new-rows-in-database/1616242#1616242 0 Answer by Eli for Find new rows in database Eli 2009-10-23T22:24:01Z 2009-10-23T22:24:01Z <p>Take a look at the <a href="http://dev.mysql.com/doc/refman/5.0/en/timestamp.html" rel="nofollow">Timestamp</a> column type -- it automatically updates whenever you create or alter a record.</p> <p>Time zone should not be an issue depending on how you query against it. It stores the value as UTC which has no daylight savings time.</p> http://stackoverflow.com/questions/1317843/do-people-actually-use-rss-or-feeds/1317865#1317865 2 Answer by Eli for Do People Actually use RSS or Feeds? Eli 2009-08-23T05:42:57Z 2009-08-23T05:42:57Z <p>Only a relatively small percentage of the total Internet audience knowingly uses RSS. But that includes a whole lot of early adopters and journalists -- usually two groups you want on a new site.</p> <p>Also, various bots and search engines read feeds and usually that's a good thing.</p> http://stackoverflow.com/questions/1307495/secure-a-thanks-page-against-non-logged-in-users/1307508#1307508 2 Answer by Eli for Secure a "thanks" page against non-logged in users Eli 2009-08-20T16:52:57Z 2009-08-20T16:52:57Z <p>Well, yes, when people log in, you should NOT be setting a cookie that says <code>loggedin=true</code> or some such.</p> <p>You should instead set <code>$_SESSION['loggedin'] = TRUE</code> PHP generally takes care of securing the cookies that manage that session automatically</p> http://stackoverflow.com/questions/1140307/what-are-the-valid-html-tags-in-rss-feeds/1140351#1140351 0 Answer by Eli for What are the valid HTML tags in RSS Feeds? Eli 2009-07-16T21:15:20Z 2009-07-16T21:15:20Z <p>I don't think there's any "official" answer. It might depend on what level of compatibility you're aiming for.</p> <p>I'd keep it to the basic text formatting tags (STRONG, EM, etc) and IMG and A and that's about it.</p> http://stackoverflow.com/questions/1129038/php-exec-fails/1129051#1129051 0 Answer by Eli for PHP exec() fails Eli 2009-07-15T02:08:54Z 2009-07-15T02:08:54Z <p>Perhaps you need to turn off safe_mode in php.ini (<code>safe_mode = Off</code>)</p> http://stackoverflow.com/questions/1112625/log-killed-queries-in-mysql/1112633#1112633 0 Answer by Eli for Log killed queries in MySQL Eli 2009-07-11T01:07:25Z 2009-07-11T01:07:25Z <p>You might be able to use the <a href="http://dev.mysql.com/doc/refman/5.1/en/slow-query-log.html" rel="nofollow">slow log</a>, but I'm not sure if the problem is that they never complete. Worth a shot.</p> <p>Also, you may be able to see what's going on by running <code>SHOW FULL PROCESSLIST</code> while you've got dead threads. It should show you what the problem is and what the query was.</p> <p>If you can simulate this in a development environment, you could also turn on general query logging (which records <em>every</em> statement) and then just tail the log after it crashes.</p> http://stackoverflow.com/questions/1098608/what-does-it-mean-to-double-license/1098727#1098727 0 Answer by Eli for What does it mean to double license? Eli 2009-07-08T15:14:04Z 2009-07-08T15:14:04Z <p><a href="http://en.wikipedia.org/wiki/Dual-licensing" rel="nofollow">http://en.wikipedia.org/wiki/Dual-licensing</a></p> http://stackoverflow.com/questions/1040491/source-of-data-for-official-country-region-list/1071326#1071326 1 Answer by Eli for Source of data for "official" country/region list Eli 2009-07-01T20:50:24Z 2009-07-01T20:50:24Z <p>Well, wait, do you just want an up-to-date list of countries? Or do you need to know that Country X has split into Country Y and Country Z? Because I'm not aware of any automated way to get the latter. Even updates to the ISO databases are distributed as PDFs (you're on your own for implementing the change)</p> http://stackoverflow.com/questions/1070614/syntax-highlight-with-word-2007/1070617#1070617 0 Answer by Eli for Syntax Highlight with Word 2007 Eli 2009-07-01T18:25:27Z 2009-07-01T18:25:27Z <p>Not easily. What are you trying to accomplish? There are several tools that will generate highlighted HTML or images of your code for use in presentations. (I hope you're not trying to use MS Word as an IDE!)</p> http://stackoverflow.com/questions/1066977/https-on-apache-will-it-slow-apache/1066988#1066988 2 Answer by Eli for HTTPS on Apache; Will it slow Apache? Eli 2009-07-01T02:08:33Z 2009-07-01T02:08:33Z <p>Yes, it will impact performance, but it's usually not too bad compared to the running all the DB queries that go into the typical dymanically generated page.</p> <p>Of course the real answer is: don't guess, benchmark it. Try it both ways and <em>see</em> the difference. You can use tools like <code>siege</code> and <code>ab</code> to simulate traffic.</p> <p>Also, I think you may have more luck with this question over at <a href="http://www.serverfault.com/" rel="nofollow">http://www.serverfault.com/</a></p> http://stackoverflow.com/questions/1066492/why-do-dev-tools-offer-quirks-mode/1066571#1066571 0 Answer by Eli for Why do dev tools offer Quirks mode? Eli 2009-06-30T23:17:29Z 2009-06-30T23:17:29Z <p>Sometimes you do intend for a site to display in quirks mode. It could involve some (Crappy) legacy HTML constructs that only work in quirks mode. Or it could be pulling dirty HTML from some other source (or even <em>shudder</em> from users)</p> <p>Also, it's pretty easy to end up in quirks mode by accident on a real complex site. Be nice to know that it doesn't totally explode</p> http://stackoverflow.com/questions/1065755/strange-behavior-hashs-keys-cancel-dynamic-method-definition/1065862#1065862 5 Answer by Eli for Strange behavior: Hash's keys cancel dynamic method definition Eli 2009-06-30T20:27:18Z 2009-06-30T20:27:18Z <p>Ruby's Hash has a special case for using strings as a hash key -- it makes an internal copy of the string. </p> <p>Basically it's to protect you from using a string (object) as a key and then altering that string object later in the code, which could lead to some confusing situations. Mutable keys get tricky.</p> <p>Rather than hack method onto string that returns an altered string class, I would just create a new subclass of string that overrides upcase and then just set its value.</p> http://stackoverflow.com/questions/1060178/how-do-you-send-raw-headers-in-ruby/1060656#1060656 0 Answer by Eli for How do you send raw headers in ruby Eli 2009-06-29T21:25:13Z 2009-06-29T21:25:13Z <p>I'm not sure how to answer this directly without learning more about how you're generating the page, but I might suggest you look into some of the lightweight non-Rails web frameworks for Ruby. There are many and they make things like this easy.</p> <p>For example, <a href="http://vision-media.ca/resources/ruby/ruby-rack-middleware-tutorial" rel="nofollow">Rack</a> has an easy-to-use hash for Headers to send to the browser. Likewise in <a href="http://camping.rubyforge.org/files/README.html" rel="nofollow">Camping</a> you can just do something like <code>@headers['Content-Type'] = 'text/css'</code></p> http://stackoverflow.com/questions/1059810/zend-framework-and-drupal-on-the-same-domain/1059866#1059866 0 Answer by Eli for Zend Framework and Drupal on the same domain Eli 2009-06-29T18:53:51Z 2009-06-29T18:53:51Z <p>Drupal will happily live inside a directory, it doesn't insist on being root. I don't know much about Zend at all.</p> <p>If you want to install both of them to the root of the webserver, I think you're going to have to do a bit of custom coding. I'd probably take a peek inside Drupal's index.php and add some code that sends 404's to Zend rather instead of letting Drupal handle them. In fact, there may be a way to do this with some sort of mod_rewrite or mod_proxy magic at the Apache level.</p> http://stackoverflow.com/questions/1059790/why-does-the-web-need-http/1059855#1059855 1 Answer by Eli for Why does the web need HTTP? Eli 2009-06-29T18:51:18Z 2009-06-29T18:51:18Z <p>By the time the Web was coming together, FTP was already becoming cumbersome even for the simple exchange of files (i.e. what is was designed to do). It's a quirky and sometimes ambiguous protocol that doesn't play well with firewalls. People were already coding workarounds into FTP clients to try to sniff out what server software the FTP site was using to workaround its bugs.</p> <p>In short, not the kind of thing you would base a new technology on.</p> http://stackoverflow.com/questions/1059153/do-i-need-a-lawyer-to-run-a-website/1059188#1059188 2 Answer by Eli for Do I need a lawyer to run a website? Eli 2009-06-29T16:18:49Z 2009-06-29T16:18:49Z <p>If you're worried, you should definitely pay a lawyer for a consult. The real answer is that it depends and really, you shouldn't trust anything resembling legal advice from a what people tell you on a website.</p> <p>Contrary to the impression you may get from reading online, most sites don't get any serious legal threats. Bogus legal threats do happen, but they're usually easy to identify and safe to ignore.</p> <p>Personally, I probably wouldn't worry unless I was doing something likely to get me sued.</p> http://stackoverflow.com/questions/1058497/how-to-display-messages-to-the-user-after-a-post-http-redirect/1058587#1058587 1 Answer by Eli for How to display messages to the user after a POST + HTTP redirect Eli 2009-06-29T14:20:20Z 2009-06-29T14:20:20Z <p>Pretty much every website that allows users to log in does so by relying on a cookie. It ain't a perfect solution, but it's the best we got.</p> <p>Also session handling is one of those things that a web development framework typically takes care of for you.</p> http://stackoverflow.com/questions/1051272/how-to-test-a-url-in-jquery/1051296#1051296 2 Answer by Eli for How to test a URL in jQuery Eli 2009-06-26T21:09:33Z 2009-06-26T21:09:33Z <p>Check out <a href="http://binarykitten.jkrswebsolutions.co.uk/2009/01/21/jquery-plugin-ajax-head-request/" rel="nofollow">this jquery plugin</a>. It does a HEAD request. Then you just need to check for errors during the request and make sure that the returned status code == 200.</p> http://stackoverflow.com/questions/1049568/how-can-i-specify-a-special-character-in-php/1049598#1049598 1 Answer by Eli for How can I specify a special character in PHP Eli 2009-06-26T15:00:57Z 2009-06-26T15:00:57Z <p><code>"\x1F"</code> will work for regular ASCII characters, but I think sigma is a unicode character, so you're going to have to use something like <a href="http://us.php.net/manual/en/function.utf8-encode.php" rel="nofollow">utf8_encode</a>. PHP has poor Unicode support.</p> http://stackoverflow.com/questions/1049531/should-i-cache-data-pre-emptively/1049587#1049587 0 Answer by Eli for Should I cache data pre-emptively Eli 2009-06-26T14:57:17Z 2009-06-26T14:57:17Z <p>I hear ya, but it really does depend. On many, many variables.</p> <p>If it were me, I would probably just invalidate the cache and let the next client rebuild it since that seems slightly simpler, but I don't see how you could possibly determine which way works better without trying them both.</p> <p>Hopefully, you can come up with a way to realistically simulate a heavy client load so you're not messing around with the live server.</p> http://stackoverflow.com/questions/1049390/pregreplace-and-the-abbreviations-that-go-with-it/1049444#1049444 1 Answer by Eli for preg_replace(), and the abbreviations that go with it? Eli 2009-06-26T14:27:13Z 2009-06-26T14:27:13Z <p>Well, to answer your question, <code>^\v</code> means the first character must be a "vertical space" character. Basically it means that "starts with a blank new line"</p> <p>EDIT: Looks like you actually meants the much more common <code>^\w</code> which means "must start with a 'word' character." That is, a letter or a number.</p> <p>You can find out what all these characters signify <a href="http://us2.php.net/manual/en/regexp.reference.php" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1015651/whats-the-famous-bing-running-on-asp-net-asp-net-mvc-iis-7-net-3-5/1046392#1046392 1 Answer by Eli for What's the famous Bing running on? Asp.net, asp.net mvc, IIS 7, .net 3.5? Eli 2009-06-25T21:38:57Z 2009-06-25T21:38:57Z <p><a href="http://www.computec.ch/projekte/httprecon/?" rel="nofollow">httprecon</a> shows a 100% match with <code>Microsoft IIS 6.0</code> for what that's worth.</p> <p>edit: <a href="http://w3dt.net/tools/httprecon/?host=www.bing.com&amp;submit=Analyze" rel="nofollow">direct link</a> </p> http://stackoverflow.com/questions/1041447/rubytorrent-issue/1045773#1045773 -1 Answer by Eli for RubyTorrent Issue Eli 2009-06-25T19:28:19Z 2009-06-25T19:28:19Z <p>I think it expects a filename. Could it be as simple as needing to <code>require 'open-uri'</code> ?</p> http://stackoverflow.com/questions/1033088/can-i-do-a-301-on-a-mod-rewrited-url-with-no-extension/1033139#1033139 0 Answer by Eli for Can I do a 301 on a mod rewrited url with no extension? Eli 2009-06-23T15:04:35Z 2009-06-23T15:04:35Z <p>The extensions should not make any difference at all.</p> <p>Note also that you're not using mod_rewrite. The 'Redirect' directive is part of mod_alias, which is considerably more limited in what it can do. Perhaps it'd be helpful to read up on <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Frewrite.html" rel="nofollow">mod_rewrite</a>.</p> http://stackoverflow.com/questions/1858314/why-are-my-3rd-party-html-to-pdf-tools-not-recognized-in-drupal-6-using-print-mod/1885136#1885136 Comment by Eli on Why are my 3rd-party HTML to PDF tools not recognized in Drupal 6 using Print module? Eli 2009-12-16T03:16:57Z 2009-12-16T03:16:57Z Test server and production server are the same OS? http://stackoverflow.com/questions/1710837/managing-cache-invalidation Comment by Eli on Managing Cache Invalidation Eli 2009-11-19T16:56:55Z 2009-11-19T16:56:55Z Cache invalidation is an really tricky thing to get right. It depends a <i>lot</i> on the specifics of your project. http://stackoverflow.com/questions/1712337/syntax-help-php-and-mysql/1712359#1712359 Comment by Eli on Syntax help! Php and MYSQL Eli 2009-11-11T01:11:36Z 2009-11-11T01:11:36Z date() is a PHP function, but that's not what you wanted. You wanted a MySQL function because everything in $sql is being sent (and exectued) by MySQL. http://stackoverflow.com/questions/1712337/syntax-help-php-and-mysql/1712341#1712341 Comment by Eli on Syntax help! Php and MYSQL Eli 2009-11-11T01:10:28Z 2009-11-11T01:10:28Z No, you've got the DATE function in a string that you're sending to MySQL -- so it's being executed by the database NOT by PHP. http://stackoverflow.com/questions/1659191/doesnt-equal-in-sql/1659203#1659203 Comment by Eli on Doesn't Equal in SQL Eli 2009-11-02T21:04:46Z 2009-11-02T21:04:46Z Well, if x is less than y or x is greater than y then x does not equal y. http://stackoverflow.com/questions/1650818/infinite-function-nesting-loop Comment by Eli on infinite function nesting loop Eli 2009-10-30T16:50:15Z 2009-10-30T16:50:15Z Could you perhaps rewrite this with a minimal block of PHP code that actually shows the problem? http://stackoverflow.com/questions/1577366/can-important-rules-be-used-in-ies-css-expressions/1579147#1579147 Comment by Eli on Can !important rules be used in IE's CSS expressions? Eli 2009-10-30T16:44:03Z 2009-10-30T16:44:03Z Important is clearly in the CSS2 spec: <a href="http://www.w3.org/TR/CSS2/cascade.html#important-rules" rel="nofollow">w3.org/TR/CSS2/&hellip;</a> http://stackoverflow.com/questions/1646171/mysql-datetime-fields-and-daylight-savings-time-how-do-i-reference-the-extra Comment by Eli on MySQL datetime fields and daylight savings time -- how do I reference the "extra" hour? Eli 2009-10-29T21:41:18Z 2009-10-29T21:41:18Z Internally they're all stored as a UTC, no? http://stackoverflow.com/questions/1642136/export-query-result-as-csv-through-php/1642270#1642270 Comment by Eli on export query result as CSV through PHP Eli 2009-10-29T21:32:13Z 2009-10-29T21:32:13Z Also note that if you want to read in a CSV file, splitting on the comma is not such a great way to do it. http://stackoverflow.com/questions/1640772/mysql-use-the-id-of-the-row-being-inserted-in-the-insert-statement-itself/1640841#1640841 Comment by Eli on MySQL: use the id of the row being inserted in the insert statement itself Eli 2009-10-29T03:03:10Z 2009-10-29T03:03:10Z It's ugly and there's a small race condition between when the inner select completes and the insert runs. http://stackoverflow.com/questions/1640772/mysql-use-the-id-of-the-row-being-inserted-in-the-insert-statement-itself/1640841#1640841 Comment by Eli on MySQL: use the id of the row being inserted in the insert statement itself Eli 2009-10-29T03:00:04Z 2009-10-29T03:00:04Z Yup, this would be the way to do it in one statement... but it's really not a good idea. I'd definitely do an insert, then update. http://stackoverflow.com/questions/1628488/converting-ruby-aes256-decrypt-function-to-php Comment by Eli on Converting Ruby AES256 decrypt function to PHP. Eli 2009-10-27T02:39:28Z 2009-10-27T02:39:28Z May I ask why you're doing this? Just for fun? Because you <i>really</i> shouldn't be writing your own encryption libraries for production use. They are ridiculously easy to screw up and extraordinarily hard to get right. http://stackoverflow.com/questions/1616197/find-new-rows-in-database/1616242#1616242 Comment by Eli on Find new rows in database Eli 2009-10-24T02:15:51Z 2009-10-24T02:15:51Z Not sure I follow. Yes, a Timestamp field can be set up to always show the last updated time of the record. http://stackoverflow.com/questions/1307495/secure-a-thanks-page-against-non-logged-in-users/1307508#1307508 Comment by Eli on Secure a "thanks" page against non-logged in users Eli 2009-08-20T17:40:01Z 2009-08-20T17:40:01Z Yes, by default session data only lasts for, well, a session :) http://stackoverflow.com/questions/1307495/secure-a-thanks-page-against-non-logged-in-users/1307503#1307503 Comment by Eli on Secure a "thanks" page against non-logged in users Eli 2009-08-20T16:53:47Z 2009-08-20T16:53:47Z No reason the id variable has to be unique. As you say, anything in the SESSION is on the server