sitch

Results 30 comments of sitch

I used something like this: ```elixir @spec valid_url?(any()) :: boolean() def valid_url?(url) when is_binary(url) do case URI.parse(url) do %URI{host: nil} -> false %URI{scheme: nil} -> false %URI{} -> true end...

Might be worth having an `alpha2` field that _is_ a `String.t` if that's the case

I found you can use `eslint-plugin-sort-keys-fix` to post process key order, but there doesn't seem to be a similar interface sorter. Would be very convenient to just add a sort...

"Structure" view is displayed but clicking into the "Content" tab crashes

I'd imagine `GIS` plugins will do the same for postgres

This is what I was using after running certbot Just replace: - **** - **** ```nginx map $http_upgrade $connection_upgrade { default upgrade; '' close; } upstream genie { server 127.0.0.1:8000...

Just allows for a more seamless fallback strategy so can just flat out replace assert

I'm in the same boat as @husamrahmanh2o

I expected modelExtend to be commutative in the no key collision case, and when there is a collision, it should take the last argument to define that property. This is...