Massimo Ronca

Results 15 comments of Massimo Ronca

Same problem with HTTPoison 0.12, Elixir 1.4.5, Erlang 20 The only difference is that I'm connecting through a proxy server, not directly I applied [the fix explained in this post](http://ananthakumaran.in/2017/01/26/debugging.html)...

@bolducp of course there is, but at libpostal level they are called [dictionaries](https://github.com/openvenues/libpostal/tree/c0b770101a598f940b384872ffe35fefe6e3c8b2/resources/dictionaries)

You can retrieve the primary key of a `Module` schema using `Module.__schema__(:primary_key)` https://hexdocs.pm/ecto/Ecto.Schema.html#module-reflection

@nullpilot @aesmail Can I suggest to not to use the dot as a separator? In PostgreSQL, for example, this code is valid ```sql CREATE TABLE test ( "id.id" INT );...

@nullpilot > The serialization as is only joins together the values Sorry, my fault, I was only trying to show that the dot can appear in many places one wouldn't...

> I do think there is some value in "readable" URLs that contain the actual IDs Me too! Maybe replacing the dot with a less common character (for example ^,...

@hisapy ```elixir Hound.start_session(driver: %{javascriptEnabled: true}) ```

> is there any way we can pass capabilities to browser from Hound or start selenium and browser similarly? @hisapy yes there is: pass the parameters in the `chromeOptions` key...

@hisapy it was an example on how to set chrome arguments, you don' really need `no-first-run` you can find [here](http://peter.sh/experiments/chromium-command-line-switches/) a list of chromium command line switches BTW you can...

@dezmathio > Is this possible to just run with a chrome canary executable locally? As I mentioned [here](https://github.com/HashNuke/hound/issues/157#issuecomment-299649057) you can set the binary by using the driver's capabilities options. For...