Robert Elwell

2,081
reputation
201 views

Registered User

name Robert Elwell
member for 1 year
seen 2 hours ago
website
location Austin, TX
age 25
Web developer for Vertive, Inc., publisher of Offers.com, a discount and coupon code manager.

I'm interested in machine learning, the semantic web, and practical NLP.

Otherwise, give me a cooler and a bonfire and I'm set.
Dec
11
comment How to Sort Arrays in Dictionary?
I suppose my bias is for 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.
Dec
11
answered PHP - How to suggest terms for search, “did you mean…?”
Dec
11
answered How to Sort Arrays in Dictionary?
Dec
6
awarded  Mortarboard
Oct
25
answered How to debug a PHP file that is being called by AJAX?
Oct
25
accepted Lucene search results sort by custom order list (unique to each user)
Oct
14
revised What is MATLAB good for? Why is it so used by universities? When is it better than Python?
grammar fail
Oct
14
accepted view in JIRA to see work breakdown by developer
Oct
6
answered view in JIRA to see work breakdown by developer
Oct
3
answered If i do print_r in PHP, it prints the array in junk.
Sep
29
awarded  Yearling
Sep
9
awarded  Citizen Patrol
Sep
5
answered Ruby on rails: URL from ids to names/titles ect
Sep
4
accepted Can you programmatically detect pluralizations of English words, and derive the singular form?
Sep
4
revised Can you programmatically detect pluralizations of English words, and derive the singular form?
edited tags
Sep
4
answered Can you programmatically detect pluralizations of English words, and derive the singular form?
Sep
3
accepted How do you strip out the domain name from a URL in php?
Sep
2
answered Does practicing logic puzzles help you become a better programmer?
Sep
2
accepted SEO “Information Sites”
Sep
2
awarded  Organizer
Sep
2
comment How can I optimize these queries?
Given the data set, you could just replace $total with 3. Maybe you want to give a more varied example?
Sep
2
answered regex: match string only if not part of a tag
Sep
1
awarded  Nice Answer
Aug
31
accepted Lucene.NET readonly IndexSearcher
Aug
31
accepted Lucene.Net give one field more weigt than another
Aug
29
accepted PHP Based HTML Validator
Aug
28
answered Lucene.NET readonly IndexSearcher
Aug
28
answered Is it acceptable to make external links target=”_blank”?
Aug
28
answered Search form url structure
Aug
28
answered Lucene search results sort by custom order list (unique to each user)
Aug
28
answered PHP Based HTML Validator
Aug
27
answered SEO “Information Sites”
Aug
24
awarded  Disciplined
Aug
24
comment Lucene.Net give one field more weigt than another
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 :)
Aug
24
accepted php based chat
Aug
24
answered php based chat
Aug
24
answered Lucene.Net give one field more weigt than another
Aug
17
answered Validity of Wordpress ‘SEOs’?
Aug
12
comment Webservices in PHP
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.
Aug
10
answered serialize a large array in PHP?
Aug
6
answered Regular Expression to match a word
Aug
6
accepted Determining “Mood” of Textual Phrases through Lexical Analysis
Jul
31
comment PHP access external $var from within a class function
And I knew the name of his class how?
Jul
31
answered PHP access external $var from within a class function
Jul
30
awarded  Scholar
Jul
30
awarded  Student
Jul
29
asked Identifying geographical locations in text
Jul
29
answered Can you help me understand PHP Classes a little better?
Jul
27
answered How to Get Form Field Value, Then Use to “Stuff” URLs Behind Buttons?
Jul
27
comment Problem with Lucene- search not indexing numeric values?
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->find(): Zend_Search_Lucene_Analysis_Analyzer::setDefault(new Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum_CaseInsensitive());