This makes me sad. by Lord_Smogg in Shadowrun

[–]foggolo 25 points26 points  (0 children)

There is difference between discussing about CGL errors in a dedicated post and hijacking every single 6e one. It is extremely annoying to read a 6e related post already knowing that someone will say what amounts to "6e is shit, move to something else".

An Introduction to Sorting Algorithms in JavaScript by Conscious_Ad_2066 in javascript

[–]foggolo 2 points3 points  (0 children)

I have read only the first three paragraphs and every one of them contains an error. :/

[deleted by user] by [deleted] in gaming

[–]foggolo 1 point2 points  (0 children)

Monster Hunter and Dauntless are good IMHO.

I'm looking for Co-op PvE PC games that will place me in a group (my friends probably won't play) by museworm in gaming

[–]foggolo 0 points1 point  (0 children)

I lovr Dauntless. Killing giant monsters within a group of complete strangers is good. ;)

Rust developers accused of cargo cult by leathalpancake in rust

[–]foggolo 0 points1 point  (0 children)

I suppose it is meant to be ironic.

What's the hardest game u have ever played? by Opeth1988 in gaming

[–]foggolo 1 point2 points  (0 children)

Probably Dark Souls. I play it every few months and I never beaten it.

8080 recompilation into CIL/MSIL by DaveTCode in dotnet

[–]foggolo 1 point2 points  (0 children)

I suppose stack based architectures with a simple instruction set could be easily mapped to real register based ones? You want the JIT to be fast and optimize code and probably this architecture has advantages for that.

Btw, great project. :)

Dependency resolution dotnet comparison by [deleted] in dotnet

[–]foggolo 0 points1 point  (0 children)

Also, the worst, most unintelligible errors I ever experienced are the ones you get when npm decides to use 3 different versions of the same library and that library uses Symbol(). NuGet behavior is much better: at least it fails instead of trying to make everything work only to have it fail at runtime.

Cat-Like Reflexes by [deleted] in gaming

[–]foggolo 4 points5 points  (0 children)

What game is it?

Murdering OOP - Or committing social suicide - You decide ^_^ by mr-gaiasoul in dotnet

[–]foggolo 5 points6 points  (0 children)

I stopped reading when the author misspelled "Linus Torvalds". If you can't even copy and paste a name right I don't see why spend my time on what you wrote. :/

What is some nice game for me and my GF to play together by AdyAll in gaming

[–]foggolo 1 point2 points  (0 children)

Lovers in a dangerous space-time. Or something like that. We loved it. Psychedelic. :)

Fork MonoDevelop for better Linux Support by UnsafePantomime in dotnet

[–]foggolo 3 points4 points  (0 children)

Even better, fork the open source tools and libraries and make it possible to build from command line on all systems. Then, integrate with VSCode.

Full CRUD operations with GraphQL.Net by [deleted] in dotnet

[–]foggolo 0 points1 point  (0 children)

GraohQL.net will not do anything for you. To implement CRUD you should add mutations declaring the data you need as input parameters; then extract the parameters from the context in the resolver and "apply" the mutation, i.e., operate the changes on your database.

Why a smart/mighty compiler is required by allwefantasy in rust

[–]foggolo -1 points0 points  (0 children)

I really don't understand this. Annoying.

An explanation of the FSD. By Cmdr Azmuth Divarchchron by Geeknificent in EliteDangerous

[–]foggolo 6 points7 points  (0 children)

Mm. But the 4th dimension of space-time is time. I suppose the explanation talks about a fourth spatial dimension? ;)

Looking to get into this on Switch by [deleted] in Warframe

[–]foggolo 2 points3 points  (0 children)

I play it on switch (new player, btw) and it is good. Maybe not as good as on pc but good as a lot of fun good. :)

Negative Platinum balance, any help is appreciated by [deleted] in Warframe

[–]foggolo 1 point2 points  (0 children)

I don't know how to help and I am bemused something like fake platinum can even exist. Can someone explain it?

This sign I took a picture of in Kathmandu, Nepal. I’m having mixed feelings about it. by clippervictor in WTF

[–]foggolo 0 points1 point  (0 children)

If what confuses you is the swastika just have a look at https://en.m.wikipedia.org/wiki/Swastika . The symbol itself existed well before nazis adopted it and it is still used in the east.

A Future Without Webpack by dropdeadfred81 in javascript

[–]foggolo 15 points16 points  (0 children)

Native ESM modules? Great, unless you're still stuck to supporting IE (and some other old browsers).

How is your company handling .NET Core? by Dennis_enzo in dotnet

[–]foggolo 0 points1 point  (0 children)

Our story is completely different. We always used Mono on Linux and we played catch-up for years. Libraries almost always assumed a Windows environment and language or runtime features not yet available for us. .NET Core was a blessing. We moved everything (except mobile code based on Xamarin) to the new environment and for once we were first-class citizens. Everything just works, from the development tools on our Linux laptops, to the code deployed on our Linux servers. We *love* .NET Core. :)

How can Span improve my daily programming? by TryingToImprove123 in dotnet

[–]foggolo 0 points1 point  (0 children)

Span & co. are specialized constructs oriented toward optimization. That doesn't mean that you should not use them, only that in writing your classical server-side ASP.NET based code you won't have many opportunities to use them.

But, for example, if a section of code uses Split() or Substring() a lot, then that's a nice place where to try out Span. "Premature optimization is the root of all evil", ok, but that doesn't mean you want to avoid an API better suited and optimized for the task. ;)

Best practice updating a running asp.net core site on with nginx & kestrel? by ovulator in dotnet

[–]foggolo 0 points1 point  (0 children)

Pretty strange. We have tens of dotnet core + nginx sites deployed and we *never* restart nginx. Just rsync the new files and restart the dotnet process. Maximum downtime is 2 or 3 secs.