Greg Bowering

Results 16 comments of Greg Bowering

The README on master refers in a couple of places to https://github.com/AdamBrodzinski/meteor-generate/tree/master/examples/blog which doesn't exist. There is an "examples" in the model branch... should I be using models branch instead...

`INFO: Host worldwind22.arc.nasa.gov is unavailable` Does anyone have a working WFS place name layer config that pulls data from a different public server?

I have proposed this change to assist other developers that use a conda virtual environment (comes with Anaconda or Miniconda). Without this change the Install.sh does not detect a conda...

Yes I know but your nuget config is broken... like I told you :) Appears you need to add Net.DDP.Client\packages.config and check it in.

Thanks Sony. Actually if I don't checkout your solution and just use your published NuGet package DDPClient.Net version 2.3.21.1 then this doesn't matter, it all just works :) But some...

P.S. the NuGet package is published via https://github.com/OzTK/DDPClient.NET and current published version 0.4.1 is a little behind. For some reason it is throwing System.InvalidOperationException. I will have to go back...

Found a solution to my DLL version binding problem here: https://social.msdn.microsoft.com/Forums/vstudio/en-US/7dcaf792-e226-44b5-b9dd-8eebaf5ece20/fusion-redirects-to-wrong-version-than-specified-in-application-config-file?forum=clr Using WebSocket4Net version 0.8 instead of v 0.12 seems to resolve all my problems, messages are sent continuously and...

Pip should be able to clone, install and build quantmod directly via the git source repo like this: `pip install git+https://github.com/jackluo/py-quantmod#egg=quantmod` This works to a degree but you may then...

After a model is trained, generating from a seed sequence taken from any single example seems to generate a verbatim reproduction of that example... which is very nifty but not...

Slightly different but closely related issue: `training_data[randIdx + i]` can sometimes produce `IndexError: tuple index out of range` for seed_length > 1 and randIdx > (num_examples - seed_length)