#DailyBloggingChallenge (319/365)
The original approach was to have a text field and reuse the list of clubs. This means one would have to use the `computed` functionality of #VueJS.
The downside of this option is that in the long run the UX would decline, since the list has the potential to be very long and thereby creating increased scrolling time.
#DailyBloggingChallenge (321/365)
When comparing the scraping method between Goruck's and Sandlot's page they differ quite significant.
On #Goruck one can use a simple #HTML parser and extract the data from a reusable #CSS class name.
On #Sandlot one has access to the response data as #JSON and needs to create a pattern/dictionary matcher.