…on my LinkedIn feed (and about 5% of the sense). It’s a buzzword, sure, but there are exciting and transformative possibilities and every company now needs an AI strategy. It’s…
…mostly nature of this matrix leads us to calling these matrices (and their component vectors) sparse. What can you do with this information? Using the mathematical concept of a vector…
Raise your hand if you’ve heard the three “Vs” of Big Data? Velocity – your query/updates are exceptionally fast or large. Your processing the entire twitter feed. Volume – you…
…overall .NET opensource community into maturity. What a committer is actually responsible for There is often a misconception that a committer to an opensource project is there to write code….
…ease to do and low cost for the tools needed, it can be an effective way to communicate with people. The biggest challenge is how to distribute it to people…
…(a la what Geocities was before Yahoo bought it) for free, what it does not do is make it easier to aggregate data from other sources. Screen scraping, feed aggregation,…
…compared to our other wares. The search developers are given a problem to solve – boost the results such that dresses come up higher in the search results. When a…
…example, if I give you a wide estimate like “this will take 3-12 months”, that is a very clear way to communicate that we dont know enough yet to give…
…or possibly loan rate comparisons. But I’m also potentially interested in: The current real estate market & climate How to avoid common home buying mistakes A glossary of the top…
OSC came to me with an interesting task: To do a quick refresh of SmallBizContracting.com. The first thing that I did was to visit the site so that I could…
…to use derived by clustering: !https://img.skitch.com/20120316-kqp2d6q7ejh5xgmkj1fiy3prfg.png! Because we configured facet.mincount=2 in solrconfig.xml for the browse handler, any completely unique clusters are hidden from the list of facetable options, which reduces…
…complete, then execute a second request. Something like this code import requests#Search 1solrResp = requests.get(‘http://mysolr.com/solr/statedecoded/search?q=law’)for doc in solrResp.json()[‘response’][‘docs’]: print doc[‘catch_line’]#Search 2solrResp = requests.get(‘http://mysolr.com/solr/statedecoded/search?q=shoplifting’)for doc in solrResp.json()[‘response’][‘docs’]: print doc[‘catch_line’] (were using…