Forgot your password?
typodupeerror

Comment Re: Have *you* actually read it??? (Score 1) 51

I am not a lawyer, and I am definitely not their lawyer, but if I had to defend their position, there can be made an argument that logo (that mostly just says "ONLYOFFICE" with a small image) is just the author attribution - and the AGPL does not explicitly specify whether the authorship attribution requirement might require a specific format for the attribution. But earlier in this thread Excelcia cited OnlyOffice as using the required legal notices as justification, and to me that's an obviously unjustified overreach.

But I think the broader point while admittedly weakened still stands - there is definitely at least some nuance here, even if once all nuances are considered, the conclusion is still the same - and it is disingenuous to imply that the CEO would have known he is obviously wrong if he just read enough of the license to realize it disallows all additional restrictions, period. Seems misleading to do that without first engaging with and acknowledging the nuance.

Comment Re: Have *you* actually read it??? (Score 1) 51

To respond to the actual point - requiring an authorship notice is clearly allowed. Requiring that it be in a specific graphical form - seems to me like way too far. But I also did not like how FSF dismissed it as completely disallowed, without any acknowledgement that a less onerous/ less specific authorship acknowledgement would have been clearly OK - dudes, you are the ones that included a list of allowed restrictions, do not now act as if it's absolutely preposterous to consider that any restrictions might be OK!

Comment Have *you* actually read it??? (Score 2) 51

AGPL:

7. Additional Terms.

[...]

Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:

[...]

b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or

[...]

All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10

(emphasis mine)

OpenOffice license includes:

Pursuant to Section 7(b) of the License you must retain the original Product logo when distributing the program.

So there is an actual subtle question here - does "original Product logo" count as "reasonable legal notices or author attributions" within the meaning of AGPL 7(b)? But hey, who wants to read when the accused others of no reading?!

Comment Re:No (Score 1) 186

FP variables are const by default, and have to be explicitly made mutable.

Your code is actually a perfect example. In C:

const float X = Get_Current_Spped();
Display(X);

In an ML-style FP language:

let X Get_Current_Spped() in
Display(X)

In both cases, you are not changing X - you are creating a new X every time, keeping the previous X unchanged.

Comment Re: Which decades-old problem? (Score 1) 96

Look, I found and skimmed the Nature article before writing my original post. But I am not a QC expert, and so have no clue what a surface code is, why they are important, and what exactly was unsolved about them for 20 years. I can have a guess based on skimming the article, but it is completely lazy that the ABC West Sydney did not bother to include any explanation in their article, not even mentioning "surface code", and instead just filling the whole article with fluff. And given that the original article is just fluff and is missing the background info, the original Slashdot poster should have included some of that background info in their summary, not just linked to fluff.

Comment Re:that's fine (Score 2) 408

Honestly, you can say it wasn't their fault, but nearly 10% of them in 6 months have been involved in accidents. Even if it wasn't the fault of the technology itself, why is the accident rate so high?

Because they are constantly on the road, for testing and data collection. I would imagine that they drove more in these 6 months than many cars do in 6 years.

Slashdot Top Deals

An algorithm must be seen to be believed. -- D.E. Knuth

Working...