User TravisO - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T14:01:33Z http://stackoverflow.com/feeds/user/35116 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1012238/how-to-turn-off-these-php-warnings/1015107#1015107 1 Answer by TravisO for how to turn off these PHP warnings ? TravisO 2009-06-18T20:46:11Z 2009-06-18T20:46:11Z <p>When something gives you errors, the worst approach is to just "turn them off". If the emergency light turns on in your car dashboard, do you go get it services or do you unscrew the light bulbs?!</p> http://stackoverflow.com/questions/1014946/is-jsondecode-in-php-guaranteed-to-preserve-ordering-of-elements-when-returning/1015046#1015046 0 Answer by TravisO for Is json_decode in PHP guaranteed to preserve ordering of elements when returning an array? TravisO 2009-06-18T20:34:20Z 2009-06-18T20:34:20Z <p>Personally, I've never trusted any system to return an exact order unless that order is specifically defined. If you really need an order, then use a dictionary aka 2dimension array and assigned a place value (0,1,2,3...) to each value in the list.</p> <p>If you apply this rule to everything, you'll never have to worry about the delivery/storage of that array, be it XML, JSON or a database.</p> <p>Remember, just because something happens to work a certain way, doesn't mean it does so intentionally. It's akin to thinking rows in a database have an order, when in fact they don't unless you use an ORDER BY clause. It's unsafe to think ID 1 always comes before ID 2 in a SELECT.</p> http://stackoverflow.com/questions/689735/insert-binary-data-into-sql-server-using-php/690698#690698 1 Answer by TravisO for Insert binary data into SQL Server using PHP TravisO 2009-03-27T17:24:08Z 2009-03-27T17:24:08Z <p>The simple answer is: stop what you're doing.</p> <p>You don't want to store binary files inside a database unless you have some very specific security issues. Instead you want to store their filenames (possibly rename the files to prevent confliction) and then store that in the database. If security is an issue, then put then in a non web folder and use your code to retrieve the file and only serve the file if the user has access to it.</p> <p>Storing images or files inside a database is a waste of file space, a mis-use of databases, and not letting things do what they do best; the filesystem knows files, the database knows data.</p> http://stackoverflow.com/questions/683702/how-do-you-perform-a-pregmatch-where-the-pattern-is-an-array-in-php/683766#683766 0 Answer by TravisO for How do you perform a preg_match where the pattern is an array, in php? TravisO 2009-03-25T22:25:43Z 2009-03-25T22:25:43Z <p>// assuming you have something like this</p> <p>$patterns = array('a','b','\w');</p> <p>// then I would do the following</p> <p>$patterns_flattened = implode($patterns,'|');</p> <p>if ( preg_match('/'. $patterns_flattened .'/', $string, $matches) ) { }</p> <p>// PS: that's off the top of my head, I didn't check it in a code editor</p> http://stackoverflow.com/questions/683702/how-do-you-perform-a-pregmatch-where-the-pattern-is-an-array-in-php/683762#683762 0 Answer by TravisO for How do you perform a preg_match where the pattern is an array, in php? TravisO 2009-03-25T22:24:50Z 2009-03-25T22:24:50Z <p>// assuming you have something like this</p> <p>$patterns = array('a','b','\w');</p> <p>// then I would do the following</p> <p>$patterns_flattened = implode($patterns,'|');</p> <p>if ( preg_match('/'. $patterns_flattened .'/', $string, $matches) ) { }</p> http://stackoverflow.com/questions/676050/how-to-implement-multi-language-in-php-application/676081#676081 0 Answer by TravisO for How to Implement multi language in PHP application? TravisO 2009-03-24T03:31:13Z 2009-03-24T20:38:14Z <p>There are free 3rd party controls to do this using an ISO standard XML file (I wrote a database utility to create, edit &amp; export into this format).</p> <p>The other answers are very manual and involve more work than using this control does.</p> <p>The control you need is found at: <a href="http://ezcomponents.org/docs/api/trunk/introduction%5FTranslation.html" rel="nofollow">http://ezcomponents.org/docs/api/trunk/introduction_Translation.html</a></p> <p>After the eZ Components are installed on the server, you need to retrieve the base control required for all eZ Components</p> <pre><code>require_once "ezc/Base/base.php"; /** * __autoload() * * @param mixed $className * @return */ function __autoload( $className ) { ezcBase::autoload( $className ); } </code></pre> <p>Then you must define where the XML language file is located (see: ISO639-2, ISO3166, and Qt Linguist)</p> <pre><code>$config["language_code"] = "en_us"; // as defined by ISO639-2 and ISO3166 // grab our translation XML file $backend = new ezcTranslationTsBackend( dirname( __FILE__ ). '/translations' ); $backend -&gt; setOptions( array( 'format' =&gt; $config["language_code"].'.xml' ) ); // create a manager object $manager = new ezcTranslationManager( $backend ); $language = $manager-&gt;getContext( $config["language_code"], 'strings' ); </code></pre> <p>now you can grab strings by simply calling the following function</p> <pre><code>getTranslation( "SOME_KEY" ); </code></pre> <p>and to retrieve phrases that have parameters use the following syntax, please note the relation between [KEYWORD] and "keyword" is intentional and recommended</p> <pre><code>getTranslation( "FIND_[KEYWORD]_BY_[TYPE]", array("keyword" =&gt; $keyword, "type" =&gt; $type ) ); </code></pre> <p>an example of a TS XML file is (should be called en_US.xml)</p> <pre><code>&lt;!DOCTYPE TS&gt; &lt;TS&gt; &lt;context&gt; &lt;name&gt;strings&lt;/name&gt; &lt;message&gt; &lt;source&gt;ZONE_TYPE&lt;/source&gt; &lt;translation&gt;Zone Type&lt;/translation&gt; &lt;/message&gt; &lt;message&gt; &lt;source&gt;ZONE_TOOL&lt;/source&gt; &lt;translation&gt;Zone Tool&lt;/translation&gt; &lt;/message&gt; &lt;message&gt; &lt;source&gt;HELLO_[NAME]_WELCOME_TO&lt;/source&gt; &lt;translation&gt;Hello, %name, welcome to Webfood Admin&lt;/translation&gt; &lt;/message&gt; &lt;message&gt; &lt;source&gt;YOUR_ADMINISTRATIVE_SESSION_HAS&lt;/source&gt; &lt;translation&gt;Your administrative session has timed out. Please login again.&lt;/translation&gt; &lt;/message&gt; &lt;/context&gt; &lt;/TS&gt; </code></pre> <p>I would simply have a setting, in your PHP sessions, that stores the language used, perhaps ask the user before or after they log in which language they want, and store it to their user table if you have accounts. There's no reason to keep sending a URL value over and over, that's a bad idea.</p> http://stackoverflow.com/questions/674739/benchmarking-php-vs-pylons/674919#674919 2 Answer by TravisO for benchmarking PHP vs Pylons TravisO 2009-03-23T19:36:33Z 2009-03-23T19:36:33Z <ol> <li><p>your PHP version is out of date, PHP has been in the 5.2.x area for awhile and while there are not massive improvements, there are enough changes that I would say to test anything older is an unfair comparison.</p></li> <li><p>PHP 5.3 is on the verge of becomming final and you should include that in your benchmarks as there are massive improvements to PHP 5.x as well as being the last version of 5.x, if you really want to split hairs PHP 6 is also in alpha/beta and that's a heavy overhaul also.</p></li> <li><p>Comparing totally different languages can be interesting but don't forget you are comparing apples to oranges, and the biggest bottleneck in any 2/3/N-Tier app is waiting on I/O. So the biggest factor is your database speed, comparing PHP vs Python VS ASP.Net purely on speed is pointless as all 3 of them will execute in less than 1 second but yet you can easily wait 2-3 seconds on your database query, depending on your hardware and what you are doing.</p></li> <li><p><strong>If you are worried what is faster, you're taking the absolute wrong approach to choosing a platform.</strong> There are more important issues, such as (not in order):</p> <p>a. How easily can I find skilled devs in that platform</p> <p>b. How much do those skilled devs cost</p> <p>c. How much ROI does the language offer</p> <p>d. How feature rich is the language</p></li> </ol> http://stackoverflow.com/questions/640422/why-not-just-using-ajax-for-page-requests-to-load-the-page-content/640655#640655 0 Answer by TravisO for Why not just using ajax for Page Requests to load the page content? TravisO 2009-03-12T21:55:05Z 2009-03-12T21:55:05Z <p>Well if you want to AJAX load new pages, such as the same way Gmail works, I suggest your links are normal A HREF links that point to a true full rendering page URL and alos use an onclick event that stop the attempt at normal link loading and make your AJAX calls. The problem here is you'll be doing almost double coding unless you architecture this all very well.</p> <p>This way the normal non JS links load the full page, and the JS calls only load the new parts or page. This means spider indexing works again too.</p> http://stackoverflow.com/questions/637278/what-is-the-best-way-to-generate-a-random-key-within-php/640192#640192 0 Answer by TravisO for What is the best way to generate a random key within PHP? TravisO 2009-03-12T19:47:51Z 2009-03-12T19:55:50Z <pre><code>md5(uniqid(mt_rand(), true)); </code></pre> <p>This generates HEX (0-9A-F) characters which encode tightly when stored as HEX or BINARY in your column, you can use CHAR(32) but it's not as efficient. Obviously these print nicely and are easy to say outloud, no funny characters.</p> <p>This is what is known as a UUID and you'll never generate the same one twice, not ever if every computer in the world was generating them.</p> <p>PS: Technically you should use SHA-256 and substr() the thing to 32 characters long to generate even better quality UUIDs.</p> http://stackoverflow.com/questions/638494/stop-data-inserting-into-a-database-twice/640123#640123 0 Answer by TravisO for Stop data inserting into a database twice TravisO 2009-03-12T19:21:34Z 2009-03-12T19:41:52Z <p>In addition to the good suggestions already mentioned about taking the user away from the posting page so a refresh and back button are harmless, another layer in improving your data storage is to use <a href="http://en.wikipedia.org/wiki/Uuid" rel="nofollow">UUID</a>s as keys in your table and let your applications generate them.</p> <p>These are also known as GUIDs in the Microsoft world and in PHP you can generate one via uniqid() in PHP. This is a 32 character hex value which you should store in a hex/binary column format but if the table isn't going to be heavily used than CHAR(32) will work.</p> <p>Generate this ID when you display your form as a hidden input, and make sure to mark the database column is marked as the primary key. Now if the user does manage to go all the way back to a posting page, the INSERT will fail because you can't have duplicate keys.</p> <p>An extra bonus to this is, if you generate the UUID in code, then after you perform an insert you'll never need to use wasteful queries retrieving the key that was generated because you'll already know it. This is a nice benefit when you need to INSERT child items into other tables.</p> <p>Good programming is based upon layering your work, not relying on 1 thing to work. Despite how common it is for coders to rely on incremental IDs, they are one of the laziest ways to build a table.</p> http://stackoverflow.com/questions/640021/whats-the-comma-for-in-this-code-example/640031#640031 0 Answer by TravisO for What's the comma for in this code example? TravisO 2009-03-12T19:02:56Z 2009-03-12T19:02:56Z <p>Well it wouldn't be the first nor the last programming book to have a glaring typo in the code.</p> http://stackoverflow.com/questions/509358/new-website-project-sliverlight-php/511296#511296 1 Answer by TravisO for New Website Project Sliverlight / Php TravisO 2009-02-04T13:17:14Z 2009-02-04T13:17:14Z <p>Creating a website in SilverLight is as bad of an idea as using Flash:</p> <ul> <li><p>Users cant print</p></li> <li><p>Users can't bookmark</p></li> <li><p>Search engines can't index specific "pages"</p></li> </ul> <p>Silverlight exists for the reason of making apps that aren't possible with traditional HTML/JS and a Facebook like app is not one of them.</p> http://stackoverflow.com/questions/503132/lightweight-auto-completing-php-editor/503742#503742 0 Answer by TravisO for Lightweight auto-completing PHP editor? TravisO 2009-02-02T16:06:17Z 2009-02-02T16:06:17Z <p><a href="http://www.mpsoftware.dk/phpdesigner.php" rel="nofollow">phpDesigner</a></p> <p>It doesn't support folding but it supports everything else you listed and much more, such as step-by-step debugging, phpDocumentor support, organizing code into projects, etc.</p> http://stackoverflow.com/questions/484248/visual-studio-appears-to-randomly-adopt-american-keyboard-layout/484343#484343 0 Answer by TravisO for Visual Studio appears to randomly adopt american keyboard layout TravisO 2009-01-27T17:24:14Z 2009-01-27T17:24:14Z <p>In XP if more than 1 keyboard input language is installed (ex: Dvorak and Qwerty) XP will flip flop randomly, particularly back to the OS's default language, and it mostly only happens when using a Microsoft application. And I'm 100% sure I'm not hitting Alt+Shift or any other key combination. This same problem will probably haunt you no matter what keyboard mappings or languages you have.</p> <p>The only fix is to remove the secondary language and only add it when you need it. The other solution is to use Vista, which I notice no longer suffers from this bug (that's been in there since I started using Dvorak back in 2003 and not even XP SP3 fixed it either).</p> http://stackoverflow.com/questions/484261/clients-website-was-attacked-eeek/484285#484285 0 Answer by TravisO for client's website was attacked, eeek! TravisO 2009-01-27T17:11:56Z 2009-01-27T17:11:56Z <p>Are you sure the exploit isn't local on your machine and something local is injecting HTML into your webbrowser, which then causes your brower to execute the JS?</p> <p>Run a reliable local scan using <a href="http://www.safer-networking.org/en/download/" rel="nofollow">Spybot</a> and preferably <a href="http://www.eset.com/download/trial_software.php?product=EAV" rel="nofollow">NOD32</a>. If you don't want to install NOD32 because it might conflict with your current AV, you can use <a href="http://vil.nai.com/VIL/stinger/" rel="nofollow">Stinger</a>, which is an AV scanner that runs as a program and won't interfere or require a reboot.</p> <p>Also run a scan on the web server. I also see people have been posting about this in other forums like <a href="http://www.codingforums.com/showthread.php?t=156286" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/361245/caching-variables-in-the-session-variable-php/361465#361465 2 Answer by TravisO for Caching variables in the $_SESSION variable? [PHP] TravisO 2008-12-11T23:53:18Z 2009-01-23T19:51:41Z <p>If you only want this data available during their session, then yes. If you want it available tomorrow, or 4 hours from now, you need to save it to a database.</p> <p>Technically you can modify the sessions to have a very long lifespan, but realize if they use a different computer, a different browser or flush their cookies they will loose the link to their session, therefore anything serious you should create a type of user account in your application, link the session to their account and save the data in a permeate place.</p> http://stackoverflow.com/questions/474104/what-is-the-best-wpf-ribbon-control-suite/474117#474117 0 Answer by TravisO for What is the Best WPF Ribbon Control Suite? TravisO 2009-01-23T19:19:12Z 2009-01-23T19:19:12Z <p><a href="http://divelements.com/net/" rel="nofollow">SandRibbon</a>, best of all when you buy it, upgraded versions are free and the author constantly updates, improves &amp; fixes (a new release almost weekly) and you can contact him directly, very smart guy and will accept any feedback.</p> <p>He makes a version for web pages, Silverlight and Windows Applications with <a href="http://divelements.com/net/controls/sandribbonsl/livedemofullscreen.htm" rel="nofollow">live demos</a> available.</p> http://stackoverflow.com/questions/472882/coding-standard-wiki/472940#472940 0 Answer by TravisO for Coding Standard Wiki TravisO 2009-01-23T13:50:03Z 2009-01-23T13:50:03Z <p>At the shop I'm at they use a commercial package which is really good: <a href="http://www.atlassian.com/software/confluence/" rel="nofollow">Confluence</a>. What's especially nice is that it integrates with LDAP/AD so that you don't need a seperate login and it's build especially with business use in mind and has lots of free plugins. We couldn't live without it.</p> http://stackoverflow.com/questions/472845/what-is-the-point-in-general-aptitude-tests-in-programming/472876#472876 1 Answer by TravisO for What is the point in general aptitude tests in programming? TravisO 2009-01-23T13:30:22Z 2009-01-23T13:39:01Z <p>These kinds of tests abstract things so far that they do not represent programmer skills. To be honest, be glad you're not going to get a job there, anybody who can't realize these things are garbage is not a place you want to work for.</p> <p>I've seen even worse ones, such as logic brain teasers (such as that one where wolves and sheep need to cross a river in a boat) used on candidates. In my opinion, the only test one should take is an actual programming test... just have me write code.</p> http://stackoverflow.com/questions/471014/code-translation-asp-net-server-transfer-in-php/471160#471160 1 Answer by TravisO for Code Translation: ASP.NET Server.Transfer in PHP TravisO 2009-01-22T22:46:18Z 2009-01-22T22:46:18Z <p>As far as I know PHP doesn't have a real transfer ability, but you could get the exact same effect by using include() or require() like so:</p> <pre><code>require('/index.aspx"); </code></pre> http://stackoverflow.com/questions/469386/php-object-creation-and-memory-usage/470316#470316 0 Answer by TravisO for PHP Object Creation and Memory Usage TravisO 2009-01-22T18:34:26Z 2009-01-22T18:34:26Z <p>PHP's support for objects &amp; classes aren't very efficient in ver 5.2 (nor have they been in the past), but the upcoming 5.3 and 6.0 are a big overhaul in regards to class and object usage and you will see speed and memory improvements in them both.</p> <p>I have also written some bare bone frameworks in PHP 5.2.x and found the memory usage surprising bloated also. Although considering how cheap powerful multi-core CPUs are and ram is, I would say keep coding in a manner that makes the most sense to you and creates a more RAD setup.</p> <p>If using Smarty or Drupal makes your work project finish faster, then use them, or whatever custom stuff you do. Don't let today's poor memory/speed usage turn you off to OOP or frameworks because tomorrow's version has some noteworthy improvements (real world benchmarks have shown a 30% speed improvement on the same code).</p> <p>PS: There's something wrong with your setup, I ran the same code on Apache /w PHP 5.2.8 on Windows XP and got: 60872 61080 61080 61080</p> http://stackoverflow.com/questions/470238/web-application-architecture-future-proofing/470306#470306 2 Answer by TravisO for Web Application Architecture: Future Proofing TravisO 2009-01-22T18:28:11Z 2009-01-22T18:28:11Z <p>One aspect you might have ignored is the zipping speed you are using, it might be in your best interest to use a lighter compression level in your zip process as that can make large improvements in zip time (easily double) which can add up to a lot when you get into the realm of multiple users.</p> <p>Even better if you make the zipping intelligent and use no compression when you're zipping large already compressed files (MP3, ZIP, DOCX, XLSX, JPG, GIF, etc) and using high compression when you have simple text files (TXT, XML, DOC, XLS, etc) as they will zip very quickly even with heavy compression.</p> http://stackoverflow.com/questions/461167/arbitrary-image-resizing-in-php/461691#461691 0 Answer by TravisO for Arbitrary image resizing in PHP TravisO 2009-01-20T15:11:21Z 2009-01-20T15:11:21Z <p>I created the following function to do intelligent resizing of images with respect to ratio and even has a parameter to upscale smaller images (which is critical if your HTML layout screws up when thumbnails are wierd sizes).</p> <pre><code>function ImageIntelligentResize( $imagePath, $maxWidth, $maxHeight, $alwaysUpscale ) { // garbage in, garbage out if ( IsNullOrEmpty($imagePath) || !is_file($imagePath) || IsNullOrEmpty($maxWidth) || IsNullOrEmpty($maxHeight) ) { return array("width"=&gt;"", "height"=&gt;""); } // if our thumbnail size is too big, adjust it via HTML $size = getimagesize($imagePath); $origWidth = $size[0]; $origHeight = $size[1]; // Check if the image we're grabbing is larger than the max width or height or if we always want it resized if ( $alwaysUpscale || $origWidth &gt; $maxWidth || $origHeight &gt; $maxHeight ) { // it is so let's resize the image intelligently // check if our image is landscape or portrait if ( $origWidth &gt; $origHeight ) { // target image is landscape/wide (ex: 4x3) $newWidth = $maxWidth; $ratio = $maxWidth / $origWidth; $newHeight = floor($origHeight * $ratio); // make sure the image wasn't heigher than expected if ($newHeight &gt; $maxHeight) { // it is so limit by the height $newHeight = $maxHeight; $ratio = $maxHeight / $origHeight; $newWidth = floor($origWidth * $ratio); } } else { // target image is portrait/tall (ex: 3x4) $newHeight = $maxHeight; $ratio = $maxHeight / $origHeight; $newWidth = floor($origWidth * $ratio); // make sure the image wasn't wider than expected if ($newWidth &gt; $maxWidth) { // it is so limit by the width $newWidth = $maxWidth; $ratio = $maxWidth / $origWidth; $newHeight = floor($origHeight * $ratio); } } } // it's not, so just use the current height and width else { $newWidth = $origWidth; $newHeight = $origHeight; } return array("width"=&gt;$newWidth, "height"=&gt;$newHeight); } </code></pre> http://stackoverflow.com/questions/460330/php-sessions-for-storing-lots-of-data/461682#461682 0 Answer by TravisO for PHP sessions for storing lots of data? TravisO 2009-01-20T15:08:37Z 2009-01-20T15:08:37Z <p>The best solution here is to have a favorite/bookmark table in your database, have it contain the user_id and the item_id and add a join to your item retrieval logic.</p> <p>Then you don't need to run additional SQL commands nor store anything in session, you only need to check for the existence of these favorite columns.</p> http://stackoverflow.com/questions/441816/what-alternative-user-input-techniques-should-be-adopted-in-programming/441879#441879 0 Answer by TravisO for What alternative user input techniques should be adopted in programming? TravisO 2009-01-14T04:13:21Z 2009-01-19T23:05:05Z <p>Well the whole purpose of some kind of symbolic scenario really just boils down to GUI based development, which is a subject Visual Studio slowly flirts with, but we're still many years away from.</p> <p>Creating some kind of symbol that represents a FOR loop wouldn't speed up development. If you want to code faster just use drag'n'drop code blocks that any decent IDE already supports.</p> http://stackoverflow.com/questions/458740/how-can-i-learn-to-become-a-dba/458758#458758 4 Answer by TravisO for How can I learn to become a DBA? TravisO 2009-01-19T19:08:41Z 2009-01-19T22:46:33Z <p>If you don't get 'on hands' experience, then you aren't worthy of being hired for such a job. Nothing is stopping you from download MS SQL Express, MySQL and/or Oracle's free version and using them. These are all free and you should get experience with multiple kinds of database servers.</p> <p>MyPHPAdmin is fine for basic usage but it isn't a great tool, you need to use more serious tools (MySQL Administrator) and learn how to optimize existing tables, indexes, and rewrite existing queries (especially poorly written joins) before you can consider this a possible career.</p> http://stackoverflow.com/questions/458715/odd-autocomplete-password-remembering-behaviour/458720#458720 0 Answer by TravisO for Odd Autocomplete + Password Remembering Behaviour TravisO 2009-01-19T19:00:09Z 2009-01-19T19:00:09Z <p>Well all browsers are going to pick up the most obvious field names:</p> <ul> <li>firstname </li> <li>lastname </li> <li>username </li> <li>password</li> </ul> <p>And the obvious alternates of those (underscores for spaces, and some shorthand such as "user" and "pass" maybe). It's going to be up to the browser itself and what version of it as to what crazy alternates are supported.</p> http://stackoverflow.com/questions/457054/how-to-deny-foreign-alphabets-in-utf-8-in-php-5-x-symfony/458696#458696 0 Answer by TravisO for How to deny foreign alphabets in utf-8 in PHP 5.x (symfony)? TravisO 2009-01-19T18:52:22Z 2009-01-19T18:52:22Z <p>If you need to pick and choose, you won't be able to avoid using regex and/or creating a list of allowed characters.</p> <p>Yes this is not easy nor quick, but if you want to nit-pick characters, you might need to get specific.</p> http://stackoverflow.com/questions/447996/where-are-the-healthy-job-markets-for-software-devs-globally/448012#448012 5 Answer by TravisO for where are the healthy job markets for software devs (globally)? TravisO 2009-01-15T19:03:18Z 2009-01-15T19:15:15Z <p>I would suggest you work for (directly or indirectly) markets that are unaffected by the economy status, which are:</p> <ul> <li>the health industry </li> <li>sin services (sex, alcohol, gambling) </li> <li>education</li> <li>food &amp; farming</li> </ul> <p>These resources do not see a downturn with market changes; people still need to go to the hospital, people will always drink and gamble (yes despite the economy), people will still go to school and people still need to eat. It's the rest of the things in life people will cut back on (ex: they may not be as quick to go buy a new car, a new computer, the next version of Office). Just don't put yourself in a luxury service and overall your career will be fine.</p> <p>Despite, many articles have been written that explain the IT world hasn't been affected by the market. Although recently some major software companies have cut back on some staff, it should be noted those job roles were working on products/services that have been in the red for many years or nobody were using anymore.</p> <p>Also keep in mind probably the most insecure job to have right now would be where your work is contracted for US military use because the US is about to turn down their efforts in the Middle East.</p> http://stackoverflow.com/questions/443837/how-might-i-obtain-a-snapshot-or-thumbnail-of-a-web-page-using-php/444946#444946 0 Answer by TravisO for How might I obtain a Snapshot or Thumbnail of a web page using PHP? TravisO 2009-01-14T22:28:59Z 2009-01-14T22:28:59Z <p>There's a Firefox extension that converts the webpage you're viewing to an image:</p> <p><a href="http://www.screengrab.org/" rel="nofollow">http://www.screengrab.org/</a></p> <p><a href="http://addons.mozilla.org/en-US/firefox/addon/1146" rel="nofollow">http://addons.mozilla.org/en-US/firefox/addon/1146</a></p> <p>If you're willing to get creative, it might be possible to access this problematically.</p> http://stackoverflow.com/questions/1837309/if-uses-havent-accept-payment-unset-session-after-5-10-min-php Comment by TravisO on if uses haven't accept payment, unset session after 5-10 min. PHP TravisO 2009-12-03T04:37:12Z 2009-12-03T04:37:12Z The question is poorly written but it's a good question as it's a problem most people will run into. http://stackoverflow.com/questions/1837309/if-uses-havent-accept-payment-unset-session-after-5-10-min-php/1837343#1837343 Comment by TravisO on if uses haven't accept payment, unset session after 5-10 min. PHP TravisO 2009-12-03T04:34:00Z 2009-12-03T04:34:00Z Even better, store this value in a PHP session then the extra trip to the database won't be required. http://stackoverflow.com/questions/1833249/when-in-optimization-phase-would-it-be-smart-to-pass-all-array-by-ref/1833282#1833282 Comment by TravisO on When in optimization phase, would it be smart to pass all array by ref? TravisO 2009-12-02T15:46:00Z 2009-12-02T15:46:00Z I agree, minor changes like there are more often snake oil than performance improvements, especially when you talk about compiled languages (yes I know this is PHP). If you are this concerned about memory usage and performance there are more beneficial changes, some of which you won't like such as: not using objects or classes (they're not efficient in PHP 5.x and I haven't ran any benchmarks of PHP 6 yet). http://stackoverflow.com/questions/1428882/eregreplace-for-php-5-3/1428905#1428905 Comment by TravisO on ereg_replace for PHP 5.3 + ? TravisO 2009-09-15T18:39:07Z 2009-09-15T18:39:07Z I totally agre... preg replaced the ereg functions a long time ago http://stackoverflow.com/questions/1011008/debugging-php-code/1011019#1011019 Comment by TravisO on Debugging PHP code TravisO 2009-06-18T21:29:31Z 2009-06-18T21:29:31Z I prefer phpDesigner, everytime I hear some say they've &quot;used every IDE out there&quot; more often than not they never tried phpDesigner, and more than a few times people that I recommended it to, loved it. It has built in support for Xdebug and it's very cheap, like ~$55usd. http://stackoverflow.com/questions/1011008/debugging-php-code/1011013#1011013 Comment by TravisO on Debugging PHP code TravisO 2009-06-18T21:26:34Z 2009-06-18T21:26:34Z While printing out data works, it's not the most efficient way, I'm down voting this because, despite doing it myself at times, it's not a great answer to the problem. http://stackoverflow.com/questions/1011723/php-if-statement-problem/1011752#1011752 Comment by TravisO on PHP If statement problem TravisO 2009-06-18T20:51:58Z 2009-06-18T20:51:58Z I agree, you should always initialize array() in PHP becuase if the code doesn't do what you expect and returns nothing or 1 value, you won't have an array. I've seen this coding mistake many times. http://stackoverflow.com/questions/1011841/check-the-language-of-string-based-on-glyphs-in-php Comment by TravisO on Check the language of string based on glyphs in PHP TravisO 2009-06-18T20:49:40Z 2009-06-18T20:49:40Z I'm guessing you already know this but.. you do realize transliteration is the worst way to translate things, proper multilangual systems (I've worked with many) use professionals to manually translate things and store each language's version of text. The differences are painfully obvious, take Spanish to English, with transliteration the Spanish-&gt; English would read &quot;The house red big&quot; instead of &quot;The big red house&quot;. http://stackoverflow.com/questions/1015041/query-that-works-in-sql-but-not-in-php/1015053#1015053 Comment by TravisO on Query that works in SQL but not in PHP TravisO 2009-06-18T20:43:02Z 2009-06-18T20:43:02Z You don't put quotes around INTs, depending on your database http://stackoverflow.com/questions/1013493/coalesce-function-for-php/1013502#1013502 Comment by TravisO on Coalesce function for PHP? TravisO 2009-06-18T20:38:43Z 2009-06-18T20:38:43Z Save a tiny bit of ram and don't duplicate the args into an array, just do foreach(func_get_args() as $arg) {} http://stackoverflow.com/questions/1014946/is-jsondecode-in-php-guaranteed-to-preserve-ordering-of-elements-when-returning/1014988#1014988 Comment by TravisO on Is json_decode in PHP guaranteed to preserve ordering of elements when returning an array? TravisO 2009-06-18T20:35:16Z 2009-06-18T20:35:16Z Great you test and it works now, but you never know if an update will alter this order, better safe than sorry, set an order if you need an order. http://stackoverflow.com/questions/410183/interested-in-collective-programming-for-the-web-ruby-or-python-or-php/417557#417557 Comment by TravisO on Interested in Collective Programming for the web -- Ruby or Python or PHP? TravisO 2009-06-18T16:14:00Z 2009-06-18T16:14:00Z Admittly, I haven't been to college in 10yrs, so I'm out of touch with what they prefer now-a-days. I assumed Python was simply a Perl replacement. http://stackoverflow.com/questions/270666/non-relational-databases-need-a-recommendation/270683#270683 Comment by TravisO on non relational databases : need a recommendation TravisO 2009-06-18T16:13:01Z 2009-06-18T16:13:01Z Anybody who voted this comment down obviously ignored the part of his question where he says he has 32GB of data. You can't efficiently load that via XML, get real people! http://stackoverflow.com/questions/421960/what-are-the-pros-and-cons-of-filemaker/422022#422022 Comment by TravisO on What Are the Pros and Cons of Filemaker ?? TravisO 2009-06-18T16:10:00Z 2009-06-18T16:10:00Z @Ash - Except that, more likely than not in the Biz world, systems grow and it becomes a multi-user system. Or the system expands into a mess. There's a reason some companies outright ban Access solutions. Yes I'm biased, I see Access and Filemaker akin to using duct tape to fix rust spots on your car. Might seem like a good idea at first, but the more you use it, the flaws really begin to show. But once you're that far down the rabbit hole in Access/Filemaker, it's easier to suffer than it is to re-invent the wheel. These technologies are a pandora's box, use at your own risk. http://stackoverflow.com/questions/849549/detecting-memory-leaks-in-large-php-stacks/849618#849618 Comment by TravisO on Detecting memory leaks in large PHP stacks TravisO 2009-05-11T21:33:26Z 2009-05-11T21:33:26Z Your answer is about as general it could have gotten