Yakir Luc Gagnon
Yakir Luc Gagnon
I too am interested in OAuth2... Any progress on that @EricForgy?
Same here: Ubuntu 14.04.2 LTS
> Basically you want to invent a whole new architecture because you don't want to put one id field into your business model? That is more or less correct :laughing:...
Here is an example of what I mean. Business side of things: ```julia # a type of users struct User name email password end # methods with users hashpassword(u::User) =...
My much wiser friend has explained to me that the `UserUI` *looks* a lot like the `User` struct -- a duplication of code -- but that that is just a...
Also, to avoid adding the `id` field to the business struct, we can do this: ```julia abstract type HasID end struct User a = User("a", "b") User("a", "b") julia> a.name...
No, this is gold, thank you so much!!!
No, this: ```julia xs = Observable{Vector{Float32}}(Float32.(1:10)) ys = Observable{Vector{Float32}}(Float32.(1:10)) img = Observable(rand(10,10)) contourf(xs, ys, img) # now I want to update the x, y, and image values: empty!(xs.val) append!(xs.val, 1:5)...
Just another option: ``` $ sudo apt-get install python3-distutils ``` fixed it for me.
Friendly ping that this is an issue for me. I managed without it, but just saying this fine piece of machinery is useful to me as well.