I'm a lefty and I've been visiting
I only drop by occasionally because the site is a bit of a cesspool. It always attracted trolls and idiots, but there was a lot of humour and the level of intelligence and knowledge by many posters was incredible.
The average commenter here is now more right wing, less well informed, stupider and less fun. The editors post less interesting stories, with more bias and more nastiness. Some of it is just flamebait.
I have since migrated to other sites that have to some degree replaced the earlier incarnation of slashdot (not even going to mention where here).
The UK *was* the fifth biggest economy. Post-Brexit, the UK has fallen to be the sixth biggest economy.
Sure. It's quite easy to create systems that don't have bugs in if you have enough computing power to throw at it. Most bugs arise through having to make compromises, e.g. caching, memory allocation, writing things to file.
If you can write a few simple rules and produce emergent complexity then it's not too difficult. If you just write some basic physical laws you can probably prove mathematically that your system is not buggy.
Although if there were bugs, how would you distinguish them from reality?
it's hard to sound reasonable when your leader is the definition of unreasonable
Obligatory George Bernard Shaw quote:
"The reasonable man adapts himself to the world: the unreasonable one persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man."
Hi RMS!
There's been a huge amount of success with crowdfunding recently -- Kickstarter and Indigogo and so on.The most facile projects can get funded to the tune of millions. Meanwhile venerable old free software projects have been neglected. Has the FSF ever considered starting some crowdfunded projects?
I know people can donate cash to e.g. the FSF directly but it's a black box and hard to emotionally engage with that. Compare for example a specific project that could gain a lot of public momentum -- e.g. a Kickstarter project with a specific goal to increase Emacs' IDE capabilities by paying some extra developers to work on it full time. I'd happily donate some cash in that direction if someone were to launch such a project.
Surely worth an experiment at least? Please take my money
The mass of the bodies is irrelevant if non-zero.
This isn't correct. Mass is relevant to acceleration by gravity, otherwise you'd fall at the same rate on the Moon as on Earth.
- No operator overloading. As a result, every container type is accessed differently. Arrays use []. Lists use At(). Hashmaps use Get(). Matrices, vectors, and complex numbers are absurdly verbose, because I cannot overload addition and multiplication.
Arrays are rarely used in Java these days. All the collections API (Bloch's work on this has made it one of the few elegant parts of Java) use
- Type erasure for generics. As a result, I cannot define different function overloads for func(List) and func(List).
At least Java has generics. Unlike some other popular languages I could name... type erasure is a genuine annoyance but it's usually not too painful to work around.
- Lack of first class functions. As a result, callbacks required the absurdity of implementing the Callable interface. This has been improved recently with the addition of lambda statements.
Java is horribly verbose when you need to pass functions around but the new syntactic sugar makes functional programming a lot more viable. Even without it though you can stick to a strictly OO approach. This can make for clunky programming but does have the advantage of being boringly predictable in huge codebases being worked on by lots of coders of varying ability.
- Lack of properties. As a result, I cannot expose anything as public, because I might want to add additional code at some point in the future. Therefore, I must have an explosion of getters/setters.
It's not pretty, but this is a good excuse to make everything as immutable as possible and cut down on data access objects.
I like the idea of having a sandboxed virtual machine. I like the idea of having a single version of the bytecode that can run anywhere. I just can't stand the language.
Java isn't a lot of fun to code in most of the time but it's pretty effective at what it does.
Civilization has existed for ~12k years, human beings have not changed. Social interaction has not changed
12k years ago we were still in the paeleolithic. We don't have a lot of idea what social interaction was like back then but probably involved a certain amount of smacking each other with sticks and crudely chipped rocks.
In the intervening millennia social interaction has changed out of all recognition.
Your assertion that a chat on Facebook is not being sociable is pretty comical, and if you think it is so unacceptable why are you discussing the issue on slashdot? Surely slashdot is nothing but a geeky social media forum. Why don't you have this discussion with a friend over coffee?
I'll tell you why not: everyone likes social media, but it's just fashionable to tell everyone how superior you are for not caring about it.
Creator of many awesome computer games - Chaos, Rebelstar, X-Com.
Check out Chaos Reborn, his latest project.
All Finagle Laws may be bypassed by learning the simple art of doing without thinking.