User Tim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:29:02Z http://stackoverflow.com/feeds/user/33914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1527098/what-are-the-possible-return-values-for-serverremoteaddr/1527117#1527117 2 Answer by Tim for What are the possible return values for $_SERVER['REMOTE_ADDR'];? Tim 2009-10-06T17:57:12Z 2009-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>&#8220;'REMOTE_ADDR':</p> <p>The IP address from which the user is viewing the current page.&#8221;</p> http://stackoverflow.com/questions/1507225/link-to-current-page-without-query-string/1507319#1507319 0 Answer by Tim for Link to current page without query string Tim 2009-10-02T01:08:55Z 2009-10-02T01:08:55Z <p>You can link to the current page you're on with:</p> <pre><code>&lt;a href="#"&gt;blah&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1384765/writing-a-php-function-to-verify-data-in-an-array/1384818#1384818 1 Answer by Tim for writing a php function to verify data in an array Tim 2009-09-06T03:45:59Z 2009-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#1358791 3 Answer by Tim for Accessing last created row in PHP/MySQL Tim 2009-08-31T18:37:10Z 2009-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#1059416 1 Answer by Tim for need to create an application that will work on the Internet also and local internet also Tim 2009-06-29T17:14:33Z 2009-06-29T17:14:33Z <p>Google Gears?</p> <p><a href="http://gears.google.com/support/bin/answer.py?hl=en&amp;answer=79873" rel="nofollow">http://gears.google.com/support/</a></p> http://stackoverflow.com/questions/1058882/problem-with-post/1058932#1058932 0 Answer by Tim for Problem with $_POST Tim 2009-06-29T15:28:21Z 2009-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) &gt; 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#979352 0 Answer by Tim for Do I want a degree in CS or MIS? Tim 2009-06-11T04:44:37Z 2009-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#678340 5 Answer by Tim for MySQL ORDER problem Tim 2009-03-24T17:09:55Z 2009-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#336155 3 Answer by Tim for Calculate business days in PHP Tim 2008-12-03T03:35:42Z 2009-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 &gt; 2 &amp;&amp; $day &lt;= 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#301501 3 Answer by Tim for What books and sites should managers of programmers read? Tim 2008-11-19T10:37:52Z 2009-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#301320 4 Answer by Tim for What are some good free programming books? Tim 2008-11-19T08:38:03Z 2009-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#301012 2 Answer by Tim for Book for c++ threading? Tim 2008-11-19T04:44:41Z 2009-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#317344 2 Answer by Tim for How can I create multidimensional arrays in Perl? Tim 2008-11-25T13:37:38Z 2009-02-17T06:01:40Z <p><a href="http://books.google.com/books?id=ezqe1hh91q4C&amp;pg=PA268&amp;lpg=PA268&amp;dq=Perl+multidimensional+arrays+O%27Reilly&amp;source=web&amp;ots=juBEAv8MS6&amp;sig=p2DtBl6cApd0nyJQu4wZYiTLqgQ&amp;hl=en&amp;sa=X&amp;oi=book_result&amp;resnum=4&amp;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#458779 1 Answer by Tim for Google style interview preparation Tim 2009-01-19T19:15:10Z 2009-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#347748 1 Answer by Tim for What is your laptop's display size? Tim 2008-12-07T16:29:49Z 2009-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#313557 1 Answer by Tim for i need help for framework concept in php Tim 2008-11-24T06:50:18Z 2009-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#320413 1 Answer by Tim for What are the best movies about Geeks/Programmers/Hackers. (for inspiration) Tim 2008-11-26T11:40:36Z 2009-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#317039 1 Answer by Tim for Object Oriented MySQL Statements, PHP Tim 2008-11-25T11:16:51Z 2009-02-17T06:00:04Z <p>You should probably wrap the values() in parens too, like:</p> <pre><code>$MyDB-&gt;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#328431 8 Answer by Tim for Computer Science questions during interview? Tim 2008-11-30T04:08:38Z 2009-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#301142 30 Answer by Tim for What tricks do you use to get yourself "in the zone"? Tim 2008-11-19T06:15:29Z 2009-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#351423 0 Answer by Tim for Newbie Javascript : appending to array Tim 2008-12-09T00:24:51Z 2009-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#333376 0 Answer by Tim for What web application framework should I use for a web gallery? Tim 2008-12-02T08:46:28Z 2009-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#317314 0 Answer by Tim for chmod syntax in FTP-Client on all subdirectories Tim 2008-11-25T13:27:02Z 2009-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#313594 0 Answer by Tim for Online resources for learning C# Tim 2008-11-24T07:28:08Z 2009-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#317275 0 Answer by Tim for why are assignments in conditions bad ? Tim 2008-11-25T13:13:51Z 2009-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-&gt;firstName[$counter] = $getWhateverDataObj-&gt;firstName; $getWhateverObj-&gt;lastName[$counter] = $getWhateverDataObj-&gt;lastName; $counter++; } </code></pre> <p>And it works fine.</p> http://stackoverflow.com/questions/305446/what-operating-system-do-you-use-for-development/306020#306020 0 Answer by Tim for What operating system do you use for development? Tim 2008-11-20T16:50:37Z 2009-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#260954 0 Answer by Tim for What program do you use to edit php remotely and then upload to your server? Tim 2008-11-04T05:09:51Z 2009-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#261196 0 Answer by Tim for Extra backslashes being added in PHP Tim 2008-11-04T07:51:17Z 2009-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#261216 0 Answer by Tim for A form that spits out the input Tim 2008-11-04T08:05:13Z 2009-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>&lt;?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 "&lt;p&gt;" . $arrayValue . "&lt;/p&gt;\n"; } } else { echo "&lt;p&gt;" . $value . "&lt;/p&gt;\n"; } } ?&gt; </code></pre> http://stackoverflow.com/questions/196664/print-out-post-values/261268#261268 0 Answer by Tim for Print out post values Tim 2008-11-04T08:42:07Z 2009-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>&lt;?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 "&lt;p&gt;" . $arrayValue . "&lt;/p&gt;\n"; } } else { echo "&lt;p&gt;" . $value . "&lt;/p&gt;\n"; } } ?&gt; </code></pre> http://stackoverflow.com/questions/1743644/best-way-to-give-the-right-first-impressions-at-the-interview/1743663#1743663 Comment by Tim on Best way to give the right first impressions at the interview? Tim 2009-11-16T17:36:03Z 2009-11-16T17:36:03Z This answer is almost as useful as the question it answers.. heh. http://stackoverflow.com/questions/1662239/how-do-you-backup-your-websites Comment by Tim on How do you backup your websites? Tim 2009-11-02T17:41:10Z 2009-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#1590453 Comment by Tim on Database design - multi category products with properties Tim 2009-10-19T19:20:22Z 2009-10-19T19:20:22Z Yeah, like he said.. Products can belong to many categories and vice-versa, etc.. Good stuff. [Product]-&gt;[ProductCategory]&lt;-[Category] http://stackoverflow.com/questions/1590164/mysql-db-class-trouble-connecting Comment by Tim on Mysql db class - trouble connecting Tim 2009-10-19T18:21:17Z 2009-10-19T18:21:17Z die(mysql_error()) should spit out the error details http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read Comment by Tim on What is the single most influential book every programmer should read? Tim 2009-10-07T22:14:21Z 2009-10-07T22:14:21Z This seems like just a rehash of the same old &quot;What is your favorite programming book&quot; B.S... why? :( http://stackoverflow.com/questions/1500984/whats-that-thing-that-one-should-never-forget-while-coding Comment by Tim on Whats that thing that one should never forget while coding? Tim 2009-09-30T22:53:25Z 2009-09-30T22:53:25Z Have 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#1384818 Comment by Tim on writing a php function to verify data in an array Tim 2009-09-06T04:51:16Z 2009-09-06T04:51:16Z No reason, just habit. :) http://stackoverflow.com/questions/1059709/how-to-evangelize-stackoverflow-serverfault-and-superuser Comment by Tim on How to evangelize StackOverflow (ServerFault and SuperUser)? Tim 2009-06-29T18:28:06Z 2009-06-29T18:28:06Z Why 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-date Comment by Tim on Extending SQL query to include records beyond a given date. Tim 2009-06-29T18:08:47Z 2009-06-29T18:08:47Z So 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-green Comment by Tim on What can software developers do to be more "green"? Tim 2009-06-29T17:01:06Z 2009-06-29T17:01:06Z Stop wasting electricity posting questions like these :) http://stackoverflow.com/questions/1058964/how-to-avoid-listing-previously-entered-values-in-certain-text-fields-of-a-form Comment by Tim on how to avoid listing previously entered values in certain text fields of a form? HTML, PHP Tim 2009-06-29T15:45:21Z 2009-06-29T15:45:21Z Ah, ok.. Please disregard my comment then. :) http://stackoverflow.com/questions/1058964/how-to-avoid-listing-previously-entered-values-in-certain-text-fields-of-a-form Comment by Tim on how to avoid listing previously entered values in certain text fields of a form? HTML, PHP Tim 2009-06-29T15:38:30Z 2009-06-29T15:38:30Z Name the field something crazy that they probably have never encountered before. :) http://stackoverflow.com/questions/1058882/problem-with-post Comment by Tim on Problem with $_POST Tim 2009-06-29T15:21:26Z 2009-06-29T15:21:26Z Why all the extra quotes around time()? http://stackoverflow.com/questions/959797/converting-a-dgp-file Comment by Tim on Converting a .dgp file Tim 2009-06-21T15:39:22Z 2009-06-21T15:39:22Z How 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#979373 Comment by Tim on Do I want a degree in CS or MIS? Tim 2009-06-11T05:01:04Z 2009-06-11T05:01:04Z I don't mean to be an asshole, but this is somewhat of a bummer that a college graduate doesn't know when to use &quot;you're&quot; (contraction for &quot;you are&quot;) and &quot;your&quot; :(