alecloudenback
alecloudenback
I was interested in this in the past - I believe MBTA is MiFare classic, but it is encrypted. Given that farebot now supports other cards, provided the encryption keys,...
One issue is that a lot of phones don't support MiFare Classic emulation due to licensing concerns. The Galaxy Nexus was able to, but I don't think later Nexus versions...
Thanks! I appreciate getting it to work on the one example linked, but I thought that since the workaround was very manual that it would still be nice to have...
My goal is to return the nearest root to zero between -2..2 or `nothing` if no root within that range. I could in practice justify limiting the range to -1..1,...
Thanks, Roots.jl does seem to work better in this situation. Do you want me to leave the issue open?
Testing just a bit more, it seems like `dd_real` works because `42.0` can be coerced into an `Int`. The issue related to having a default type that is not the...
Looks like the change that would be needed would be to modify ```julia getindex(d::DefaultDictBase, key) = get!(d.d, key, d.default) ``` to ```julia getindex(d::DefaultDictBase, key) = get(d.d, key, d.default) ``` in...
Example of what I mean: This errors: ```julia d = Dict(i => i for i in 1:3) get!(d,10,"abc") ``` While this does not: ```julia d = Dict(i => i for...
I started to do this but got kind of hung up because it was more than just updating syntax. It seems like some of the blog post's points about macro...
I might be able to tackle this if the API/idea is supported. I think the changes would be straightforward: - Update structs to include a label field (`nothing` would be...