Simon

Results 205 comments of Simon

Sounds good! Happy to try this once I've finished with the tags! I guess we'll need to add an `priority_order` field in the database for the items

> When a person first tries to share an item or list (of items) in the App, Here is how I view the relations between `items`, `lists` and `groups` -...

I've created the following PR https://github.com/dwyl/mvp/pull/162 which created the `people` table and `person` schema. This table contains the `name` field which will be used to search and share items with...

`live_flash` with LiveView 0.18 is not part of the `Phoenix.Component` module, see: https://hexdocs.pm/phoenix_live_view/Phoenix.Component.html#live_flash/2 We can make sure to import this module in the view, however we'll need to change this...

I think somewhere in the code you called a function on `person` using `[]`, e.g. `person[:id]` instead of `person.id`. In https://hexdocs.pm/elixir/Access.html: ![image](https://user-images.githubusercontent.com/6057298/199934197-2ddc7462-a126-408b-9dfb-a92f27c6515c.png) Because `Person` is a struct the only the...

> I'm actually not using Elixir syntax highlighting atm @samhstn does this means that non of your code is using syntax highlight (elm elixir js...)? Only black and white text?...

I'm thinking of adding a small Elm PWA as an example on how to use the quotes (see also https://github.com/dwyl/elm-pwa-example).

@nelsonic instead of adding a bunch of code on this repository, I've created a new repository which is using the [quotes.json](https://github.com/dwyl/quotes/blob/master/quotes.json) file, see https://github.com/SimonLab/elm-quotes I've also deploy the application to...

I've checked how we build the query on Elasticsearch and we are already using the `query_string` (https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html), see https://github.com/TheScienceMuseum/collectionsonline/blob/f605917a424044c200de04ce02e71b63ac6a4bd0/lib/search.js#L30-L38 I think the text analyser might create a slight difference when...

I've been doing something similar yesterday to see how the `all` function was created. I was a bit confuse by the `execute` function as the adapter has also one but...