Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:Such potential (Score 1) 520

Enforcing whitespace in the language weakens it.

Add in the sad decision to not make everything an expression in Python and you have a weaker language with zero benefit to go along with the enforced whitespace.

Guido is almost as stupid Rasmus.

Python used to not have any scoping at all which is why you have all those redundant self self self self self....

Comment Re:It was a terrible example of went to use a goto (Score 1) 677

> I say "please don't use goto" and instead have a "cleanup_lock" function
> and add that before all the return statements.. It should not be a
> burden. Yes, it's asking the developer to work a little harder, but the
> end result is better code.

No, it is gross and it bloats the kernel. It inlines a bunch of junk
for N error paths, as opposed to having the exit code once at the end.
Cache footprint is key and you just killed it.

Nor is it easier to read.

As a final argument, it does not let us cleanly do the usual stack-esque
wind and unwind, i.e.

        do A
        if (error)
                goto out_a;
        do B
        if (error)
                goto out_b;
        do C
        if (error)
                goto out_c;
        goto out;
        out_c:
        undo C
        out_b:
        undo B:
        out_a:
        undo A
        out:
        return ret;

Now stop this.

        Robert Love

http://koblents.com/Ches/Links...

Comment Re:why? (Score 1) 677

"Don't prematurely optimize" is another one of those proverbs that people worship without thinking about it.

Yup

People have taken that to mean that it is okay it write poor code because the compiler will save you and if it doesn't then you can do it the right way.

Most of the time I know the optimal way to write it so I do. Waiting is pure stupidity.

If I am not sure, I come up with the best that I can, profile it and if it isn't efficient enough I tweak it.

Comment Re:As any developer worth their salt knows (Score 1) 260

Quoting a small snippet from a larger work with attribution in the USA is generally fair use. But in any case, how can the Free Software Foundation claim that code that links to GPL libraries even *dynamically* is a derived work if APIs are not copyrightable? As much as I am against excessive copyright, people can't have it both ways.

There is a huge difference between an API header and the implementation.

The implementation is copyrightable and no one is claiming otherwise.

If you don't understand the difference between:

static int acpi_ac_get_state(struct acpi_ac *ac);

and

static int acpi_ac_get_state(struct acpi_ac *ac)
{
        acpi_status status = AE_OK;
        if (!ac)
                return -EINVAL;
        status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, &ac->state);
        if (ACPI_FAILURE(status)) {
                ACPI_EXCEPTION((AE_INFO, status, "Error reading AC Adapter state"));
                ac->state = ACPI_AC_STATUS_UNKNOWN;
                return -ENODEV;
    }
  return 0;
}

You have nothing valid to say on the topic.

The former is what is under discussion. In no way should that be copyrightable.

The latter should be and is copyrightable.

Slashdot Top Deals

Remember to say hello to your bank teller.

Working...