Tempy

u/Tempy@programming.dev
0 posts · 40 comments

Recent posts

No posts.

Recent comments

You can fork it, but that's because they published the code under a license that allowed you to do that. I think you'll find the copyright is still theirs. Legally, they own their work. Contract law says that if they offer it under a license that's non-revokable, they can't take that away from you. But they could relicense it so future changes come under different terms. They can even multi license it, so some people get one set of terms. The open source ones. and others get a more set of terms suitable for making money off it when being used by others (Assuming all contributors agree, if it's a multi contributor project, though a single contributor could do that with just their patches but that'd be a pain).

It's the reason, in projects where the contributors don't sign over their copyrights over to the maintainer, that you have to get everyone's agreement to switch license (or remove code that was contributed by someone who didn't agree). Because each contributor owns their code and gets to choose the license it's distributed under.

I think it's more to do with, are you really examining your feelings and understanding where they are coming from? Working with something new, that puts you back in the place of having to learn stuff again, is often enjoyable, not because of the thing you are using, but because it's new and your brain, despite what people think, likes learning new things.

I'm glad people feel like they are having fun with rust. But the Rewrite it in Rust crowd are just creating more work for the sake of it.

And I'm a fan of rust.

But hey ho, if they want to spend their time recreating stuff we have excellent options for, who am I to stop them. I just think there are better things they could spend their time on.

A null does not make it memory unsafe. You aren't accessing invalid memory, the runtime just raises a NRE. Which is fine. No memory safety violated.

Java is, as long as you stick to pure java and not native interop, entirely memory safe. And that's achieved by giving up control of memory allocation to the garbage collector.

Rust is not the first memory safe language. It does however, manage to achieve memory safety without needing a garbage collector. Which is what drew my initial interest.

I'll be whatever person I like thanks.

And most open source software starts as a one person job. And as you approach something that other people see the value in, you'll likely attract people who will help.

For the most extreme example, see the Linux Kernel itself.

Someone has to start the ball rolling, and if it's something you want, it may as well be you.

Office 365 also refers to the desktop apps as well as the web versions, has done for many years now. Though I suppose it's all copilot 365 now.

Source: Am office worker where we use office 365, and we all use the native system software, with the browser versions as for quick editing when elsewhere.

I mean many Wayland compositors is kinda like old browsers at the moment. They all implement a common spec and then implement a bunch of their own extensions to get features the spec doesn't allow for. And apps have to be aware of these custom extensions to make use of them. So in the KDE case, I imagine a lot of their apps are aware of KDEs own extensions to Wayland. But it doesn't mean all of them are.

People who find success can, sometimes, become arrogant and become blind to other factors contributing to their success. Just enough failure can keep you humble. Pretty typical human reactions.

on Martin Fowler: ORM Hate · c/programming · 7 pts · 136d

Does it, if you can work on the normal application code, there's no reason you can't work on the lower levels of applications. It's all just code. Ramp up might take a bit more time, but I wouldn't expect horrendously so. As long as your patterns make sense and what is there is written well enough and is not a spaghetti monster in the making, any one should be able to pick it up.

Fair enough. I don't tend to use it all that much. But it is there. I tend to find I don't really need to see the graph all that much. Maybe because I'm mostly working in small teams. It's just not that important to my understanding of what's going on.