Avatar

kattfisk

kattfisk@lemmy.dbzer0.com
Joined
0 posts • 90 comments
Direct message

Yes, the sanctions against Russia, as mentioned by Linus. The change also said the maintainers “can come back in the future if sufficient documentation is provided”.

My guess is that the Linux Foundation must ensure that none of the people they work with are in any way associated with any organisation, person or activity on the sanctions list. And that they preemptively removed all maintainers that might risk violating the sanctions while they work with them to establish whether they might be covered by the sanctions or not.

Regardless of what you or they think of the sanctions, they are the law, and I don’t think anyone wants the Linux Foundation to have to spend their money on lawyers and fines because they had a maintainer who also worked on a research project funded by a sanctioned entity. (If that is how it works, IANAL)

permalink
report
parent
reply

Before you have an opinion on it, just read the article, it’s just one page. https://www2.hawaii.edu/~kent/BenefitsofWorldHunger.pdf

The UN really shot themselves in the foot by deleting it, because the title only looks bad if you don’t actually read the rest of the text, which they now made more difficult.

permalink
report
reply

I’m still pissed at being forced to write in a passive voice in university. It’s awkward and carries less information, and makes it seem like nobody had any agency, science just kind of happened on its own and you were there to observe it.

I don’t know why anyone would prefer something like “An experiment was conducted and it was found that…”

To the much better “We conducted an experiment and found…”

permalink
report
reply

tl;dr: Run vimtutor, learn vim, enjoy life

It’s extremely powerful, for mostly the same reason that it’s incomprehensible to newbies. It’s focused not on directly inputting characters from your keyboard, but on issuing commands to the editor on how to modify the text.

These commands are simple but combine to let you do exactly what you want with just a few keypresses.

For example:

w is a movement command that moves one word forward.

You can put a number in front of any command to repeat it that many times, so 3w moves three words forward.

d is the delete command. You combine it with a movement command that tells it what to delete. So dw deletes one word and d3w deletes the next three words.

f is the find movement command. You press it and then a character to move to the first instance of that character. So f. will move to the end of the current sentence, where the period is.

Now, knowing only this, if you wanted to delete the next two sentences, you could do that by pressing d2f.

Hopefully I gave a taste of how incredibly powerful, flexible, yet simple this system is. You only need to know a handful of commands to use vim more effectively than you ever could most other editors. And there are enough clever features that any time you think “I wish there was a better way to do this” there most certainly is (as well as a nice description of how).

It also comes with a guide to help you get over the initial learning curve, run vimtutor in a console near you to get started on the path to salvation efficient editing.

permalink
report
parent
reply

Unless unions work differently where you live, they are a democracy that will pursue whatever issues its members vote on. If members don’t think pay is a problem, why would they try to change it?

permalink
report
parent
reply

So you’re saying we should invade Poland?

permalink
report
parent
reply

Oil and gas products account for 4.2% of Sweden’s exports. The gas exports alone almost rival those of dairy and eggs! Truly a petrostate if I ever saw one

Are you perhaps thinking of a different country?

permalink
report
parent
reply

People think it’s about Stallman being bitter. But it’s because GNU is a political project with the goal of total user freedom and control over their computer. The software is a step on the way there. But if people use free software without understanding, valuing or taking advantage of the freedom it gives them, the GNU project has failed.

permalink
report
parent
reply

vi is part of the POSIX standard, so it’ll be available in some form on almost anything UNIX-flavoured

permalink
report
parent
reply