User Eli - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:55:54Zhttp://stackoverflow.com/feeds/user/27580http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14987/do-you-listen-to-anything-while-programming/1780206#17802066Answer by Eli for Do you listen to anything while programming?Eli2009-11-22T22:19:27Z2009-11-22T22:19:27Z<p><strong>Good Instrumentals with No Vocals</strong></p>
<p>Current favorites:</p>
<p>BSG Soundtrack</p>
<p>Firefly Soundtrack</p>
<p>Enighma</p>
<p>A variety of stuff found under a search for "Guitar" on magnatune.com Especially Reza Manzoori and Heavy Mellow.</p>
<p><a href="http://magnatune.com/artists/reza" rel="nofollow">http://magnatune.com/artists/reza</a></p>
<p><a href="http://magnatune.com/artists/heavy%5Fmellow" rel="nofollow">http://magnatune.com/artists/heavy%5Fmellow</a></p>
http://stackoverflow.com/questions/242293/are-you-a-good-or-bad-programmer18Are you a good or bad programmer?Eli2008-10-28T05:09:48Z2009-11-19T13:35:28Z
<p>Hi All,</p>
<p>I see a lot of questions on SO that are asked about 'good' programmers vs 'bad' programmers.</p>
<p>For example, what is a good/bad programmer, how to tell a good/bad programmer, what to do about a bad programmer on a team, how to hire a good programmer.</p>
<p>I know it's pretty easy to apply the words to other people, but I find myself wondering if anyone out there would actually define THEMSELVES in a Boolean fashion like this, rather than "good in some areas, weak in others..."</p>
<p>I'm not asking as an either/or where you have to be one or the other, but as a 'both' - are you a good or bad programmer? </p>
<p>If so (either one), why?</p>
<p>Please note this isn't meant to be argumentative, or to define good/bad practices, etc. I just want to know how many people think they are good, bad, or neither out there.</p>
http://stackoverflow.com/questions/924246/get-the-first-or-last-friday-in-a-month/1739896#17398960Answer by Eli for Get the First or Last Friday in a MonthEli2009-11-16T03:30:44Z2009-11-16T23:38:22Z<p><strong>This is very easy to do in PHP with the built in date functions:</strong></p>
<p>I'm not using direction here, but it should be easy enough for you to change this if you need.</p>
<p><strong>To find the the Nth or Last occurrence of a particular weekday in a month, calculate as follows:</strong></p>
<pre><code>$DateTS = time();
$Day = 1;
$Ord = 1;
$Names = array( 0=>"Sun", 1=>"Mon", 2=>"Tue", 3=>"Wed", 4=>"Thu", 5=>"Fri", 6=>"Sat" );
$ThisMonthTS = strtotime( date("Y-m-01", $DateTS ) );
$NextMonthTS = strtotime( date("Y-m-01", strtotime("next month", $DateTS) ) );
$DateOfInterest = (-1 == $Ord)
? strtotime( "last ".$Names[$Day], $NextMonthTS )
: strtotime( $Names[$Day]." + ".($Ord-1)." weeks", $ThisMonthTS );
echo("Date of Interest: ".date("l, F jS, Y", $DateOfInterest));
</code></pre>
<p><strong>COMMENTED VERSION</strong></p>
<pre><code>// Any timestamp inside the month for which we want to calculate.
$DateTS = time();
// The day of interest. It can be 0=Sunday through 6=Saturday (Like 'w' from date()).
$Day = 1;
// The occurance of this day in which we are interested. It can be 1, 2, 3, 4, or -1, corresponding with first, second, third, fourth, and last.
// Last will return either the fifth occurance if there is one, otherwise the 4th.
$Ord = 1;
// We need the day name that corresponds with our day number.
// We could just specify the string in the first place, but for date calcs, you are more likely to have the day number than the string itself.
$Names = array( 0=>"Sun", 1=>"Mon", 2=>"Tue", 3=>"Wed", 4=>"Thu", 5=>"Fri", 6=>"Sat" );
// This is the first of the month, relative to $DateTS.
$ThisMonthTS = strtotime( date("Y-m-01", $DateTS ) );
// This is the first of next month, relative to $DateTS.
$NextMonthTS = strtotime( date("Y-m-01", strtotime("next month", $DateTS) ) );
// We now calculate the date of the $Ord-th occurance of $Day in the month in question.
// We can work forward from the first of this month, or backward from the last of next month.
$DateOfInterest = (-1 == $Ord)
? strtotime( "last ".$Names[$Day], $NextMonthTS )
: strtotime( $Names[$Day]." + ".($Ord-1)." weeks", $ThisMonthTS );
// View result.
echo( "Month: ".date("Y-m", $DateTS)."<br />");
echo( "Ord: ".$Ord."<br />");
echo( "Day: ".$Names[$Day]."<br /><br />");
echo("Date of Interest: ".date("l, F jS, Y", $DateOfInterest));
</code></pre>
http://stackoverflow.com/questions/1429999/jquery-ui-nested-sortable-errors1jQuery UI: Nested sortable errors.Eli2009-09-15T22:41:44Z2009-11-14T12:37:04Z
<p>Hi All,</p>
<p>Thanks for reading.</p>
<p>Two issues:</p>
<p>I am creating a task-list type of system, which will use nested sortable lists.</p>
<p>Here's some very basic demo code:</p>
<pre><code><script>
$(function(){
$('.sortable_test > li').attr('style', 'border:1px solid red; padding:3px; margin:2px;');
$('.sortable_test').sortable({
distance: 5,
connectWith: ['.sortable_test'],
placeholder: 'ui-state-highlight',
forcePlaceholderSize: true
});
})
</script>
<ul class='sortable_test'>
<li>
Item
<ul class='sortable_test'>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
</ul>
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
<li>
Item
</li>
</ul>
</code></pre>
<p><strong>Issue 1:</strong></p>
<p>If you try to drag an item from the nested sublist, within that list, it works wonderfully. Same if you try to reorder an item within the main list.</p>
<p>However, if you want to drag an item from the sublist to the main list, or vice versa, it CAN be done, but the placeholder won't appear right away, it will try to keep it in the same list. You have to drag it around all over the place, before it will register with the list you are over.</p>
<p>Eventually, it seems to realize you want to get into, or out of, a sublist, but it's very herky-jerky.</p>
<p>I am thinking perhaps it's confused as to which list has precedence, since you are dragging, technically, over both. </p>
<p>So, if you try to drag an item from the main list to a sublist, it will consider the entire sublist to be a single item and try to move over it as such.</p>
<p>Has anyone encountered this? Have any ideas? Perhaps there is a way to specify which list has precedence, or make it more obvious to the plugin which list you are interested in?</p>
<p><strong>Issue 2:</strong></p>
<p>If you grab the first item, the big one with the sublist, and try to reorder it, sometimes it will try to drop into it's own sublist, cause an error, and disappear. I can get around this by adding a handle, and hiding the sublist on handle click (making it a smaller size, which fixes the problem), before the drag starts, but can anyone else think of a way to deal with this?</p>
<p>Seems like the issue is with dragging an item with a large height.</p>
<p><strong>Browsers:</strong></p>
<p>This is all in Firefox. IE doesn't seem to be able to deal with the nested sortables at all. Seems there is NO way to grab an item from a sublist.</p>
<p>Thanks! </p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/1718172#17181720Answer by Eli for What's the least useful comment you've ever seen?Eli2009-11-11T21:22:18Z2009-11-11T23:38:22Z<p><strong>// return</strong></p>
<p><strong>return;</strong></p>
http://stackoverflow.com/questions/282267/good-programming-monitor-actual-display-dimensions-vs-diagonal-marketing-size7Good Programming Monitor: Actual Display Dimensions vs Diagonal "Marketing" Size?Eli2008-11-11T21:54:39Z2009-11-10T16:34:16Z
<p>Hi All,</p>
<p>I am thinking about adding a third monitor to my coding station.</p>
<p>I currently run 1600x1200 on a dell 20.1", which is ok, but I am thinking to move to something that will do 1920x1200.</p>
<p>I'm doing the purchase on eBay, so can't really see the monitor beforehand.</p>
<p>Last time I bought a "Widescreen" (I read "ShortScreen") monitor, I hated it. In real space, I gained a couple inches width, but I lost a lot off the height. It was like getting my monitor cut in half.</p>
<p>I'm looking at the Dell 24" or a SOYO 26". I want to make sure that the height of the screen isn't less than what I have now, in actual inches, so that the 1200 I get will be the same as the 1200 I have now, and it will just be like adding an extra 320px to the side of my existing monitor.</p>
<p>Most of the monitors I have looked at include the HxWxD, but it's for the whole thing, including sides, stand, etc. For the life of me, I can't seem to find an actual measure of screen height and width, other than diagonal, which could be anything, depending on the diagonal angle.</p>
<p><strong>Does anyone have experience with the Dell 24" 248WFP or the Soyo Pearl 26", or have any idea on a resource that would show how TALL the screen is or square inches?</strong></p>
<p>At this point, I'd be happy if someone could just measure their screen height with a ruler for me =o)</p>
<p><hr /></p>
<p>EDIT:</p>
<p>Seriously!? The guy who wrote the post about Job Hopping Etiquette:</p>
<p><a href="http://stackoverflow.com/questions/48618/job-hopping-etiquette">http://stackoverflow.com/questions/48618/job-hopping-etiquette</a></p>
<p>felt the need to close my question because he doesn't think my monitor, on which I do all of my programming, which is the WINDOW into the WORLD IN WHICH I WORK doing my PROGRAMMING, is programming related? </p>
<p>Who here thinks that your programming tools have nothing to do with programming - anyone want to try in on the 6" monitors they have at the supermarket?</p>
http://stackoverflow.com/questions/242087/internet-languages-and-technology-in-the-next-10-years-whats-going-to-die-and-2Internet Languages and Technology in the next 10 years. What's going to die, and what's going to thrive?Eli2008-10-28T02:47:02Z2009-11-08T13:21:05Z
<p>How is programming on the internet going to change in the next 5 - 10 years?</p>
<p>I don't mean general stuff, but what impact specific technologies will be most likely to have, which will end up by the wayside, which will be most likely to endure.</p>
<p>For example, will SilverLight become huge, kill flash, and make the Internet a Microsoft Meca based on YAML? Will the web become completely based on various "rich" apps. Will HTML die and be buried in a shallow grave in the back yard? Will PHPv12 have a built in function called TalkToVisitorAndFindOutWhatTheyWant()?</p>
http://stackoverflow.com/questions/993013/how-to-access-javascript-variable-value-by-creating-another-variable-via-concaten/1663302#16633021Answer by Eli for How to access javascript variable value by creating another variable via concatenation?Eli2009-11-02T19:53:22Z2009-11-02T19:53:22Z<p><strong>There is a pretty good write-up on Dynamic Variables in JavaScript here:</strong></p>
<p><a href="http://www.hiteshagrawal.com/javascript/dynamic-variables-in-javascript" rel="nofollow">http://www.hiteshagrawal.com/javascript/dynamic-variables-in-javascript</a></p>
http://stackoverflow.com/questions/255082/cakephp-or-codeigniter-longterm-upgrade-maintainability2CakePHP or CodeIgniter Longterm Upgrade / Maintainability?Eli2008-10-31T22:00:26Z2009-10-31T21:38:32Z
<p>Hi All,</p>
<p>I am deciding on a framework to try out for PHP and have narrowed it down to CakePHP and CodeIgniter.</p>
<p>I have a couple questions for any of you who have used or are familiar with both:</p>
<ol>
<li><p>I like the fact that Cake keeps most of the code outside the webroot by default. Especially since I may end up using a single framework install for multiple apps. I see CI will do that too, but you have to configure it and move some stuff around. Is that as secure and reliable, or is it an afterthought hack?</p></li>
<li><p>Is either, or are both, easy to upgrade and maintain over the long term? As new versions of the framework and php itself come out, I don't want to find my stuff either breaking or becoming outdated.</p></li>
</ol>
<p>Thanks!</p>
<p><strong>Edit:</strong></p>
<p>This is a very old post, but I thought I would update it with what I finally ended up doing, which was to use Kohana.</p>
http://stackoverflow.com/questions/1655668/javascripts-equivalent-to-phps-varname/1655680#16556805Answer by Eli for Javascript's equivalent to PHP's $$varNameEli2009-10-31T21:25:57Z2009-10-31T21:25:57Z<p><strong>There is a pretty good write-up on Dynamic Variables in JavaScript here:</strong></p>
<p><a href="http://www.hiteshagrawal.com/javascript/dynamic-variables-in-javascript" rel="nofollow">http://www.hiteshagrawal.com/javascript/dynamic-variables-in-javascript</a></p>
http://stackoverflow.com/questions/385095/samba-shared-drive-wont-auto-authenticate-at-startup2Samba shared drive won't auto-authenticate at startup.Eli2008-12-21T22:42:03Z2009-10-28T20:19:13Z
<p>Hi All,</p>
<p>I have a samba network share on a FreeBSD box that I use for development.</p>
<p>I have it set up as a shared drive on my WinXP box, and it works fine.</p>
<p>However, if I reboot the xp box, the shared drive will not be accessible until I click on it and enter the password, even though I have set it to use the correct username and password and to connect at startup.</p>
<p>Does anyone know offhand what might be the issue? I can get version data, etc. if necessary, but wanted to hang this out there briefly to see if it might be a common samba issue.</p>
<p>Thanks!</p>
<p>EDIT:</p>
<p>So Sorry! I thought I had said I have XP Pro. I actually have the auth stored in the mapped drive, where it says "authenticate using user." I also use the same username for the samba share as the xp login, though not the same pw.</p>
http://stackoverflow.com/questions/1632580/how-to-store-a-session-value-in-the-textbox-when-the-page-is-loaded/1632612#16326121Answer by Eli for How to store a session value in the textbox when the page is loaded???Eli2009-10-27T18:02:25Z2009-10-27T18:02:25Z<pre><code><input type='text' style='' name='' id='' class='' value='<?php echo(htmlspecialchars($_SESSION["Whatever"], ENT_QUOTES)); ?>' />
</code></pre>
http://stackoverflow.com/questions/1053676/opera-js-file-wont-load1Opera: .js file won't load.Eli2009-06-27T21:35:55Z2009-10-25T13:55:05Z
<p>Hi All,</p>
<p>I have a page that calls a script in the header, like so:</p>
<pre><code><script type="text/javascript" src="http://www.discoverfire.net/analytics/l/a.js"></script>
</code></pre>
<p>(Note you will NOT be able to load this script as it is DND'd locally as a staging domain)</p>
<p><strong>Very Simple.</strong></p>
<p>Firefox, IE, Chrome all have no problem with this basic, square-one feature.</p>
<p>Opera, however, refuses to load the script. Any variables or functions in it are "undefined" and in dragonfly, the script tag is shown in the DOM, but the "Script" tab says "No script files found."</p>
<p>I go to google and find random pages, their external .js files seem to work just fine.</p>
<p><strong>Any idea why Opera hates me?</strong> Is there a security/javascript thing I am missing?</p>
<p>A few things that may be relevant, but really should make no difference:</p>
<ul>
<li>The script is on a different domain than the page.</li>
<li>The script is only available on my local network. The domain is DNS'd locally for staging, from outside the network it points somewhere else. Does Opera have a setting to secretly use an external DNS server?</li>
<li>The script works on every other browser I have. </li>
<li>The problem isn't in the script content. I've reduced it to a single line with an alert and it simply won't work in Opera.</li>
</ul>
<p><strong>Update:</strong></p>
<p>OK, the problem seems to be how Opera treats the domain.</p>
<p>I have moved the script to several other domains, and it DOES work just fine. I've moved it to several paths on the locally DNS'd domain, and it won't work from anywhere on that domain.</p>
<p>This leads me to believe that the problem is that Opera can't, or won't, load the script from this domain for some reason.</p>
<p>Strangely, there seems to be no problem loading pages and other resources from the domain, the problem lies in .js files only.</p>
<p>The domain is registered, but parked. We DNS'd it locally so we can use it for staging/testing, and that may be messing with Opera somehow with JS security.</p>
<p>I could be wrong though - I really have no idea. If anyone else has one, I'd love to hear it.</p>
<p><strong>Update 2:</strong></p>
<p>Regarding Dragonfly and the error console/developer tools, they don't say anything about the script at all. There are plenty of Undefined Variable errors for variables and functions that should be present from the script, but other than that, no errors. Oddly, the script tag does show up in the DOMM, but if I click on the Scripts tab, it says "No Scripts Found".</p>
<p><strong>Update 3:</strong></p>
<p>There is no blocked content, so we can at least rule out that setting.</p>
http://stackoverflow.com/questions/348210/essential-firefox-plugins-extensions4Essential Firefox Plugins/Extensions?Eli2008-12-07T22:21:45Z2009-10-19T21:22:24Z
<p>Hi All,</p>
<p>What firefox plugins could you not live without, as relates to webdev?</p>
<p>My list would be:</p>
<ul>
<li>DBGBar</li>
<li>Dom Inspector</li>
<li>Firebug</li>
<li>Firecookie</li>
<li>Google toolbar (useful for seo)</li>
<li>Live HTTP</li>
<li>ReloadEvery</li>
<li>TamperData</li>
<li>Web Developer</li>
</ul>
<p>I am always on the lookout for new ones though, so I wonder if anyone knows of any great ones that I may have missed?</p>
http://stackoverflow.com/questions/1073186/block-spam-from-tell-a-friend-forms/1575548#1575548-2Answer by Eli for Block spam from "tell a friend" formsEli2009-10-15T22:48:57Z2009-10-16T02:03:13Z<p><strong>This service has very good anti-spam measures.</strong></p>
<p><a href="http://www.tellafriendking.com/features.php?showall=1#spam-free" rel="nofollow">http://www.tellafriendking.com/features.php?showall=1#spam-free</a></p>
<p>FYI, I am involved with the company, so I'm not entirely unbiased, but we do get a lot of refugees who come to us to end their spam problems with other services or downloaded scripts.</p>
<p><strong>Edit:</strong></p>
<p>If you feel the need to vote down, perhaps you should leave a comment too...</p>
http://stackoverflow.com/questions/1190451/how-do-you-match-12-hour-time-hhmm-in-a-regex/1569881#15698810Answer by Eli for How do you match 12 hour time hh:mm in a regex?Eli2009-10-15T01:39:28Z2009-10-15T01:47:31Z<p><strong>^(00|0[0-9]|1[012]):[0-5][0-9] ?((a|p)m|(A|P)M)$</strong></p>
<p>^ - Match the beginning of the string.</p>
<p>(00|0[0-9]|1[012]) - any two-digit number up to 12. Require two digits. </p>
<p>: - Match a colon</p>
<p>[0-5][0-9] - Match any two-digit number from 00 to 59.</p>
<p>? - Match a space zero or one times.</p>
<p>((a|p)m|(A|P)M) Match am or pm, case insensitive.</p>
<p>$ - Match the end of the string.</p>
http://stackoverflow.com/questions/187594/seriously-should-i-write-bad-php-code/1546370#15463700Answer by Eli for Seriously, should I write bad PHP code?Eli2009-10-09T22:30:16Z2009-10-10T20:08:45Z<p><strong>Write a couple 10 minute examples and run them in your profiler.</strong> </p>
<p>That will tell you which is faster to the millisecond.</p>
<p>If you don't have a profiler, post them here, and I will run them in my PHPEd profiler.</p>
<p>I suspect that much of the time difference, if any, comes from having to open the file that a class is stored in, but that would have to be tested too.</p>
<p>Then ask yourself if you care that much about a few milliseconds vs having to maintain spaghetti code - will any of your users ever notice?</p>
<p><strong>Edit</strong></p>
<p>The profiler won't simulate high traffic volumes, but it will tell you which method is faster for a single user, and which parts of the code are using how much time. Especially if you profile the operations being done repeatedly - say 1000 times each in a loop.</p>
<p>We can assume (though not always) that faster code used by a lot of people will be faster than slower code used by a lot of people.</p>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1546421#15464210Answer by Eli for Did you ever switch from one programming language to another?Eli2009-10-09T22:46:00Z2009-10-09T22:46:00Z<p><strong>I tend to use multiple languages, but I did make a big change in platform.</strong></p>
<p>I started out my career working mainly with MS languages, servers, tool-stacks, because they were easy and kind of the default.</p>
<p>At one point though, it became necessary for me to do a bit of work with various langs/tools on *nix servers for several months. </p>
<p>Much of it was difficult because I wasn't familiar with it, but I did get used to it. </p>
<p>Then, when I went back to working mainly with MS, I found that I didn't like it anymore. I just liked open source better, I liked linux better, I liked the various languages better, and the support community, and the fact that you could take ownership of a project to whatever depth you needed to, even though you don't need to most of the time, without hitting a proprietary black box, beyond which only employees of a particular company can go.</p>
<p>I was a contractor, so it was pretty easy for me to make the switch by making recommendations and looking for different types of projects. At this point, I only really use MS for my workstation, which is one thing I think it really does excel at.</p>
http://stackoverflow.com/questions/1542263/web-server-technology-stack-market-shares/1546335#15463350Answer by Eli for Web Server technology stack market shares?Eli2009-10-09T22:18:42Z2009-10-09T22:18:42Z<p>It seems like if you choose PHP, everyone can use it, and it's just a bit more difficult (not very) for MS people.</p>
<p>However, if you choose ASP.net, it will be a bit easier for MS people, but most *nix people either can't, or won't use it.</p>
<p>Given the choice of small pain to MS users or big pain to *nix users, I would give the small pain to MS users.</p>
<p>Overall, PHP sounds like the way to go, but I guess that's pretty subjective, as I personally limit my MS exposure to my workstation.</p>
http://stackoverflow.com/questions/1546106/how-to-properly-build-a-navigation-menu-that-highlights-the-current-page/1546319#1546319-1Answer by Eli for How to properly build a navigation menu that highlights the current pageEli2009-10-09T22:13:31Z2009-10-09T22:13:31Z<p>Here's a snippet from a project of mine. It it old ugly code, and uses tables, but you can just as easily use the idea for divs and cleaner markup. The trick is to make the navigation use a different class if the current page matches it's url.</p>
<pre><code> <td><a class='LeftSubNavLink<?php if($_SERVER["SCRIPT_NAME"] == "/admin/billing_home.php"){print("Current");}?>' href='<?php print(MAIN_URL); ?>admin/billing_home.php'>Billing Home</a></td></tr>
<td><a class='LeftSubNavLink<?php if($_SERVER["SCRIPT_NAME"] == "/admin/billing_schedules.php"){print("Current");}?>' href='<?php print(MAIN_URL); ?>admin/billing_schedules.php'>Billing Schedules</a></td></tr>
<td><a class='LeftSubNavLink<?php if($_SERVER["SCRIPT_NAME"] == "/admin/billing_outstanding.php"){print("Current");}?>' href='<?php print(MAIN_URL); ?>admin/billing_outstanding.php'>Outstanding</a></td></tr>
<td><a class='LeftSubNavLink<?php if($_SERVER["SCRIPT_NAME"] == "/admin/billing_list.php"){print("Current");}?>' href='<?php print(MAIN_URL); ?>admin/billing_list.php'>List All</a></td></tr>
<td><a class='LeftSubNavLink<?php if($_SERVER["SCRIPT_NAME"] == "/admin/billing_history.php"){print("Current");}?>' href='<?php print(MAIN_URL); ?>admin/billing_history.php'>Billing History</a></td></tr>
<td><a class='LeftSubNavLink<?php if($_SERVER["SCRIPT_NAME"] == "/admin/billing_statement_history.php"){print("Current");}?>' href='<?php print(MAIN_URL); ?>admin/billing_statement_history.php'>Statement History</a></td></tr>
</code></pre>
http://stackoverflow.com/questions/1546246/jquery-select-multiple-problem/1546269#15462691Answer by Eli for jquery select multiple problemEli2009-10-09T21:57:22Z2009-10-09T22:05:38Z<p>This will work:</p>
<pre><code><script>
$(function(){
$("select").change(function () {
var str = $(this).children('option[selected]').text();
alert(str);
})
});
</script>
</code></pre>
<p>No need to do it for each option, just take the relevant options as children of the select, and text() will concatenate all that match.</p>
http://stackoverflow.com/questions/1541254/php-gzip-close-connection-and-continue-executing/1541292#15412922Answer by Eli for PHP + gzip: close connection and continue executingEli2009-10-09T00:38:00Z2009-10-09T20:07:01Z<p>You might try breaking it into two pages.</p>
<p>In the first page, do the necessary processing, then load the second page via curl, and die().</p>
<p>That would cause the first page to complete and close, independent of the second page processing.</p>
<p>ie:</p>
<p>Page 1:</p>
<pre><code><?php
// Do stuff
// Post or get second page...
// Send Data to client
die();
?>
</code></pre>
<p>Page 2: </p>
<pre><code><?php
// Do other stuff....
?>
</code></pre>
<p>See <a href="http://www.php.net/curl" rel="nofollow">http://www.php.net/curl</a></p>
http://stackoverflow.com/questions/1521592/get-root-domain-of-link/1521668#15216685Answer by Eli for Get Root Domain of LinkEli2009-10-05T18:27:19Z2009-10-05T18:27:19Z<p>This might do the trick.</p>
<p><a href="http://docs.python.org/library/urlparse.html" rel="nofollow">http://docs.python.org/library/urlparse.html</a></p>
http://stackoverflow.com/questions/1521491/formula-pattern-to-provide-a-unique-32-bit-int-that-represents-a-512-character-fi/1521644#15216440Answer by Eli for Formula/pattern to provide a unique 32 bit int that represents a 512 character file path?Eli2009-10-05T18:24:45Z2009-10-05T18:24:45Z<p>I know you said int, but if you can take string, you can use md5 and will get a unique value per path. Beyond that, the only thing I can think of is to assign an arbitrary number for each one by incrementation. That won't get you a real hash though, just make a path id...</p>
http://stackoverflow.com/questions/1475297/phps-white-screen-of-death/1476028#14760282Answer by Eli for PHP's white screen of deathEli2009-09-25T08:09:07Z2009-09-25T21:41:19Z<p>Dunno if it will help, but here is a piece of my standard config file for php projects. I tend not to depend too much on the apache configs even on my own server.</p>
<p>I never have the disappearing error problem, so perhaps something here will give you an idea.</p>
<p>**Edited to show APPLICATON_LIVE **</p>
<pre><code>/*
APPLICATION_LIVE will be used in process to tell if we are in a development or production environment. It's generally set as early as possible (often the first code to run), before any config, url routing, etc.
*/
if ( preg_match( "%^(www.)?livedomain.com$%", $_SERVER["HTTP_HOST"]) ) {
define('APPLICATION_LIVE', true);
} elseif ( preg_match( "%^(www.)?devdomain.net$%", $_SERVER["HTTP_HOST"]) ) {
define('APPLICATION_LIVE', false);
} else {
die("INVALID HOST REQUEST (".$_SERVER["HTTP_HOST"].")");
// Log or take other appropriate action.
}
/*
--------------------------------------------------------------------
DEFAULT ERROR HANDLING
--------------------------------------------------------------------
Default error logging. Some of these may be changed later based on APPLICATION_LIVE.
*/
error_reporting(E_ALL & ~E_STRICT);
ini_set ( "display_errors", "0");
ini_set ( "display_startup_errors", "0");
ini_set ( "log_errors", 1);
ini_set ( "log_errors_max_len", 0);
ini_set ( "error_log", APPLICATION_ROOT."logs/php_error_log.txt");
ini_set ( "display_errors", "0");
ini_set ( "display_startup_errors", "0");
if ( ! APPLICATION_LIVE ) {
// A few changes to error handling for development.
// We will want errors to be visible during development.
ini_set ( "display_errors", "1");
ini_set ( "display_startup_errors", "1");
ini_set ( "html_errors", "1");
ini_set ( "docref_root", "http://www.php.net/");
ini_set ( "error_prepend_string", "<div style='color:red; font-family:verdana; border:1px solid red; padding:5px;'>");
ini_set ( "error_append_string", "</div>");
}
</code></pre>
http://stackoverflow.com/questions/1468857/what-is-am-pm-called4What is AM/PM called?Eli2009-09-23T22:26:02Z2009-09-24T23:17:59Z
<p>Hi All,</p>
<p>Thanks for reading.</p>
<p>I know what AM/PM stand for (ante-meridiem and post-meridiem), but what are they called?</p>
<p>For example, if I am building a date/time from some fields, such as date, hour, minute, am/pm, and want the user to be able to select the time from some select menus like 1-12, 00-60, and am/pm, I would name the selects Hour, Minute, and ____ ?</p>
<p>Normally, I just call it AMPM, but there must be a name for this piece of data?</p>
<p>Thanks!</p>
<p><strong>Edit</strong></p>
<p>Perfect - thanks!</p>
<p>Never again will I have to make weird field names like DueTimeHour, DueTimeMinute, and DueTimeAMPMThingy!</p>
<p><strong>Edit 2</strong></p>
<p>Ok, seriously, if somebody felt the need to downvote the question, that's fine, but feel free to add a comment with the reason for your disgruntlement.</p>
<p>Otherwise, the rest of us might think someone out there believes having a firm understanding of the data you are working with is not programming related.</p>
http://stackoverflow.com/questions/1470800/url-problem-on-iis-using-php/1470822#14708220Answer by Eli for URL problem on IIS, using PHPEli2009-09-24T10:19:35Z2009-09-24T23:10:24Z<p>Hi,</p>
<p>I can't say specifically what the problem is from what you have here (it's hard to understand what you're saying without seeing the rest of the script), but I can almost guarantee that IIS isn't the problem. Most likely there is some confusion with the page you are trying to forward to - either it's not there, or not being forwarded properly.</p>
<p>Try doing this:</p>
<pre><code>$updateGoTo = "freelancer_details.php?id=" . $row_rsFreeLancer['freeid'] . "";
echo("<a href='".$updateGoTo."'>Click Me</a>");
</code></pre>
<p>and try clicking. That will tell you if there is truly a page at that URL, or if it's off.</p>
<p>Also, how are you forwarding to the next page? Are you using header() or something else?</p>
<p><strong>Edit</strong></p>
<p>Hi,</p>
<p>What this means ?id=&id=5 is that instead of having $_GET['id'] available as 5, it will be an array with two values, one of which will be blank, and the other will be 5.</p>
<p>You need to figure out why the id is being added twice and fix that. Without code, I can't tell you much else.</p>
http://stackoverflow.com/questions/375525/conflict-between-drag-and-drop-and-sortable-jquery-plugins/1429578#14295781Answer by Eli for Conflict between Drag and drop and sortable jquery pluginsEli2009-09-15T20:57:25Z2009-09-15T20:57:25Z<p>You can do this, sort of.</p>
<p>Create two links in each item to use as handles.</p>
<p>Make the list sortable by one handle.</p>
<p>Make the list draggable by the other handle.</p>
<p>Now, when you grab one handle or the other, only one plugin will be activated, and events will be processed correctly.</p>
http://stackoverflow.com/questions/1423886/php-large-report-file-download-issue0PHP Large report file download issue.Eli2009-09-14T20:58:41Z2009-09-15T08:07:26Z
<p>Hi All,</p>
<p><strong>Solved</strong></p>
<p>I actually found out what is going on here.</p>
<p>Turns out it was sending the whole file, but Excel (which I was using to open the result file for testing), will only display 65536 rows. If there are more than that, it will alert something to the effect of "the file is incompletely displayed" and then cut it off after that many records.</p>
<p>(Note to Joel Spolsky - please call your friends from the original Excel development team and yell at them for me =o)</p>
<p>Thanks!</p>
<p><hr /></p>
<p>I have a very simple script that pulls some data from a database, and sends it to the visitor as a .csv file.</p>
<p>I have the memory and execution time set to acceptable levels, but for a few large reports, I notice that the download cuts off after about 10 seconds.</p>
<p>This ONLY happens if I set it as a download in the headers. If I comment out the content-type, content-disposition, etc, and just write the data to the browser, then the entire file will download and display in the browser.</p>
<p>Code is as follows:</p>
<pre><code>// Code removed.
</code></pre>
<p>Anyone have any ideas? Could this be a browser issue with file download?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1381123/how-can-i-create-an-error-404-in-php/1381226#13812260Answer by Eli for How can I create an error 404 in PHP?Eli2009-09-04T19:50:55Z2009-09-04T19:50:55Z<p>Did you remember to die() after sending the header? The 404 header doesn't automatically stop processing, so it may appear not to have done anything if there is further processing happening.</p>
<p>It's not good to REDIRECT to your 404 page, but you can INCLUDE the content from it with no problem. That way, you have a page that properly sends a 404 status from the correct URL, but it also has your "what are you looking for?" page for the human reader.</p>
http://stackoverflow.com/questions/1632580/how-to-store-a-session-value-in-the-textbox-when-the-page-is-loaded/1632589#1632589Comment by Eli on How to store a session value in the textbox when the page is loaded???Eli2009-10-27T18:04:10Z2009-10-27T18:04:10ZDon't forget to escape the value when you put it into the HTML field value, or you will end up with half a value if somebody enters a value with a quote mark, and open yourself up to a few other probelms as well.http://stackoverflow.com/questions/1053676/opera-js-file-wont-load/1620979#1620979Comment by Eli on Opera: .js file won't load.Eli2009-10-25T20:59:09Z2009-10-25T20:59:09ZI will, thanks! I've put that project on the back burner for a bit, but will be launching it shortly, and will have to test that out.http://stackoverflow.com/questions/137487/null-vs-false-vs-0/138954#138954Comment by Eli on Null vs. False vs. 0Eli2009-10-20T22:35:50Z2009-10-20T22:35:50ZNote about Null: PHP uses it as "no value" but this is not a good habit to get into. In general, Null means "unknown value" which is different than "no value" or "uninitialized variable". Nothing plus 1 is 1, while an unknown value plus one is an unknown value. Just remember that any operator applied to null will (should) result in null, because any operation on an "unknown value" results in an unknown value. http://stackoverflow.com/questions/187594/seriously-should-i-write-bad-php-code/1546370#1546370Comment by Eli on Seriously, should I write bad PHP code?Eli2009-10-10T20:09:01Z2009-10-10T20:09:01Z@yar - see edit.http://stackoverflow.com/questions/116949/what-is-your-preferred-tool-stack-for-php-development-in-the-windows-environment/119214#119214Comment by Eli on What is your preferred tool stack for PHP development in the Windows Environment?Eli2009-10-09T22:23:05Z2009-10-09T22:23:05ZWill UE it debug remotely?http://stackoverflow.com/questions/1475297/phps-white-screen-of-death/1476028#1476028Comment by Eli on PHP's white screen of deathEli2009-09-25T21:36:33Z2009-09-25T21:36:33Z@Matthew Scharley - Updated.http://stackoverflow.com/questions/1468857/what-is-am-pm-calledComment by Eli on What is AM/PM called?Eli2009-09-24T10:25:28Z2009-09-24T10:25:28ZVinko is correct. It may be necessary to collect the data from the user in such fields, but you should never store temporal data in this fashion, build a valid datetime field and store it that way. Except perhaps if you need to store a recurring event, in which case you may need to store the date info as one or more temporal expression, which would be used to calculate what days match the event. Of course, then it's not really date data anymore...http://stackoverflow.com/questions/1468857/what-is-am-pm-called/1468860#1468860Comment by Eli on What is AM/PM called?Eli2009-09-23T22:34:58Z2009-09-23T22:34:58ZBC was first, but definite upvote from me.http://stackoverflow.com/questions/1429999/jquery-ui-nested-sortable-errors/1435182#1435182Comment by Eli on jQuery UI: Nested sortable errors.Eli2009-09-16T21:19:50Z2009-09-16T21:19:50ZThanks! I also created a bug report for this item, since it has a couple issues.
http://stackoverflow.com/questions/1423886/php-large-report-file-download-issue/1423970#1423970Comment by Eli on PHP Large report file download issue.Eli2009-09-15T08:09:30Z2009-09-15T08:09:30ZThis is what I was going to do before I figured it out.http://stackoverflow.com/questions/757232/jquery-ui-dialog-with-asp-net-button-postback/768163#768163Comment by Eli on JQuery UI Dialog with Asp .NET button postback..Eli2009-09-12T22:10:19Z2009-09-12T22:10:19ZAwesome. Solved a similar problem for me.http://stackoverflow.com/questions/1364695/jquery-javascript-pulling-info-from-an-objectComment by Eli on jQuery/Javascript pulling info from an object.Eli2009-09-01T22:20:22Z2009-09-01T22:20:22ZThanks! I'm aware of this, but wanted a clean demo. Good thing to bring up though.
http://stackoverflow.com/questions/1364695/jquery-javascript-pulling-info-from-an-object/1364845#1364845Comment by Eli on jQuery/Javascript pulling info from an object.Eli2009-09-01T22:16:12Z2009-09-01T22:16:12ZWould I get the same benefit from cloning a template div with display:none;, modifying it, and then making it display:block;?http://stackoverflow.com/questions/1364695/jquery-javascript-pulling-info-from-an-object/1364845#1364845Comment by Eli on jQuery/Javascript pulling info from an object.Eli2009-09-01T22:05:46Z2009-09-01T22:05:46ZSweet. Will definitely try it this way.http://stackoverflow.com/questions/1364695/jquery-javascript-pulling-info-from-an-object/1364704#1364704Comment by Eli on jQuery/Javascript pulling info from an object.Eli2009-09-01T21:29:58Z2009-09-01T21:29:58ZI can see I'm going to have to check into jQuery's utilities a bit more closely. Beautiful - thanks!