JP Hellemons

Results 30 comments of JP Hellemons

I have a similar issue on win 10 (creator update) I have python 3.6 but also 2.7 installed. Went to c:/python27 and ran the command and got: ```` Traceback (most...

Fixed it by downloading a zip of the repo and extracting all other related files in the same dir. It runs now. Thank you. Hope it will work 👍

I think that the GeoCoding.Core.Address class could use some more properties. GoogleAddress has components and BingAddress several other properties. What are your thoughts on this?

Fixed it by not using the address class but provider specific: `Geocoding.Google.GoogleAddress gAdres = (Geocoding.Google.GoogleAddress)geoGoogle.ReverseGeocodeAsync` and `Geocoding.Microsoft.BingAddress adres = (Geocoding.Microsoft.BingAddress)geoBing.ReverseGeocodeAsync` and for google string city = gAdres.Components.FirstOrDefault(g => g.Types.Equals("locality")).LongName; and...

What error do you get then?

It would be better if the MailChimp.Net nuget would depend on a minimum version of service stack.

Is it an option to move away from ServiceStack and move to the json.net of newton-king http://james.newtonking.com/json

Thank you mdissel! that is a valid point. I started a fork to see how much work it would be to move away from servicestack https://github.com/jphellemons/MailChimp.NET it is not compiling...

Is it possible to have an epub version available? edit: to add background info about my question: I have an (old) e-reader (sony prs-t1) which handles epub better.

I have two options to fix this issue. 1. `4` based on https://xkcd.com/221/ 2. Powershell `([char[]]([char]33..[char]95) + ([char[]]([char]97..[char]126)) + 0..9 | sort {Get-Random})[0..8] -join ''`based on https://blogs.technet.microsoft.com/undocumentedfeatures/2016/09/20/powershell-random-password-generator/