> Yes, of course there are many people who are aggressive about their views and basically intolerant, but if someone crosses the line they'll be downvoted here too, even if they have leftish/progressive views.
The gamification of social interaction creates the intolerant views and all the negative incentives around it. Downvoting / Upvoting is part of that. It is literally the mob deciding whether you have a right to be heard. I rather there were the rules and nothing else.
> Frankly, of many places on today's Internet, HN is one of the nicest to be.
Which is another reason why dissenting opinion is quashed because people self-censor. Sometimes some things have to be said and they have to be said in an unpleasant manner.
It is pretty clear at this point we are just talking past one another though.
> That's why you should take care of protecting your identity online.
In the future, you won't be allowed to be anonymous online. Governments don't like it and sooner or later they won't allow it or make it very difficult to be anonymous.
> As for upsides, I see many. If you don't expose yourself to contrary opinions, there can be no development, you basically shut yourself to anything that could be beneficial to you, especially in the long run. I'm very grateful whenever someone makes me realize I made a mistake or didn't see the complete picture, it's priceless.
I am not talking about intellectual debate which is fine. I am specifically talking about why people end up forming bubbles that don't pay attention to those outside of their group.
What you are saying is fine if you are dealing with honest actors. But I am specifically talking about the times that you aren't. There are mobs, they specifically go after dissenters and they won't stop, they don't get punished (or very rarely there is repercussions) or push back due to this behaviour.
Thus people will go to places that gives them at least pseudo-anonymity and avoid talking to others on the outside because the risk maybe to great for them to simply express a dissenting opinion.
Also some of these dissenting opinions aren't anything normally one would even consider extreme.
People end up getting ridiculed, punished or even have mobs of people harassing them for having dissenting viewpoints online. Why bother exposing yourself to different viewpoints when all it does is bring you vitriol and sometimes real world consequences? There isn't any upside.
This place is no exception except it is done under the veneer of being objective (when it rarely is). You can be polite as you like, but if you have an actual dissenting opinion you will be downvoted or even be flagged over nothing.
> best practices may not be obvious even when reading the docs
I am right now working on a project because of the googling stuff has led to the worst practices at the moment. I have worked on many projects where people haven't bothered reading the docs and I have seen the same pattern for over a decade.
Whereas if they had read the docs the best practices would have been immediately apparent. So that argument hold no water with me.
> one can't assume that in a big doc, it's obvious where the solution for a problem is, which may force to read way more than expected
I want people reading more. Which was part of my overall point. People don't read enough. They go for the quick solution (which is copy and paste from stack overflow) produce something which is usually quite bad and then you normally have to redo that work because the moment you try to change something (due to changing requirements) the whole thing falls to pieces.
I've been guilty of it too. It is a bad habit that is produced through laziness.
I literally wrote docs at a previous place and people kept on asking for help on IM. I wrote the document so I wouldn't have to answer the same questions many times. People getting into bad habits and not looking for or writing docs literally causes a hell of a lot more issues that you would see at first glance.
> Thinking about it, the major problem seem to me unprocessed copy/paste, rather than "googling instead of RTFM'ing".
I would rather have a unprocessed copy and paste then what you get in reality which is a "copy pasta". There are minor bits changed which make it difficult to recognise where it may have originally come from, which makes it difficult to know the original developer's intent.
It is fine for finding the docs. However people use it to find quick, frequently out of date or just wrong solutions on the net.
For example. If you are using the babel compiler and its plugins you will fine lots of answers that are wrong on Stack overflow because they were written when Babel 6 was the major version was popular. Whereas reading the docs (the doc site is quite good IMO) will get you the correct answer every time but comes much lower in search results. Using the babel 6 suggestions can lead you to into some sort of NPM hell.
Google is okay for research on how other people have achieved something. But generally these days I am of the opinion it just teaches you bad habits.
I really wish people would just read the docs instead of just googling. I am working on a large typescript solution and almost every error in the application is due to the original developers not reading the docs and instead just googling stuff from stack overflow.
Also I am against the promotion of google generally. The search engine isn't that much better than Duck Duck Go anymore (especially for dev stuff). Also we should all know the problems with Google's defacto monopoly on search.
> Java projects publish Javadoc which is good - you can sit down and understand an API. It's not the same story on .NET.
Almost all the projects I use with .NET have sufficient docs on their sites. MSDN has the full docs on their site. If there are specific projects that are a problem that are outside of that. Well that is a problem with their project, go and complain to them.
> Yep, hence the bubble. Python doesn't have this problem, for example.
Yes Python does have similar problems. A lot of time people assume you are using a *nix machine and if you aren't then you normally have to faff with some work around. Go has the same problem a lot of things just don't work properly on Windows (at the least the last time I bothered). The same is true with Java, Go, Ruby etc.
As for the tutorials. I've just gone on the ASP.NET site and there is a tutorial for Windows, Linux and MacOS in the tabs on the site.
I wish they would scrap them entirely. I used to do very long commutes in the car. If anyone here has done a lot of driving they will know that you tend to go into "autopilot", you are paying attention and know exactly what going on but you probably have no recollection of the last 20-30 miles.
Typically unless you are gunning it on the motorway you will be somewhere between 65-75 to be cruising with the other traffic and that variation of speed is normal unless you have cruise control.
I don't have cruise control in my car. The amount of worry and stress these things induce because I can't remember whether I was travelling at the correct speed (I didn't get a ticket so I must have been fine) drives me insane.
> Gave it a serious go but it still lives inside the Windows + Visual Studio bubble.
I work in a small shop and most of the developers use Visual Studio with Linux or a Mac. Most of the developers that don't bother with anything outside of Windows won't be open sourcing their libs or documenting their stuff anyways.
This may have been true back in 2016/7 when .NET Core first turned up but it just isn't true anymore.
> Trying to use .NET on Linux with Visual Studio Code is pain: .NET developers expect you to learn APIs through intellisense and don't publish API docs,
I've used VS Code for small projects fine on my Mac. However I can see it being a pain on larger projects and you will need a large IDE. However the same could be said for a large Java project.
> Windows tutorials assume you're running Visual Studio, and a lot of MS's own API docs are bewildering with .NET jargon that you won't understand.
I don't want to sound like a dick, but yes the Windows tutorials will expect you to use Visual Studio as that is the IDE that primary IDE of people using Windows.
As for complaints about jargon. As a C# developer that now transitioning to Python. The Python docs having lot of Python Jargon you won't understand (at first). Every language has its own jargon.