Fernando Mumbach
Fernando Mumbach
First I used it on startup. Now I moved it to a rendered callback. It's working great if I place it on rendered.
Well, localstorage is slow. Very slow. Specially in mobile browsers.
As far as I can see in the source, it always keeps the data in the browser. If a subscription gets [A, B, C] and then C is removed, you...
Just to add my personal use case to the discussion: My idea is to deploy BLE (bluetooth low energy) beacons like [estimote](http://estimote.com) or [sensoro](https://www.sensoro.com/en/whyus) in a building, adding more sensors...
> There is only one point, that I had to made up while implementing the controller side. And that is the response time. The MQTT broker does acknowledge a subscription,...
`address` might also refer to a physical address (floor number, room name). In the context of a physical address, it is common to use `,`. A better separator might be...
> * A standardized lat-lon location (geo): "geo:51.6848,15.9205" @ThomDietrich for latlng pairs, you'd also need a projection (most likely [ESRI 4326](http://spatialreference.org/ref/epsg/wgs-84/)). A projection is a way to plot coordinates on...
> @fermuch The projection is not required for the GEO URI schema. Very true! WGS-84 is the default coordinate reference according to the [RFC](https://tools.ietf.org/html/rfc5870) (section 3.4.2).
> @fermuch did you follow the link I provided? Here it is once again: https://en.wikipedia.org/wiki/Geo_URI_scheme Yeah, that's how I found the RFC. It's on the very first sentence of the...
This might be unrelated, but: On [opcodes.ex](https://github.com/ElixiumNetwork/WaspVM/blob/master/lib/decoding/opcodes.ex#L63) there is declared `current_memory` and `grow_memory`, but on [instruction_parser.ex](https://github.com/ElixiumNetwork/WaspVM/blob/master/lib/decoding/instruction_parser.ex#L23) they are called `memory_size` and `memory_grow`