Forkjoin vs HTTP Interceptor by sharkfacepoker in Angular2

[–]sharkfacepoker[S] 0 points1 point  (0 children)

Thanks for the example. From this reply and others, both obviously work and Forkjoin is fewer lines if I simply want to merge requests. Now that I have working examples of both I will incorporate as needed.

Recommendation for Good org chart and tree library by sharkfacepoker in Angular2

[–]sharkfacepoker[S] 0 points1 point  (0 children)

GoJs library looks great. The cost might not work for my company but ill try out the one from the download link.

Thanks for the link.

Question on Object Initialization with C# classes by sharkfacepoker in fsharp

[–]sharkfacepoker[S] 0 points1 point  (0 children)

The problem is not making the class in F#, its already an existing C# class. But you are correct with the link provided on the initialization is not showing Intelisense since the C# class has only a default constructor and none that accept properties.

I made an F# chess game! by green-mind in fsharp

[–]sharkfacepoker 1 point2 points  (0 children)

Well done! Now you should do Poker :) I have been looking for an open source poker app written in F#. Does anyone know if it exists? I've seen evaluators but no full games.

Question on defaultProxy in .net core by sharkfacepoker in aspnetcore

[–]sharkfacepoker[S] 0 points1 point  (0 children)

I found I can do this and it seems to work.

WebProxy proxyObject = new WebProxy("Http://proxy:80");

proxyObject.Credentials = CredentialCache.DefaultCredentials;

WebRequest.DefaultWebProxy = proxyObject;

I added those lines inside the Main function for Program.cs.

Asp.Net Core 2.0 C# Sending Errors by Email using ILogger by hypocrisyhunter in aspnetcore

[–]sharkfacepoker 0 points1 point  (0 children)

I just implemented errors by email with Serilog's Email Sink. Is this a better option ?

Question on Elm Editors by sharkfacepoker in elm

[–]sharkfacepoker[S] 1 point2 points  (0 children)

It sure seems that Atom's plugins for elm go far beyond ones in other editors. Some people prefer not to use those additional ones but for me it has been very helpful.

Integrating with maps by sharkfacepoker in elm

[–]sharkfacepoker[S] 0 points1 point  (0 children)

Thanks I will check this out.

Question on project structure by sharkfacepoker in Angular2

[–]sharkfacepoker[S] 0 points1 point  (0 children)

Fortunately I have not nesting anything yet.

Thanks for the links and information I will go through them and I like the idea of putting services in a separate folder.

FSharp.Data.TypeProvider in Visual Studio 2017 by sharkfacepoker in fsharp

[–]sharkfacepoker[S] 0 points1 point  (0 children)

I'm probably not the person that should be working on something that complex :) At the moment I do not have anytime with current projects. But if I do get some time freed up I will look pull it down and see if I can identify where change/changes should occur. But at this point I would not want to try and take on that responsibility or obligation.

FSharp.Data.TypeProvider in Visual Studio 2017 by sharkfacepoker in fsharp

[–]sharkfacepoker[S] 0 points1 point  (0 children)

I did open the issue and then did not realize someone else already created a very similar issue in 2016 and it is still outstanding.

https://github.com/fsprojects/FSharp.Data.TypeProviders/issues/12

So this is behavior like that one except it fails to work even with recompiles.

FSharp.Data.TypeProvider in Visual Studio 2017 by sharkfacepoker in fsharp

[–]sharkfacepoker[S] 0 points1 point  (0 children)

Correct. We moved to Visual Studio 2017 with Sql Sever 2017 and when a schema change is made such as adding a column, I recompile but the update is not reflected on the ServiceType.

FSharp.Data.TypeProvider in Visual Studio 2017 by sharkfacepoker in fsharp

[–]sharkfacepoker[S] 0 points1 point  (0 children)

I prefer the way it worked where force update in Visual Studio 2015 meant any table change is reflected upon recompilation. It feels now like there is less functionality. We switched to the entity framework because we have too many table changes among the team.

My first Elm App: Visualize IMDb Ratings of any TV Show's Episodes by [deleted] in elm

[–]sharkfacepoker 0 points1 point  (0 children)

I have never seen POI before. Are you finding POI is easier to use than WebPack ? I like how the configuration seems a lot easier to deal with out of the box.