User Robert Elwell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:51:03Z http://stackoverflow.com/feeds/user/23102 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1888627/php-how-to-suggest-terms-for-search-did-you-mean/1889154#1889154 0 Answer by Robert Elwell for PHP - How to suggest terms for search, "did you mean...?" Robert Elwell 2009-12-11T16:21:54Z 2009-12-11T16:21:54Z <p><a href="http://www.phpclasses.org/browse/package/4859.html" rel="nofollow">http://www.phpclasses.org/browse/package/4859.html</a></p> <p>Here's an off-the-shelf class that's rather easy to implement, which employs minimum edit distance. All you need to do is have a token (not type) list of all the words you want to work with handy. My suggestion is to make sure it's the complete list of words within your search index, and only within your search index. This helps in two ways:</p> <ul> <li>Domain specificity helps avoid misleading probabilities from overtaking your implementation <ul> <li>Ex: "Memoize" may be spell-corrected to "Memorize" for most off-the-shelf, dictionaries, but that's a perfectly good search term for a computer science page.</li> </ul></li> <li>Proper nouns that are available within your search index are now accounted for. <ul> <li>Ex: If you're Dell, and someone searches for 'inspiran', there's absolutely no chance the spell-correct function will know you mean 'inspiron'. It will probably spell-correct to 'inspiring' or something more common, and, again, less domain-specific.</li> </ul></li> </ul> http://stackoverflow.com/questions/1888910/how-to-sort-arrays-in-dictionary/1889092#1889092 0 Answer by Robert Elwell for How to Sort Arrays in Dictionary? Robert Elwell 2009-12-11T16:11:32Z 2009-12-11T16:11:32Z <p>Wim's solution is good, but I'd say that you should probably go the extra mile and push this work off onto a database, rather than relying on Python. Python interfaces well with most types of databases, where much of what you're exploring is already a solved problem.</p> <p>For example, instead of worrying about shifting your dictionaries to various other data types in order to properly sort them, you can simply get all the data for each pertinent entry pre-sorted based on the criteria of your query. There goes the need for convoluted sorting and resorting right there. </p> <p>While dictionaries are tempting to use, because they give the illusion of database-like abilities to access data based on its attributes, I still think they stumble quite a bit with respect to implementation. I don't really have any numbers to throw at you, but just from personal experience, anything you do on Python when it comes to manipulating large amounts of data, you can do much faster and more efficient both in code and computation with something like MySQL.</p> <p>I'm not sure what you have planned as far as the structure of your data goes, but along with adding data, changing its structure is a lot easier using a database, too. </p> http://stackoverflow.com/questions/1620784/how-to-debug-a-php-file-that-is-being-called-by-ajax/1620970#1620970 1 Answer by Robert Elwell for How to debug a PHP file that is being called by AJAX? Robert Elwell 2009-10-25T13:50:34Z 2009-10-25T13:50:34Z <p>I find that when working with an action being called via AJAX in ZF, it's always a good idea to make sure that the action works <em>without</em> AJAX first. That is, make your first iteration of developing the feature result in going to a new page to represent the action you're making. </p> <p>Once you know that your PHP code works, you can then begin to worry about making the AJAX stuff work. In my opinion, at least, being able to output Zend_Debug::dump() on variables when you view another page is a lot easier for initial development. </p> <p>AJAX by design creates a layer of opacity which can makes it difficult to do this. It gets even harder if you're interfacing with, for instance, a jQuery plugin that requires formatted data that you're just not getting for some reason. So again, PHP first, AJAX second. It takes roughly two seconds in ZF to go from a PHP to an AJAX call, and vice versa.</p> http://stackoverflow.com/questions/179904/what-is-matlab-good-for-why-is-it-so-used-by-universities-when-is-it-better-tha/180012#180012 3 Answer by Robert Elwell for What is MATLAB good for? Why is it so used by universities? When is it better than Python? Robert Elwell 2008-10-07T19:40:25Z 2009-10-14T16:07:18Z <p>One reason Matlab is popular with universities is the same reason a lot of things are popular with universities: there's a lot of professors familiar with it, and it's fairly robust.</p> <p>I've spoken to a lot of folks who are especially interested in Matlab's nascent ability to tap into the GPU instead of working serially. Having used Python in grad school, I kind of wish I had the licks to work with Matlab in that case. It sure would make vector space calculations a breeze.</p> http://stackoverflow.com/questions/1526172/view-in-jira-to-see-work-breakdown-by-developer/1526212#1526212 1 Answer by Robert Elwell for view in JIRA to see work breakdown by developer Robert Elwell 2009-10-06T15:09:40Z 2009-10-06T15:09:40Z <p>For a group, by release, try the Version Workload Report function.</p> <p>For a specific individual, try the user workload report.</p> <p>You can get to either of these by clicking "Browse Project" from the dashboard.</p> http://stackoverflow.com/questions/1515003/if-i-do-printr-in-php-it-prints-the-array-in-junk/1515088#1515088 1 Answer by Robert Elwell for If i do print_r in PHP, it prints the array in junk. Robert Elwell 2009-10-03T23:06:58Z 2009-10-03T23:06:58Z <p>Try taking a look at <a href="http://framework.zend.com/manual/en/zend.debug.html" rel="nofollow">Zend_Debug</a>, a relatively plug-and-play module from the Zend Framework which does an excellent job at effectively dumping complex variables.</p> <p>Usage:</p> <pre><code>$my_var = new StdObject(); // or whatever Zend_Debug::dump($my_var); die; // optional, prevents routing, forwarding away, etc. </code></pre> http://stackoverflow.com/questions/1382174/ruby-on-rails-url-from-ids-to-names-titles-ect/1382219#1382219 0 Answer by Robert Elwell for Ruby on rails: URL from ids to names/titles ect Robert Elwell 2009-09-05T01:59:49Z 2009-09-05T01:59:49Z <p>Write a <a href="http://api.rubyonrails.org/classes/ActionController/Routing.html" rel="nofollow">custom route</a>.</p> http://stackoverflow.com/questions/1377020/can-you-programmatically-detect-pluralizations-of-english-words-and-derive-the-s/1377042#1377042 7 Answer by Robert Elwell for Can you programmatically detect pluralizations of English words, and derive the singular form? Robert Elwell 2009-09-04T03:17:10Z 2009-09-04T03:17:10Z <p>It really depends on what you mean by 'programmatically'. Part of English works on easy to understand rules, and part doesn't. It has to do mainly with frequency. For a brief overview, you can read Pinker's "Words and Rules", but do yourself a favor and don't take the whole generative theory of linguistics entirely to heart. There's a lot more empiricism there than that school of thought really lends to the pursuit.</p> <p>A lot of English can be statistically lemmatized. By the way, stemming or lemmatization is the term you're looking for. One of the most effective lemmatizers which work off of statistical rules bootstrapped with frequency-based exceptions is the <a href="http://www.informatics.susx.ac.uk/research/groups/nlp/carroll/morph.html" rel="nofollow">Morpha Lemmatizer</a>. You can give this a shot if you have a project that requires this type of simplification of strings which represent specific terms in English.</p> <p>There are even more naive approaches that accomplish much with respect to normalizing related terms. Take a look at the <a href="http://tartarus.org/~martin/PorterStemmer/" rel="nofollow">Porter Stemmer</a>, which is effective enough to cluster together <em>most</em> terms in English.</p> http://stackoverflow.com/questions/1369544/does-practicing-logic-puzzles-help-you-become-a-better-programmer/1369549#1369549 4 Answer by Robert Elwell for Does practicing logic puzzles help you become a better programmer? Robert Elwell 2009-09-02T19:04:39Z 2009-09-02T19:04:39Z <p>That's kind of the mindset behind <a href="http://www.projecteuler.net" rel="nofollow">Project Euler</a>.</p> http://stackoverflow.com/questions/1366481/regex-match-string-only-if-not-part-of-a-tag/1367710#1367710 0 Answer by Robert Elwell for regex: match string only if not part of a tag Robert Elwell 2009-09-02T13:33:12Z 2009-09-02T13:33:12Z <p>What you're looking for is a DOM parser. That will strip out all the HTML and provide you the plain text of the page you're examining, which you can then match on. Not sure what your use case is, but I'm not assuming you're not manipulating the DOM, or else you'd be using JavaScript. </p> <p>If you're just extracting information, parse the page using something like <a href="http://simplehtmldom.sourceforge.net/" rel="nofollow">The Simple HTML DOM Parser</a>, and then match against the plain text you can get from the parsed object.</p> http://stackoverflow.com/questions/1348629/lucene-net-readonly-indexsearcher/1349585#1349585 1 Answer by Robert Elwell for Lucene.NET readonly IndexSearcher Robert Elwell 2009-08-28T21:56:01Z 2009-08-28T21:56:01Z <p>If that's all you have, you should worry about performance later. Here are a couple of tips to get you going with Lucene before you resort to fiddling with index permissions:</p> <ul> <li><strong>Lucene is <em>not</em> a database;</strong> it's an index. All fields other than unindexed get minimized in a very effective way. When a search is made, the query is also minimized such that it will match those unique hashes of the data. Anything that you're not storing to be searched should be something you're going to use to recover information <em>from</em> a DB. This can decrease your index size (and thus search speed) by an order of magnitude.</li> <li><strong>Stem everything --</strong> use somethign even as simplistic as the <a href="http://alski.net/post/2007/09/16/0a-Porter-Stemmer-2-C-implementation0a-0a-.aspx" rel="nofollow">Porter Stemmer</a> to reduce the length of the words in your text. When you make a query, stem that, too. While this has a small impact on the size of your index and the speed of querying, this also increases your search robustness, which is just as important.</li> <li><strong>Stopwords? Who needs 'em?</strong> Seriously, find yourself a good list of stopwords and remove them from any field you plan on indexing. The most frequent terms you'll find in any English text are absolutely worthless with respect to information retrieval. That being said, if you're storing them, your database is probably very needlessly big. Imagine taking a walk across equally sized letters written on the sidewalk. How long would "The Good, The Bad, and the Ugly" take compared to "Good, Bad, Ugly"?</li> </ul> <p>Make sure that these three major aspects are addressed first, and you'll likely not need to worry that much about performance. Worrying about performance before these are addressed would be one of those notoriously evil "premature optimizations".</p> http://stackoverflow.com/questions/1349048/is-it-acceptable-to-make-external-links-targetblank/1349546#1349546 0 Answer by Robert Elwell for Is it acceptable to make external links target="_blank"? Robert Elwell 2009-08-28T21:44:49Z 2009-08-28T21:44:49Z <p>What people hate is opening links in a new window and not knowing that it's coming. For each external link, go ahead and use target="_blank", but add an icon that suggests you're opening a new window. Wikipedia's double square icon is a good example of this, so you can just grab that from them and capitalize on the literacy that users already have there.</p> <p>What's great about a 'new window' icon is that users then have the option of opening in a new tab instead, which isn't so obtrusive. I'd also say that many of those vehemently arguing <em>against</em> your proposed approach are looking at it strictly from an aesthetic/usability standpoint, and not in terms of business requirements or the functionality of your own application. </p> <p>If you think that you or your users stand to gain from keeping users on your site and opening external links in a new window, you get to make the final call on that. Just be respectful about it.</p> http://stackoverflow.com/questions/1349153/search-form-url-structure/1349522#1349522 0 Answer by Robert Elwell for Search form url structure Robert Elwell 2009-08-28T21:39:26Z 2009-08-28T21:39:26Z <p>If your values are finite and static, assign a number to them.</p> <p>If the combination of all possible search parameters is finite, there's also the option to hash the whole thing and use that hash as your restful URL parameter.</p> http://stackoverflow.com/questions/1349419/lucene-search-results-sort-by-custom-order-list-unique-to-each-user/1349496#1349496 1 Answer by Robert Elwell for Lucene search results sort by custom order list (unique to each user) Robert Elwell 2009-08-28T21:35:21Z 2009-08-28T21:35:21Z <p>You'll definitely want to store the id of item in each document object when building your index. There's a few ways to do the next step, but an easy one would be take the prioritized items and add them to your search query, something like this for each special item: </p> <pre><code>"OR item_id=%d+X" </code></pre> <p>where X is the amount of boost you'd like to use. You'll probably need to empirically tweak this number to make sure that just being "upvoted" doesn't put it to the top of a list searching for something totally unrelated.</p> <p>Doing it this way will at least prevent you from a lot of annoying postprocessing steps that would require you to iterate over the whole result set -- hopefully the proper sorting will be there right from querying the index.</p> http://stackoverflow.com/questions/1349372/php-based-html-validator/1349471#1349471 1 Answer by Robert Elwell for PHP Based HTML Validator Robert Elwell 2009-08-28T21:29:58Z 2009-08-28T21:29:58Z <p>There's no need to reinvent the wheel on this one. There's already a <a href="http://pear.php.net/package/Services_W3C_HTMLValidator" rel="nofollow">PEAR library that interfaces with the W3C HTML Validator API</a>. They're willing to do the work for you, so why not let them? :)</p> http://stackoverflow.com/questions/1341674/seo-information-sites/1342335#1342335 4 Answer by Robert Elwell for SEO "Information Sites" Robert Elwell 2009-08-27T16:50:56Z 2009-08-27T16:50:56Z <p>They're just trying to use a novel term to differentiate themselves. They do mean gateway pages, and from the sound of it, they're likely parked domains and bothersome things of that nature. There is a very short list of rules you actually need to worry about when it comes to SEO:</p> <ul> <li><strong>One concept, one page:</strong> Be specific with your keywords, and make sure they're terms people are actually searching for</li> <li><strong>Title, H1, H2:</strong> Make sure the few keywords per page you're optimizing for are present in these contexts on your page</li> <li><strong>Inbound internal links:</strong> Make sure your site has a good information architecture with pages that link to semantically similar pages. For instance, an eCommerce site specializing in office supplies might have the following breadcrumb trail, with each higher level linking to subcategories within it: "Paper >> Printer Paper >> Color Printer Paper" (note the increase of words per keyword as we go further down the 'long tail')</li> <li><strong>Be interesting:</strong> Provide information other sites don't have. Create useful editorial. Allow interesting discourse between users. Make sure people have a reason to link to your pages. A lot of people are familiar with linking now, and aren't just going to anchor 'this cool site'; some of them might even give you off-site, keyword-directed inbound links, just because the page is relevant to that term. Either way, an incoming link is good, but do everything you can not to get caught up in buying them.</li> <li><strong>Be honest:</strong> This includes both to search engines and people. You want to rank organically, not artificially. There's a difference between writing content with good information retrieval in mind and gaming the system. Let your conscience be your guide on this one. If you have to pay for anything, you're probably not being honest.</li> </ul> http://stackoverflow.com/questions/1324251/php-based-chat/1324318#1324318 2 Answer by Robert Elwell for php based chat Robert Elwell 2009-08-24T19:41:11Z 2009-08-24T19:41:11Z <p>Generally, chat rooms refer to live applications that don't require the user to make an entirely new page request. Because PHP is processed on the server side, we generally refer to PHP-based communication solutions as forums, because they require posting, rather than immediate updates. </p> <p>With his link, marcgg is suggesting the use of an AJAX plugin on top of one of the preexisting open-source PHP-based forum back-ends, such as PhpBB or vBulletin. The concept of implementation is essentially them same: when a user makes a chat message, it gets stored to a database table. What the plugin does is allow a user to stay on a single page while a separate component within the browser makes requests via JavaScript to get updates to the thread (or in this case, 'room') that they are participating in.</p> http://stackoverflow.com/questions/1323860/lucene-net-give-one-field-more-weigt-than-another/1324197#1324197 1 Answer by Robert Elwell for Lucene.Net give one field more weigt than another Robert Elwell 2009-08-24T19:19:27Z 2009-08-24T19:19:27Z <p>Along with boosting during search, you can also boost fields differently during indexing. This means that a general search for a term that could show up in either field would still give a better score for those that match your preferred field without overtly stating where you're looking for the term.</p> http://stackoverflow.com/questions/1290096/validity-of-wordpress-seos/1290389#1290389 0 Answer by Robert Elwell for Validity of Wordpress 'SEOs'? Robert Elwell 2009-08-17T20:56:16Z 2009-08-17T20:56:16Z <p>You're spot on in your worries and many of your preconceptions. SEO websites like Sphinn.com and seomoz.org are full of slick people who make the concept of blogging purely for marketing sound easy and accessible, to those with the time. There's plenty of walkthroughs out there that can make even the most amateur marketing person an SEO Wordpress extraordinaire. </p> <p>The truth is, if your site doesn't need a blog, you shouldn't get one. Just filling it with keyword-directed links to other pages on your site is the antithesis of the 'content is king' mentality among the more scrupulous SEO experts. If someone from the SEO industry is offering to set up Wordpress for you, especially an independent contractor or a small agency, I would suggest you politely refuse, and maybe request they not contact you for anything in the future.</p> <p>I have firsthand experience with the kinds of development teams at small SEO firms that oversee the implementation of superfluous Wordpress blogs, and the risk just doesn't outweigh the benefit. You not only risk your company's reputation with Google and with your clients as abject spammers if the content isn't good, but you also risk the entire security of your web platform. New security bugs in Wordpress come out rather regularly, and they're the kind that can damage your reputation and your website at large. In my opinion, it seems like the platform itself just isn't worth the hassle of dealing with for any real business use. Leaving it to an agency or contractor generally means risking not being their top priority when a big security patch comes out. That's the most dangerous time not to have the updated version. </p> <p>If having a blog is worth it to you, I suggest hiring an at least semi-literate programmer who can both maintain the blog platform and write it. Having a passing understanding of how SEO works can help a bit, but there are deeper benefits from providing useful blog content. Implementing a 'blog' part of a website is easy enough that any competent programmer can roll their own -- so much so, it's often part of the interview process for web development positions. Starting from scratch means that they can do it in a fashion which jives more with your own security policies. You can also specify your own features and general look-and-feel in a much easier way. Not having to filter an editor's writing through a WYSIWYG editor is nice, too.</p> http://stackoverflow.com/questions/1256949/serialize-a-large-array-in-php/1257534#1257534 0 Answer by Robert Elwell for serialize a large array in PHP? Robert Elwell 2009-08-10T22:17:16Z 2009-08-10T22:17:16Z <p>Your use case sounds like you're better off using a database to do that rather than relying solely on PHP's available resources. The advantages to using something like MySQL instead is that it's specifically engineered with memory management in mind for such things as storage and lookup. </p> <p>It's really no fun constantly serializing and unserializing data just to update or change a few pieces of information.</p> http://stackoverflow.com/questions/1240504/regular-expression-to-match-a-word/1240585#1240585 0 Answer by Robert Elwell for Regular Expression to match a word Robert Elwell 2009-08-06T18:22:08Z 2009-08-06T18:22:08Z <p>I'd advise against a simple regular expression approach to this problem. There are too many words that are substrings of other unrelated words, and you'll probably drive yourself crazy trying to overadapt the simpler solutions already provided.</p> <p>You'll want at least a naive stemming algorithm (try the Porter stemmer; there's available, free code in most languages) to process text first. Keep this processed text and the preprocessed text in two separate space-split arrays. Make sure each non-alphabetical character also gets its own index in this array. Whatever list of words you're filtering, stem them also. </p> <p>The next step would be to find the array indices which match to your list of stemmed 'stop' words. Remove those from the unprocessed array, and then rejoin on spaces.</p> <p>This is only slightly more complicated, but will be much more reliable an approach. If you've got any doubts on the value of a more NLP-oriented approach, you might want to do some research into <a href="http://thedailywtf.com/Articles/The-Clbuttic-Mistake-.aspx" rel="nofollow">clbuttic mistakes</a>.</p> http://stackoverflow.com/questions/1213974/php-access-external-var-from-within-a-class-function/1214010#1214010 2 Answer by Robert Elwell for PHP access external $var from within a class function Robert Elwell 2009-07-31T18:06:39Z 2009-07-31T18:06:39Z <p>Why don't you just pass this variable during __construct() and make what the object does during construction conditional on the truth value of that variable?</p> http://stackoverflow.com/questions/1200980/identifying-geographical-locations-in-text 1 Identifying geographical locations in text Robert Elwell 2009-07-29T15:08:35Z 2009-07-31T00:09:05Z <p>What kind of work has been done to determine whether a specific string pertains to a geographical location? For example:</p> <pre><code>'troy, ny' 'austin, texas' 'hotels in las vegas, nv' </code></pre> <p>I guess what I'm sort of expecting is a statistical approach that gives a degree of confidence that the first two are locations. The last one would probably require a heuristic which grabs "%s, %s" and then uses the same technique. I'm specifically looking for approaches that don't rely too heavily on the proposition 'in', seeing as it's not an entirely unambiguous or consistently available indicator of location.</p> <p>Can anyone point me to approaches, papers, or existing utilities? Thanks!</p> http://stackoverflow.com/questions/1197616/can-you-help-me-understand-php-classes-a-little-better/1197665#1197665 0 Answer by Robert Elwell for Can you help me understand PHP Classes a little better? Robert Elwell 2009-07-29T01:37:41Z 2009-07-29T01:37:41Z <p>As a jokey anecdote, I once described PHP scripting without classes as like soap operas -- flat, and difficult to reuse in real-life situations. On the other hand, OO-PHP is a bit more like real drama; objects are dynamic, and can be multi-faceted, and while there tends to be variation between their instantiations, they are often based on fundamental dramatic archetypes. </p> <p>Basically what I'm saying is that it's easier to repurpose and reuse object-oriented code, which makes implementing open-source frameworks and utilities easier. I find pure scripting in PHP to be extremely difficult to maintain and reuse, and tends to allow for bad security holes that there are a lot of good, preexisting object-oriented utilities for.</p> http://stackoverflow.com/questions/1190810/how-to-get-form-field-value-then-use-to-stuff-urls-behind-buttons/1190834#1190834 0 Answer by Robert Elwell for How to Get Form Field Value, Then Use to "Stuff" URLs Behind Buttons? Robert Elwell 2009-07-27T21:48:18Z 2009-07-27T21:48:18Z <p>Why not cut out the middle man and just provide a link to the actual page onClick, so long as there's something in the text field? Yeah, you'll have to use javascript, but it'll make things faster and it will utilize more of the work that's already been done on the part of the W3C. Their URL scheme seems to be pretty easy to manipulate. Here's an example from the CSS validator.</p> <p><a href="http://jigsaw.w3.org/css-validator/validator?uri=" rel="nofollow">http://jigsaw.w3.org/css-validator/validator?uri=</a>[ENTER YOUR URL-ENCODED URL HERE]&amp;profile=css21&amp;usermedium=all&amp;warning=1&amp;lang=en</p> http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188666#1188666 2 Answer by Robert Elwell for php function to split an array at each blank line? Robert Elwell 2009-07-27T14:57:54Z 2009-07-27T14:57:54Z <p>I think what you're looking for is <a href="http://us.php.net/preg-split" rel="nofollow">preg_split</a>. If you just split on a carriage return, you might miss lines that just have spaces or tabs.</p> <pre><code>$output = array(...);//what you just posted $string_output = implode('', $output); $array_with_only_populated_lines = preg_split('`\n\W+`', $string_output); </code></pre> http://stackoverflow.com/questions/1013190/how-is-morpha-lemmatizer-used/1188534#1188534 0 Answer by Robert Elwell for How is Morpha Lemmatizer Used? Robert Elwell 2009-07-27T14:34:56Z 2009-07-27T14:34:56Z <p><a href="http://www.informatics.susx.ac.uk/research/groups/nlp/carroll/papers/minnen.pdf" rel="nofollow">Minnen et al's paper on Morpha</a> might be a good place to start to understand how the lemmatizer works. It's been a while since I'd had any experience with it myself, but I'm pretty sure it works just as an off-the-shelf binary.</p> <p>Depending on performance, you may need to POS-tag your terms beforehand, but that's about the same issue you'll have querying WordNet, so it's starting to sound like you'll need to climb that hill either way. </p> <p>You would basically use the root form when querying the Wordnet DB, but if you're using it just for that, I'd urge you to try the Morphy stemmer, which was specifically designed for Wordnet, and will reliably match to the root forms listed therein.</p> http://stackoverflow.com/questions/1188279/cli-grammar-checker-for-determining-tense/1188499#1188499 1 Answer by Robert Elwell for cli grammar checker for determining tense Robert Elwell 2009-07-27T14:28:51Z 2009-07-27T14:28:51Z <p>You might be able to use <a href="http://www.informatics.susx.ac.uk/research/groups/nlp/carroll/morph.html" rel="nofollow">morpha</a> for this purpose. Morpha is a lemmatizer that splits endings from base words, and then changes the base word to its uninflected form, which is conveniently the same as the underspecified third person singular in English.</p> <p>As an example, the input 'added' would result in 'add+ed', meaning that you can even just prompt your exit command if the first word of the commit string has a plus sign in it, if you're looking for the most naive approach possible.</p> http://stackoverflow.com/questions/1161718/search-engine-optimisation-and-multiple-sub-domains-per-html-page/1161974#1161974 2 Answer by Robert Elwell for Search Engine Optimisation and multiple sub-domains per html page Robert Elwell 2009-07-21T21:56:58Z 2009-07-21T21:56:58Z <p>If you're just using the subdomain to source images, there's really nothing you should be worrying about. It's not as though you're trying to rank images for keywords, but rather the pages those images happen to be on.</p> <p>Maybe a good anecdote to explain why this is orthagonal to SEO is the fact that you can, for instance, source a link to the jQuery API on your page from Google Code without expecting any loss of PageRank. In fact, Google hosts that API in order to make it faster. If you're doing something to simply optimize the loading of objects within the DOM structure, then there's little to worry about as far as search optimization goes. </p> <p>You're much better off worrying about H1, H2, title, meta description, meta keywords, and having really useful content that include the keywords you're trying to optimize for. Other than that, keyword-directed links to the page both externally and internally can help. The impact of most other things is fairly debatable.</p> http://stackoverflow.com/questions/1144394/php-retrieve-content-from-page/1144457#1144457 1 Answer by Robert Elwell for PHP-Retrieve content from page Robert Elwell 2009-07-17T16:44:45Z 2009-07-17T16:44:45Z <p>For getting the data, there are three levels of difficulty:</p> <pre><code>file_get_contents($url); //easy </code></pre> <p>Unfortunately a lot of sites aren't very responsive to the proper user agent. You've got two options, here. One's a little harder than the other. Intermediate is <a href="http://framework.zend.com/manual/en/zend.http.html#zend.http.client.usage" rel="nofollow">Zend HTTP Client</a></p> <pre><code>$client = Zend_Http_Client(); //make sure to include Zend_Http, etc. $client-&gt;setConfig($params); // params will include proper user agent $client-&gt;setUri($aUrl); $html = $client-&gt;request()-&gt;getBody(); </code></pre> <p>Option three, which you might not even want to consider unless you really want to keep it more scripting than object-oriented, is to explore PHP's <a href="http://us3.php.net/curl" rel="nofollow">cURL functionality</a></p> <p>There are a few PHP-native ways to access HTML data via a DOM object, but my favorite is the <a href="http://simplehtmldom.sourceforge.net/" rel="nofollow">Simple HTML DOM Parser</a>. It's very similar to jQuery/CSS style DOM navigation.</p> <pre><code>$domObject = new Simple_HTML_Dom($html); foreach ($domobject-&gt;find('div#theDataYouWant p') as $sentence) { echo "&lt;h3&gt;{$sentence}&lt;/h3&gt;"; } </code></pre> http://stackoverflow.com/questions/1888910/how-to-sort-arrays-in-dictionary/1889092#1889092 Comment by Robert Elwell on How to Sort Arrays in Dictionary? Robert Elwell 2009-12-11T18:15:14Z 2009-12-11T18:15:14Z I suppose my bias is <i>for</i> concurrent usage. Given the aforementioned use case, it wouldn't make sense not to at least plan for extensibility and concurrent usage in the future. Why else would you make such a program for a single individual on a single machine? This sounds like a component to a web application. http://stackoverflow.com/questions/1367667/how-can-i-optimize-these-queries Comment by Robert Elwell on How can I optimize these queries? Robert Elwell 2009-09-02T13:36:09Z 2009-09-02T13:36:09Z Given the data set, you could just replace $total with 3. Maybe you want to give a more varied example? http://stackoverflow.com/questions/1323860/lucene-net-give-one-field-more-weigt-than-another/1324197#1324197 Comment by Robert Elwell on Lucene.Net give one field more weigt than another Robert Elwell 2009-08-24T21:48:26Z 2009-08-24T21:48:26Z I'm more of a Zend Search Lucene guy, but something tells me if you look in the .NET API, you'll find the way to do this. It's a property of the field object, which is then added to the document object. It's probably something as simple as field.setBoost(aNumber) or whatever. Also, if this is what you're looking for, make sure to accept and upvote :) http://stackoverflow.com/questions/1267279/webservices-in-php Comment by Robert Elwell on Webservices in PHP Robert Elwell 2009-08-12T16:38:27Z 2009-08-12T16:38:27Z There are a lot of ways to do this. You might want to include a bit more information in your question -- maybe even the specific webservice, as they can have their own idiosyncracies, too. http://stackoverflow.com/questions/1213974/php-access-external-var-from-within-a-class-function/1214010#1214010 Comment by Robert Elwell on PHP access external $var from within a class function Robert Elwell 2009-07-31T18:26:53Z 2009-07-31T18:26:53Z And I knew the name of his class how? http://stackoverflow.com/questions/654898/problem-with-lucene-search-not-indexing-numeric-values/655091#655091 Comment by Robert Elwell on Problem with Lucene- search not indexing numeric values? Robert Elwell 2009-07-27T19:08:51Z 2009-07-27T19:08:51Z Note that newer versions of Zend Search Lucene include an alphanumeric analyzer; you just have to set it as default. Make sure to include this near the beginning of your indexing script as well as before you run $index-&gt;find(): Zend_Search_Lucene_Analysis_Analyzer::setDefault(new Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum_CaseInsensitive()); http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188718#1188718 Comment by Robert Elwell on php function to split an array at each blank line? Robert Elwell 2009-07-27T18:33:34Z 2009-07-27T18:33:34Z might solve the trick, but is definitely the least efficient. Wesley had a really good point about just using file_get_contents(). http://stackoverflow.com/questions/1188616/php-function-to-split-an-array-at-each-blank-line/1188666#1188666 Comment by Robert Elwell on php function to split an array at each blank line? Robert Elwell 2009-07-27T15:01:31Z 2009-07-27T15:01:31Z note the actual regex posted above only worked in the dummy example I toyed with before posting. you may need to make a few tweaks to it if it doesn't suite your purposes. http://stackoverflow.com/questions/1138524/seo-paging-question/1138539#1138539 Comment by Robert Elwell on SEO Paging Question Robert Elwell 2009-07-16T15:54:13Z 2009-07-16T15:54:13Z @Gary: Seems to be RESTful enough for the purpose being considered. When deciding between #1 and #2, you also have to remember that GET variables can cause duplicate content issues with search engines, thus weakening your ranking. #2 is better because you're avoiding confusion between /news/ and any variants that require variables to change the content. It also reduces the need to declare what the canonical version of the page is, because /news/, news/2/, news/3/, etc are all unique URL destinations without even considering the query string. http://stackoverflow.com/questions/1053961/looking-for-any-free-tagged-english-corpuses/1053989#1053989 Comment by Robert Elwell on Looking for any free tagged english corpus(es) Robert Elwell 2009-06-28T18:23:37Z 2009-06-28T18:23:37Z Don't let that obstacle get in the way of your project. Definitely use what's freely available but can't be licensed for commercial use for your personal research. If you've got something that's a compelling enough business model, do what other commercial NLP projects do: make your own corpus. It's a great opportunity to get a cheap proprietary resource you can have greater control over. It's also a great opportunity for interns and cheap part-time workers in the area of computational linguistics who desperately need CV/resume experience. http://stackoverflow.com/questions/1053849/why-print-statement-is-not-pythonic Comment by Robert Elwell on Why print statement is not pythonic? Robert Elwell 2009-06-27T23:39:07Z 2009-06-27T23:39:07Z I'm not sure SO is the place for a philosophical discussion about what makes Python Python. It's better suited to be answered by those who shared an interested in actively shaping the direction of its development to version 3. You can find them here: <a href="http://python.org/dev/" rel="nofollow">python.org/dev</a> http://stackoverflow.com/questions/831153/coding-is-a-sport-and-google-knows-it Comment by Robert Elwell on Coding is a sport and Google knows it. Robert Elwell 2009-05-06T19:37:22Z 2009-05-06T19:37:22Z Oh, I get it. You're trying to make us go to your website. Unfortunately, you didn't answer in the form of a question. http://stackoverflow.com/questions/717541/parsing-html-in-python/717658#717658 Comment by Robert Elwell on Parsing HTML in Python Robert Elwell 2009-04-04T19:33:23Z 2009-04-04T19:33:23Z Beautiful Soup has a lot of problems that haven't been fixed yet for Python 3. http://stackoverflow.com/questions/635844/php-how-to-grab-an-url-out-of-a-chunk-of-text Comment by Robert Elwell on PHP: how to grab an URL out of a chunk of text? Robert Elwell 2009-03-11T18:55:47Z 2009-03-11T18:55:47Z Yeah maybe you should ask Joel :) http://stackoverflow.com/questions/453975/php-regex-logic-for-prepending-table-names/454032#454032 Comment by Robert Elwell on PHP/RegEx - Logic for prepending table names Robert Elwell 2009-01-18T04:11:33Z 2009-01-18T04:11:33Z &quot;Make a thing that can make one thing or the other thing for you so you don't screw it up yourself&quot;. Better?