User Tim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T15:29:02Zhttp://stackoverflow.com/feeds/user/33914http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1527098/what-are-the-possible-return-values-for-serverremoteaddr/1527117#15271172Answer by Tim for What are the possible return values for $_SERVER['REMOTE_ADDR'];?Tim2009-10-06T17:57:12Z2009-10-06T17:57:12Z<p>According to the PHP online documentation only an IP address should be returned.</p>
<p><a href="http://us.php.net/manual/en/reserved.variables.server.php" rel="nofollow">http://us.php.net/manual/en/reserved.variables.server.php</a></p>
<p>“'REMOTE_ADDR':</p>
<p>The IP address from which the user is viewing the current page.”</p>
http://stackoverflow.com/questions/1507225/link-to-current-page-without-query-string/1507319#15073190Answer by Tim for Link to current page without query stringTim2009-10-02T01:08:55Z2009-10-02T01:08:55Z<p>You can link to the current page you're on with:</p>
<pre><code><a href="#">blah</a>
</code></pre>
http://stackoverflow.com/questions/1384765/writing-a-php-function-to-verify-data-in-an-array/1384818#13848181Answer by Tim for writing a php function to verify data in an arrayTim2009-09-06T03:45:59Z2009-09-06T03:45:59Z<p>I use something like the following to loop through an unknown number of array items.</p>
<pre><code>while( list( $field, $value ) = each( $_POST )) {
// do something with each array element value
myFunction( $value );
}
</code></pre>
<p>More on the list() function here:</p>
<p><a href="http://www.w3schools.com/PHP/func%5Farray%5Flist.asp" rel="nofollow">http://www.w3schools.com/PHP/func_array_list.asp</a></p>
<p>More on the each() function here:</p>
<p><a href="http://www.w3schools.com/PHP/func%5Farray%5Feach.asp" rel="nofollow">http://www.w3schools.com/PHP/func_array_each.asp</a></p>
http://stackoverflow.com/questions/1358781/accessing-last-created-row-in-php-mysql/1358791#13587913Answer by Tim for Accessing last created row in PHP/MySQLTim2009-08-31T18:37:10Z2009-08-31T18:37:10Z<p>You can get the last item inserted with mysql_insert_id()</p>
<p><a href="http://us.php.net/manual/en/function.mysql-insert-id.php" rel="nofollow">http://us.php.net/manual/en/function.mysql-insert-id.php</a></p>
http://stackoverflow.com/questions/1059401/need-to-create-an-application-that-will-work-on-the-internet-also-and-local-inter/1059416#10594161Answer by Tim for need to create an application that will work on the Internet also and local internet also Tim2009-06-29T17:14:33Z2009-06-29T17:14:33Z<p>Google Gears?</p>
<p><a href="http://gears.google.com/support/bin/answer.py?hl=en&answer=79873" rel="nofollow">http://gears.google.com/support/</a></p>
http://stackoverflow.com/questions/1058882/problem-with-post/1058932#10589320Answer by Tim for Problem with $_POSTTim2009-06-29T15:28:21Z2009-06-29T16:04:45Z<p>I just noticed something weird...</p>
<p>$reg_error is an array the way you wrote it.</p>
<pre><code>$reg_error[] = 1;
</code></pre>
<p>So.. assign a key to that array, like $reg_error[0] or whatever.. and then</p>
<pre><code>if(count($reg_error) > 0) { /* your code */ }
</code></pre>
<p>..or just remove the [] brackets from $reg_error and leave the if/else as is.</p>
http://stackoverflow.com/questions/979254/do-i-want-a-degree-in-cs-or-mis/979352#9793520Answer by Tim for Do I want a degree in CS or MIS?Tim2009-06-11T04:44:37Z2009-06-11T04:44:37Z<p>When I was a working developer I knew people with both degrees. From what I gathered people who can handle the math and more intense classes went for the CS degree, and those who couldn't went for the MIS degree. It was just easier.</p>
<p>I was a slacker in junior high and high school (playing in bands and drinking beer was more important at the time), so during my short time in college I did not go for the CS degree because I just didn't have the background in math.</p>
<p>If you have the aptitude and a decent background in math, go for the CS degree. I would if I had it to do over again. :)</p>
http://stackoverflow.com/questions/678196/mysql-order-problem/678340#6783405Answer by Tim for MySQL ORDER problemTim2009-03-24T17:09:55Z2009-03-24T17:18:03Z<p>This will do what you want:</p>
<pre><code>select *
from myTable
order by field(myID, 8, 7, 6) desc;
</code></pre>
<p>You can set the order of whatever ID's (or whatever) youwant to appear, and any others will follow after that. Hope that helps.</p>
<p>More on this @ <a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function%5Ffield" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_field</a></p>
http://stackoverflow.com/questions/336127/calculate-business-days-in-php/336155#3361553Answer by Tim for Calculate business days in PHPTim2008-12-03T03:35:42Z2009-02-17T06:03:21Z<p>There are some args for the <a href="http://us.php.net/manual/en/function.date.php" rel="nofollow">date()</a> function that should help. If you check date("w") it will give you a number for the day of the week, from 0 for Sunday through 6 for Saturday. So.. maybe something like..</p>
<pre><code>$busDays = 3;
$day = date("w");
if( $day > 2 && $day <= 5 ) { /* if between Wed and Fri */
$day += 2; /* add 2 more days for weekend */
}
$day += $busDays;
</code></pre>
<p><em>This is just a rough example of one possibility..</em></p>
http://stackoverflow.com/questions/301478/what-books-and-sites-should-managers-of-programmers-read/301501#3015013Answer by Tim for What books and sites should managers of programmers read?Tim2008-11-19T10:37:52Z2009-02-17T06:02:54Z<p>Joel Spolsky listed another book review for "Painless Software Management" on a blog post several years ago (in addition to what you have listed above):</p>
<p><a href="http://www.joelonsoftware.com/navLinks/fog0000000262.html" rel="nofollow">http://www.joelonsoftware.com/navLinks/fog0000000262.html</a></p>
<p><strong>Rapid Development: Taming Wild Software Schedules</strong></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1556159005" rel="nofollow">http://www.amazon.com/exec/obidos/ASIN/1556159005/ref=nosim/joelonsoftware/</a></p>
<p><img src="http://www.joelonsoftware.com/books/pictures/RapidDevelopment.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/301320#3013204Answer by Tim for What are some good free programming books?Tim2008-11-19T08:38:03Z2009-02-17T06:02:31Z<p>If you're a UNIX/Linux geek, like me, you might enjoy Eric S. Raymond's "The Art of UNIX Programming", available free on Eric's website.</p>
<p><a href="http://catb.org/esr/writings/taoup/html/" rel="nofollow">http://catb.org/esr/writings/taoup/html/</a></p>
<p><img src="http://catb.org/esr/writings/taoup/cover-small.png" alt="alt text" /></p>
http://stackoverflow.com/questions/301000/book-for-c-threading/301012#3010122Answer by Tim for Book for c++ threading?Tim2008-11-19T04:44:41Z2009-02-17T06:02:01Z<p>C++ Cookbook</p>
<p><a href="http://safari.oreilly.com/0596007612/ch12-3-fm2xml" rel="nofollow">http://safari.oreilly.com/0596007612/ch12-3-fm2xml</a></p>
http://stackoverflow.com/questions/317310/how-can-i-create-multidimensional-arrays-in-perl/317344#3173442Answer by Tim for How can I create multidimensional arrays in Perl?Tim2008-11-25T13:37:38Z2009-02-17T06:01:40Z<p><a href="http://books.google.com/books?id=ezqe1hh91q4C&pg=PA268&lpg=PA268&dq=Perl+multidimensional+arrays+O%27Reilly&source=web&ots=juBEAv8MS6&sig=p2DtBl6cApd0nyJQu4wZYiTLqgQ&hl=en&sa=X&oi=book_result&resnum=4&ct=result" rel="nofollow">Programming Perl</a> (O'Reilly) starting on Page 268 covers what you're looking for.</p>
http://stackoverflow.com/questions/458755/google-style-interview-preparation/458779#4587791Answer by Tim for Google style interview preparationTim2009-01-19T19:15:10Z2009-02-17T06:01:22Z<p>Joel Spolsky published an interesting article, "<a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">The Guerrilla Guide to Interviewing</a> (version 3.0)" that may help you prepare.</p>
<p><a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html</a></p>
http://stackoverflow.com/questions/347699/what-is-your-laptops-display-size/347748#3477481Answer by Tim for What is your laptop's display size?Tim2008-12-07T16:29:49Z2009-02-17T06:01:04Z<p>Mine is an old aluminum PowerBook 12" screen at 1024x768. Just enough screen to be useful.</p>
http://stackoverflow.com/questions/313551/i-need-help-for-framework-concept-in-php/313557#3135571Answer by Tim for i need help for framework concept in phpTim2008-11-24T06:50:18Z2009-02-17T06:00:46Z<p>There are a lot of PHP frameworks available these days. The following website compares quite a few PHP frameworks currently available. Hope that helps.</p>
<p><a href="http://www.phpframeworks.com" rel="nofollow">http://www.phpframeworks.com</a></p>
http://stackoverflow.com/questions/54607/what-are-the-best-movies-about-geeks-programmers-hackers-for-inspiration/320413#3204131Answer by Tim for What are the best movies about Geeks/Programmers/Hackers. (for inspiration)Tim2008-11-26T11:40:36Z2009-02-17T06:00:28Z<p>Robert X. Cringely's "<a href="http://rads.stackoverflow.com/amzn/click/6305128235" rel="nofollow">Nerds 2.0.1</a>" (<a href="http://www.pbs.org/opb/nerds2.0.1/" rel="nofollow">3-part PBS documentary</a>) has inspired me. I've watched it dozens of times since I bought it 10 years ago..</p>
<p><img src="http://ecx.images-amazon.com/images/I/518SXXV6BDL._SL500_AA280_.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/317029/object-oriented-mysql-statements-php/317039#3170391Answer by Tim for Object Oriented MySQL Statements, PHPTim2008-11-25T11:16:51Z2009-02-17T06:00:04Z<p>You should probably wrap the values() in parens too, like:</p>
<pre><code>$MyDB->prep("INSERT INTO `demo` (`id`, `name`, `score`, `dept`, `date`) VALUES ('1','James Kablammo', '1205550', 'Marketing', '$date'"));
</code></pre>
http://stackoverflow.com/questions/328420/computer-science-questions-during-interview/328431#3284318Answer by Tim for Computer Science questions during interview?Tim2008-11-30T04:08:38Z2009-02-17T05:59:20Z<p>Steve Yegge and Joel Spolsky have made some great blog posts about programming interview questions you might want to read through when you have time. They both seem to be heavy into the computer science questions and harder interviews.</p>
<p>Steve Yegge on phone screening questions</p>
<p><a href="http://steve.yegge.googlepages.com/five-essential-phone-screen-questions" rel="nofollow">http://steve.yegge.googlepages.com/five-essential-phone-screen-questions</a></p>
<p>Joel Spolsky on interviewing</p>
<p><a href="http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html" rel="nofollow">http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html</a></p>
http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/301142#30114230Answer by Tim for What tricks do you use to get yourself "in the zone"?Tim2008-11-19T06:15:29Z2009-02-17T05:58:55Z<p>I have a few beers.</p>
<p><img src="http://imgs.xkcd.com/comics/ballmer_peak.png" alt="alt text" /></p>
http://stackoverflow.com/questions/351409/newbie-javascript-appending-to-array/351423#3514230Answer by Tim for Newbie Javascript : appending to arrayTim2008-12-09T00:24:51Z2009-01-19T23:38:10Z<p>Is b a variable? If not, it probably needs quotes.</p>
<p><em>Also, lots of good info on JavaScript push() method <a href="http://www.w3schools.com/jsref/jsref_push.asp" rel="nofollow">here</a>.</em></p>
http://stackoverflow.com/questions/333269/what-web-application-framework-should-i-use-for-a-web-gallery/333376#3333760Answer by Tim for What web application framework should I use for a web gallery?Tim2008-12-02T08:46:28Z2009-01-19T23:37:56Z<p>Flickr.com and their API may be suitable from what you described.</p>
<p><a href="http://www.flickr.com/services/api/" rel="nofollow">http://www.flickr.com/services/api/</a></p>
http://stackoverflow.com/questions/317302/chmod-syntax-in-ftp-client-on-all-subdirectories/317314#3173140Answer by Tim for chmod syntax in FTP-Client on all subdirectoriesTim2008-11-25T13:27:02Z2009-01-19T23:37:42Z<p>To chmod all subdirs from where you are (recursive):</p>
<pre><code>chmod -R *
</code></pre>
http://stackoverflow.com/questions/313585/online-resources-for-learning-c/313594#3135940Answer by Tim for Online resources for learning C#Tim2008-11-24T07:28:08Z2009-01-19T23:37:19Z<p>I've recently been using C# Station to get familiar with C#, you might want to check it out too.</p>
<p><a href="http://www.csharp-station.com/Tutorial.aspx" rel="nofollow">http://www.csharp-station.com/Tutorial.aspx</a></p>
http://stackoverflow.com/questions/317259/why-are-assignments-in-conditions-bad/317275#3172750Answer by Tim for why are assignments in conditions bad ?Tim2008-11-25T13:13:51Z2009-01-19T23:37:05Z<p>I use them all the time, with loops (not sure why that would make a difference), like:</p>
<pre><code>$counter = 0;
while( $getWhateverDataObj = mysql_fetch_object( $sqlResult )) {
$getWhateverObj->firstName[$counter] = $getWhateverDataObj->firstName;
$getWhateverObj->lastName[$counter] = $getWhateverDataObj->lastName;
$counter++;
}
</code></pre>
<p>And it works fine.</p>
http://stackoverflow.com/questions/305446/what-operating-system-do-you-use-for-development/306020#3060200Answer by Tim for What operating system do you use for development?Tim2008-11-20T16:50:37Z2009-01-19T23:35:59Z<p>Ubuntu 8.04 linux currently. (I've been too lazy to update to the newer 8.10 yet)</p>
http://stackoverflow.com/questions/260923/what-program-do-you-use-to-edit-php-remotely-and-then-upload-to-your-server/260954#2609540Answer by Tim for What program do you use to edit php remotely and then upload to your server?Tim2008-11-04T05:09:51Z2009-01-19T23:33:39Z<p>I use Zend Studio. I get the benefit of the IDE on my local machine (Linux/Mac/Win), and when I save it saves remotely on the server. It's kind of like the old HomeSite with some features (code completion, etc..) specific to PHP. I believe it will also work with version control, but since I'm one guy working alone I don't use it.</p>
http://stackoverflow.com/questions/232140/extra-backslashes-being-added-in-php/261196#2611960Answer by Tim for Extra backslashes being added in PHPTim2008-11-04T07:51:17Z2009-01-19T23:33:26Z<p>I use stripslases() to remove slashes when displaying.</p>
<p><a href="http://www.php.net/manual/en/function.stripslashes.php" rel="nofollow">http://www.php.net/manual/en/function.stripslashes.php</a></p>
http://stackoverflow.com/questions/227701/a-form-that-spits-out-the-input/261216#2612160Answer by Tim for A form that spits out the inputTim2008-11-04T08:05:13Z2009-01-19T23:33:16Z<p>If I get your question right, sounds like this might do what you need..</p>
<p><b>Note:</b> This PHP code doesn't require any knowledge of the fields in the form that submits to it, it just loops through all of the fields, including multiple-choice fields (like checkboxes), and spits out their values.</p>
<pre><code><?php
// loop through every form field
while( list( $field, $value ) = each( $_POST )) {
// display values
if( is_array( $value )) {
// if checkbox (or other multiple value fields)
while( list( $arrayField, $arrayValue ) = each( $value ) {
echo "<p>" . $arrayValue . "</p>\n";
}
} else {
echo "<p>" . $value . "</p>\n";
}
}
?>
</code></pre>
http://stackoverflow.com/questions/196664/print-out-post-values/261268#2612680Answer by Tim for Print out post valuesTim2008-11-04T08:42:07Z2009-01-19T23:33:08Z<p>This PHP code doesn't require any knowledge of the fields in the form that submits to it, it just loops through all of the fields, including multiple-choice fields (like checkboxes), and spits out their values.</p>
<pre><code><?php
// loop through every form field
while( list( $field, $value ) = each( $_POST )) {
// display values
if( is_array( $value )) {
// if checkbox (or other multiple value fields)
while( list( $arrayField, $arrayValue ) = each( $value ) {
echo "<p>" . $arrayValue . "</p>\n";
}
} else {
echo "<p>" . $value . "</p>\n";
}
}
?>
</code></pre>
http://stackoverflow.com/questions/1743644/best-way-to-give-the-right-first-impressions-at-the-interview/1743663#1743663Comment by Tim on Best way to give the right first impressions at the interview?Tim2009-11-16T17:36:03Z2009-11-16T17:36:03ZThis answer is almost as useful as the question it answers.. heh.http://stackoverflow.com/questions/1662239/how-do-you-backup-your-websitesComment by Tim on How do you backup your websites?Tim2009-11-02T17:41:10Z2009-11-02T17:41:10Z$ tar -cvf 2009-11-03_WWW.tar /web/dir/blah;
:)http://stackoverflow.com/questions/1590416/database-design-multi-category-products-with-properties/1590453#1590453Comment by Tim on Database design - multi category products with propertiesTim2009-10-19T19:20:22Z2009-10-19T19:20:22ZYeah, like he said.. Products can belong to many categories and vice-versa, etc.. Good stuff. [Product]->[ProductCategory]<-[Category]http://stackoverflow.com/questions/1590164/mysql-db-class-trouble-connectingComment by Tim on Mysql db class - trouble connectingTim2009-10-19T18:21:17Z2009-10-19T18:21:17Zdie(mysql_error()) should spit out the error detailshttp://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-readComment by Tim on What is the single most influential book every programmer should read?Tim2009-10-07T22:14:21Z2009-10-07T22:14:21ZThis seems like just a rehash of the same old "What is your favorite programming book" B.S... why? :(http://stackoverflow.com/questions/1500984/whats-that-thing-that-one-should-never-forget-while-codingComment by Tim on Whats that thing that one should never forget while coding?Tim2009-09-30T22:53:25Z2009-09-30T22:53:25ZHave enough beer in the fridge. I hate having to stop in the middle to run to the store. :(http://stackoverflow.com/questions/1384765/writing-a-php-function-to-verify-data-in-an-array/1384818#1384818Comment by Tim on writing a php function to verify data in an arrayTim2009-09-06T04:51:16Z2009-09-06T04:51:16ZNo reason, just habit. :)http://stackoverflow.com/questions/1059709/how-to-evangelize-stackoverflow-serverfault-and-superuserComment by Tim on How to evangelize StackOverflow (ServerFault and SuperUser)?Tim2009-06-29T18:28:06Z2009-06-29T18:28:06ZWhy are you concerned with evangelizing the site? You have some free time and need something to do?http://stackoverflow.com/questions/1059613/extending-sql-query-to-include-records-beyond-a-given-dateComment by Tim on Extending SQL query to include records beyond a given date. Tim2009-06-29T18:08:47Z2009-06-29T18:08:47ZSo you want to narrow down the results, but you also don't want to narrow down the results?http://stackoverflow.com/questions/38461/what-can-software-developers-do-to-be-more-greenComment by Tim on What can software developers do to be more "green"?Tim2009-06-29T17:01:06Z2009-06-29T17:01:06ZStop wasting electricity posting questions like these :)http://stackoverflow.com/questions/1058964/how-to-avoid-listing-previously-entered-values-in-certain-text-fields-of-a-formComment by Tim on how to avoid listing previously entered values in certain text fields of a form? HTML, PHPTim2009-06-29T15:45:21Z2009-06-29T15:45:21ZAh, ok.. Please disregard my comment then. :)http://stackoverflow.com/questions/1058964/how-to-avoid-listing-previously-entered-values-in-certain-text-fields-of-a-formComment by Tim on how to avoid listing previously entered values in certain text fields of a form? HTML, PHPTim2009-06-29T15:38:30Z2009-06-29T15:38:30ZName the field something crazy that they probably have never encountered before. :)http://stackoverflow.com/questions/1058882/problem-with-postComment by Tim on Problem with $_POSTTim2009-06-29T15:21:26Z2009-06-29T15:21:26ZWhy all the extra quotes around time()?http://stackoverflow.com/questions/959797/converting-a-dgp-fileComment by Tim on Converting a .dgp fileTim2009-06-21T15:39:22Z2009-06-21T15:39:22ZHow can he offer a 150pt bounty when he has only 11 pts? I thought a bounty was offered from the user's own points?..http://stackoverflow.com/questions/979254/do-i-want-a-degree-in-cs-or-mis/979373#979373Comment by Tim on Do I want a degree in CS or MIS?Tim2009-06-11T05:01:04Z2009-06-11T05:01:04ZI don't mean to be an asshole, but this is somewhat of a bummer that a college graduate doesn't know when to use "you're" (contraction for "you are") and "your" :(