Wait until you learn about negative downvotes.
and anti-upvotes
Wait until you learn about negative downvotes.
and anti-upvotes
Are you in the All tab? You can also sort by most comments (that doesn’t take recent activity into account, but for that there are other sorts). If you are only finding dead communities, it probably means you have reached the end of lemmy and that there is nothing more to see.
Couldn’t scaled sort or new sort in the all tab already do that? There’s also the community browser. You can sort communities by different criteria there.
(for the outsiders: the joke is that hexbear has no downvotes (they are disabled (the downvotes)); hexberians can’t downvote and downvotes don’t affect the total score of a comment from hexbear’s view)
(me not lawyer nor study law)
I’ve seen some users add a license to the end of each of their comments. One idea might be this: Add a feature to Lemmy where each user can choose a content license that applies to everything they post. For example, one user might choose to no rights for their content (like CC0) because they don’t care how their data is used. Another user might not want companies profiting off their posts, so they’d choose a more restrictive license.
I don’t think licensing your content prevents it from being used in AI models, considering that services such as Copilot were trained on data such as GPL licensed source code without having to comply with the terms it imposes when modifying or copying GPL licensed code (but it’s not just resticted to restrictive licenses such as the GPL, since according to licenses such as the MIT they would also have to credit the authors of the original work). It seems that, for now, copyright law doesn’t apply to data generated by AI models and that they don’t need to comply with the terms of the licenses of the training data (or at least they don’t seem to have been penalized for violating copyright law yet AFAIK).
And even if it wasn’t licensed, companies can’t use your works without your permission (unless it constitutes fair use). When you license a work, you are simply giving permission to other people to do things with your work they would otherwise not be allowed to do.
I always thought they should be singular to be closer to the names we give entities and relations in a entity-relation diagram.
Does the OOM killer actually work for anyone? In every linux system I’ve used, if I run out of memory, the system simply freezes.
Would be interesting to use such an embedded image to acquire some statistics on lemmy users. We could answer questions like: What percentage of lemmy users use Linux?
But it is in no way worse than javascript in that regard, though?
I don’t think static typing in Python is really so essential. I see it above all as a scripting language, so its applications don’t benefit as much from static typing as other languages do.
Maybe a better hypothetical python would have used some kind of type inference system, like in haskell, which allows for static typing while still allowing to write code unencumbered from types and stuff, but I really think, for Python’s target domain, its type system is actually adequate or good. Maybe its documentation could benefit from type hints, though.
I haven’t worked with any 1-based indexing languages, but I can’t really see how it could be problematic. The only advantage I see about 0-based indexing is the simplicity in how the memory address is calculated. Just arr + index × sizeof(member)
which I think even has its own MOV instruction on x86. But besides that I can’t see any more advantages. With 1-based indexing I see the advantage of the number of elements also being the index of the last element of the array, avoiding off-by-one errors when writing. Though, again, I’ve never used a 1-based indexing language.
If by «loosely typed» you mean weakly typed, then that’s not true. Python is a dynamically and strongly typed language. Attempting to do an operation with incompatible types will result in a TypeError.
>>> "3" + 9
Traceback (most recent call last):
File "", line 1, in
TypeError: can only concatenate str (not "int") to str
You may be thinking of the following, but this only works because the __mul__
and __add__
methods of these objects have been written to accept the other types.
>>> "A" * 4 + "H"
'AAAAH'
garbage collection
I don’t think Rust has a garbage collector.
Without any prior professional experience, is an extensive open-source/[other non-professional software development related experience] portfolio perceived as more valuable than a degree to employers?
I’ve been thinking: What if we add ipfs into the mix?
Is the top bar supposed to not be using the entirety of the available horizontal screen space?
It works for me on lemmy.ml.
I am not in favour of having more bots in exchange of an easier sign up. It’s never nice to see nsfl pictures suddenly being posted in a comment section, stuff that you can’t unsee.
I should note that there’s also the option to simply save a post or comment (the star in the web interface). It can then be found under “Saved” on your user page.