Eli

1,880
reputation
216 views

Registered User

name Eli
member for 1 year
seen yesterday
website
location Washington, DC
age
Dec
16
comment Why are my 3rd-party HTML to PDF tools not recognized in Drupal 6 using Print module?
Test server and production server are the same OS?
Dec
6
awarded  Mortarboard
Nov
19
comment Managing Cache Invalidation
Cache invalidation is an really tricky thing to get right. It depends a lot on the specifics of your project.
Nov
11
comment Syntax help! Php and MYSQL
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.
Nov
11
comment Syntax help! Php and MYSQL
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.
Nov
2
comment Doesn’t Equal in SQL
Well, if x is less than y or x is greater than y then x does not equal y.
Nov
2
accepted MySQL “CREATE TABLE IF NOT EXISTS” -> Error 1050
Oct
30
answered MySQL “CREATE TABLE IF NOT EXISTS” -> Error 1050
Oct
30
comment Can !important rules be used in IE’s CSS expressions?
Important is clearly in the CSS2 spec: w3.org/TR/CSS2/…
Oct
30
answered Why do people want to deliver both Json and XML as output to their REST interfaces?
Oct
29
comment MySQL datetime fields and daylight savings time — how do I reference the “extra” hour?
Internally they're all stored as a UTC, no?
Oct
29
comment export query result as CSV through PHP
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.
Oct
29
answered Google Analytics-like module for Drupal site behind firewall?
Oct
29
comment MySQL: use the id of the row being inserted in the insert statement itself
It's ugly and there's a small race condition between when the inner select completes and the insert runs.
Oct
29
comment MySQL: use the id of the row being inserted in the insert statement itself
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.
Oct
29
answered Is there any FOSS lib for reading Excel files using C
Oct
29
answered SQLite3 helper?
Oct
27
comment Converting Ruby AES256 decrypt function to PHP.
May I ask why you're doing this? Just for fun? Because you really shouldn't be writing your own encryption libraries for production use. They are ridiculously easy to screw up and extraordinarily hard to get right.
Oct
26
answered How to suppress the browser’s “authentication required” dialog when doing an ajax call that requires authentication?
Oct
24
comment Find new rows in database
Not sure I follow. Yes, a Timestamp field can be set up to always show the last updated time of the record.
Oct
23
answered Find new rows in database
Oct
14
awarded  Enlightened
Oct
14
awarded  Nice Answer
Sep
12
awarded  Yearling
Aug
23
answered Do People Actually use RSS or Feeds?
Aug
20
comment Secure a “thanks” page against non-logged in users
Yes, by default session data only lasts for, well, a session :)
Aug
20
comment Secure a “thanks” page against non-logged in users
No reason the id variable has to be unique. As you say, anything in the SESSION is on the server
Aug
20
answered Secure a “thanks” page against non-logged in users
Aug
20
comment Calculating a SHA hash with a string + secret key in python
Their hash looks like it's base64 encoded.
Aug
3
comment Using Ruby and hpricot to pull data from an html page
Well, you could start by posting the code you're trying to run instead of just the error message :)
Jul
17
comment Reasons to discourage “here” links in web pages
You are correct, but you leave out that people generally click more often when you use the word 'Here.' See for example: dustincurtis.com/you_should_follow_me_on_twitter.…
Jul
16
answered What are the valid HTML tags in RSS Feeds?
Jul
15
answered PHP exec() fails
Jul
11
comment collecting mysql statistics
Careful though: this will count every query on every database on the server.
Jul
11
answered Log killed queries in MySQL
Jul
8
comment How do I find out if my html document is well formed in ruby
If the page is going to claim to be XHTML then it should try to be valid XHTML. But yeah, if you're already counting on quirks mode, who cares.
Jul
8
comment How do I find out if my html document is well formed in ruby
Are you generating these HTML documents yourself? Because in the real world, every HTML is definitely not a valid XML document. Very, very few are.
Jul
8
comment What does it mean to double license?
IANAL, but including them should suffice. The recipient can choose to agree to either license in full. I might license a song I wrote to different people without having to write some "master license" that includes all of them.
Jul
8
answered What does it mean to double license?
Jul
6
comment How would you adblock using Python?
What are you asking? How to identify ads? If so, I'd grab a copy of the EasyList subscription from AdBlock Plus and use that.
Jul
2
accepted How to display messages to the user after a POST + HTTP redirect
Jul
2
comment MY SQL Install
You should try this question over at serverfault.com
Jul
1
answered Source of data for “official” country/region list
Jul
1
awarded  Organizer
Jul
1
revised Unable to have Vim-like C-W f for Screen’s copy-mode
edited tags
Jul
1
answered Syntax Highlight with Word 2007
Jul
1
accepted Strange behavior: Hash’s keys cancel dynamic method definition
Jul
1
answered HTTPS on Apache; Will it slow Apache?
Jun
30
answered Why do dev tools offer Quirks mode?
Jun
30
comment Strange behavior: Hash’s keys cancel dynamic method definition
So if I add a function to an instance of an object, it changes that object into an anonymous subclass of whatever it was before? I didn't realize that. If that's the case, it seems you're left with only ugly solutions here (aside from, well, don't use hacked versions of String as a key)