User TonyUser - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:00:14Z http://stackoverflow.com/feeds/user/22873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1203509/how-can-i-get-an-html-page-as-a-string-via-php/1203610#1203610 0 Answer by TonyUser for How can I get an HTML page as a string via PHP? TonyUser 2009-07-29T23:18:53Z 2009-07-29T23:18:53Z <p>How about <a href="http://www.php.net/manual/en/function.fsockopen.php" rel="nofollow">fsockopen</a> to connect, and then use fgets to pull into your var?</p> http://stackoverflow.com/questions/530066/where-can-i-find-the-code-cd-for-my-kindle-edition-of-php-and-mysql-web-developme/530503#530503 -1 Answer by TonyUser for Where can I find the code CD for my Kindle Edition of PHP and MySQL Web Development, 4th Ed? TonyUser 2009-02-09T23:17:25Z 2009-02-09T23:17:25Z <p>Try requesting it from your local library. They should be able to track down a print version for you with the CD. Alternately, you could twitter the authors: <a href="http://twitter.com/lukewelling" rel="nofollow">Luke</a> or <a href="http://twitter.com/lxt" rel="nofollow">Laura</a> and see if they have a link.</p> http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/383785#383785 4 Answer by TonyUser for PHP function to get Facebook status? TonyUser 2008-12-20T21:53:54Z 2008-12-20T21:53:54Z <p>A quick check on <a href="http://pear.php.net" rel="nofollow">PEAR</a> found <a href="http://pear.php.net/package/Services_Facebook" rel="nofollow">Services_Facebook</a></p> http://stackoverflow.com/questions/307322/how-can-i-display-static-html-after-ive-used-die-in-a-php-block/307387#307387 0 Answer by TonyUser for How Can I Display Static HTML After I've Used die() in a PHP Block? TonyUser 2008-11-21T00:18:43Z 2008-11-21T00:18:43Z <p>Have you looked into using <a href="http://us3.php.net/manual/en/function.register-shutdown-function.php" rel="nofollow"><code>register_shutdown_function</code></a> (php.net) to finish loading the page? It should be able to handle <code>die()</code> and <code>exit()</code>.</p> http://stackoverflow.com/questions/263890/how-do-i-find-the-width-height-of-a-terminal-window/263900#263900 2 Answer by TonyUser for How do I find the width & height of a terminal window? TonyUser 2008-11-04T23:40:49Z 2008-11-04T23:40:49Z <p><code>tput</code> can tell you columns. I'm not sure about height, though.<br /> <a href="http://linux.die.net/man/1/tput" rel="nofollow">tput cols</a> man page.</p> http://stackoverflow.com/questions/263478/php-mysql-how-do-you-determin-the-field-names-from-a-given-query-result/263846#263846 0 Answer by TonyUser for PHP/MySQL - How do you determin the field names from a given query result? TonyUser 2008-11-04T23:17:02Z 2008-11-04T23:17:02Z <p>If you don't mind making a second query (and your using MySQL 5 or greater) you can ask <code>information_schema</code> for the names. Check out <a href="http://dev.mysql.com/doc/refman/5.1/en/columns-table.html" rel="nofollow">MySQL Reference</a> for the details:</p> <blockquote> <p>SHOW COLUMNS FROM tbl_name;</p> </blockquote> http://stackoverflow.com/questions/239626/notekeeping-tool-that-doesnt-lock-you-in/240445#240445 1 Answer by TonyUser for Notekeeping tool that doesn't lock you in TonyUser 2008-10-27T16:10:09Z 2008-10-27T16:10:09Z <p>I've always used Notepad for quick stuff. From <a href="http://support.microsoft.com/kb/260563" rel="nofollow">Microsoft</a>:</p> <blockquote> <p>To create a log file in Notepad:<br /> 1. Click Start, point to Programs, point to Accessories, and then click Notepad.<br /> 2. Type .LOG on the first line, and then press ENTER to move to the next line.<br /> 3. On the File menu, click Save As, type a descriptive name for your file in the File > name box, and then click OK. When you next open the file, note that the date and time have been appended to the end of the log, immediately preceding the place where new text > can be added. You can use this functionality to automatically add the current date and time to each log entry.</p> </blockquote> <p>It's simple, but only works with Windows > 2k.<br /> You should also check out <a href="http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer">What do you use to keep notes as a developer</a>.</p> http://stackoverflow.com/questions/236416/whats-a-good-way-to-train-employees-on-how-to-use-the-software-youve-just-creat 8 What's a good way to train employees on how to use the software you've just created? TonyUser 2008-10-25T13:39:11Z 2008-10-25T15:57:36Z <p>I'm working in a small company and weeks away from deploying a web-app that will be used a lot. Everyone at one location will have to learn to use it, and although I think it's pretty easy and intuitive I may be biased.<br /> I've written a help guide with plenty of screenshots that's available on every page, but I'll still need to train everyone. What's the best way? How do you take a step back and explain code you've been working on for weeks?</p> http://stackoverflow.com/questions/1551466/sql-server-edi-to-xml-data-conversion/1551549#1551549 Comment by TonyUser on SQL Server: EDI to XML Data Conversion TonyUser 2009-10-11T21:25:00Z 2009-10-11T21:25:00Z [Jitterbit](<a href="http://www.jitterbit.com/Product/index.php" rel="nofollow">jitterbit.com/Product/index.php</a>) is sort-of like BizTalk and has an open source version. Unfortunately, the EDI plug-in for it requires the paid version due to licensing. http://stackoverflow.com/questions/1169415/edi-x12-standard-where-can-i-find-a-definition-for-this/1173183#1173183 Comment by TonyUser on EDI X12 standard - Where can I find a definition for this? TonyUser 2009-07-25T14:56:13Z 2009-07-25T14:56:13Z I run development files through Softshare's EDI Notepad (<a href="http://www.softshare.com/software/edinotepad/" rel="nofollow">softshare.com/software/edinotepad</a>). It'll catch a lot of errors, but it also lets you alter the views so you can see the segments better. http://stackoverflow.com/questions/965178/how-do-i-receive-email-and-process-it-in-a-web-application/965205#965205 Comment by TonyUser on How do I receive email and process it in a web application TonyUser 2009-06-08T14:52:25Z 2009-06-08T14:52:25Z There is a Net_POP3 package in <a href="http://pear.php.net" rel="nofollow">pear.php.net</a> , but it's old (2005). http://stackoverflow.com/questions/364723/best-option-for-web-based-remote-access-to-client-computers Comment by TonyUser on Best option for web-based remote access to client computers? TonyUser 2008-12-13T13:54:32Z 2008-12-13T13:54:32Z TechInline works great in Firefox 1.5+, I think you mean it's Windows OS only.