PageRenderTime 72ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/_posts/2014-11-28-thinking-without-portals-searchable-data.md

https://github.com/Floppy/floppy.github.io
Markdown | 32 lines | 23 code | 9 blank | 0 comment | 0 complexity | bc1216f12a93083e2e49aec2cf47d4c2 MD5 | raw file
  1. ---
  2. title: 'Thinking without portals: searchable data'
  3. attribution:
  4. copyrightHolder:
  5. name: Open Data Institute
  6. url: https://theodi.org
  7. license:
  8. name: CC BY-SA 2.0 UK
  9. url: https://creativecommons.org/licenses/by-sa/2.0/uk/deed.en_GB
  10. categories:
  11. - odi
  12. - data
  13. ---
  14. Ah, the mid-nineties; good times. Personally, I spent them drinking in student bars, listening to [BritPop](https://www.youtube.com/watch?v=XV8CxSO5imQ), and exploring the early web as it grew from just a few sites into something that would change the world.
  15. There was a lot out there, but it was hard to find, so a load of companies were stepping in to try to catalogue it. [Yahoo!](http://yahoo.com) and [Lycos](http://lycos.com) launched in 1995 with their portals, so we had a whole _load_ of stuff to explore instead of going to lectures. Fantastic. But then, the web grew, and things changed. [HotBot](http://hotbot.com) and [Altavista](https://en.wikipedia.org/wiki/AltaVista) came along, and changed the game from cataloguing to search. Not long after that, along came [Google](http://google.com), and the stage was set. Portals were dead, because the web was bigger than anyone could keep up with.
  16. Now, with the web of data, were on a similar journey 20 years later. Weve got our sites and weve built our portals, but we dont yet have the rich, organic web that were used to with documents. As the amount of data on the web expands, as data publishing gets more and more mainstream, were going to need to do better. Were going to need search.
  17. At the ODI, we think a lot about the future of the web of data, and we also get time to experiment, so a few weeks ago I spent some of my spare time playing around to see what organic data search might be like. I use [DuckDuckGo](https://duckduckgo.com) as my primary search engine these days, and it has some great [features](https://duckduckgo.com/tour), like instant answers that pop up to show image or video results, amongst many other things. Wouldn’t it be great to see that for data? Imagine searching for some information, and at the top, a load of open datasets pop up with exactly the answer you want.
  18. Well, as some of DuckDuckGo is open source, we can have a go ourselves. You can create your own plugins using their really well put together [development platform](http://duckduckhack.com/). Creating the plugins themselves is also pretty simple, and there’s lots of [documentation](https://duck.co/duckduckhack/ddh-intro).
  19. Question is, how do we find the datasets? Real search engines crawl the web, and find everything, but Im going to cheat. We have a database of almost 10,000 open datasets listed on the [Open Data Certificates](https://certificates.theodi.org/) site, and we can use that to drive our search results. Note: this would _not_ be a good idea for a real search engine; it’s not built to drive the kind of queries we’d need, and it doesn’t crawl the web at large (yet). However, it will do for this experiment.
  20. ![null](https://bd7a65e2cb448908f934-86a50c88e47af9e1fb58ce0672b5a500.r32.cf3.rackcdn.com/uploads/assets/78/a2/5478a271d0d4620854000001/Screen_Shot_2014-11-28_at_14.39.07.png)
  21. With a bit of hacking around, we can create a DuckDuckGo plugin which, whenever you enter the search term open data X, will go to the Open Data Certificates API, search for X, and present the results back to you at the top of your normal search results. It shows the name, publisher, and certification level. If you click, it will take you straight to the page that describes the data (normally on [data.gov.uk](http://data.gov.uk)). Brilliant!
  22. You can see [the code that does this](https://github.com/theodi/zeroclickinfo-spice/commit/adc31d28be8864685d241f5784090c69cd4c8988) in our fork of DuckDuckGo’s zeroclickinfo-spice repository. Unfortunately, it’s not in the real search engine, and I won’t be submitting it, because it needs a proper search index behind it. However, we’ll be looking for ways to spend some time on a project to build that search index, and work on other things like ranking, so stay tuned.
  23. This isnt by any means a complete attempt at data search, but its an interesting experiment that maybe pushes us a little bit towards the future of the true web of data.