Spyke

Replies

Comment on

Infinity for Lemmy is most trending community on Lemmy 309%

Reply in thread

Do you know anything about opensource?

"Infinity for Reddit" uses AGPLv3 License.

  • You can modify, distribute.
  • You must include copyright, include licence, disclose source....

https://www.tldrlegal.com/license/gnu-affero-general-public-license-v3-agpl-3-0

Didn't stole anything, it continued a project, and the name is being discussed on other post.

That's how opensource works, you don't stole, you improve other peoples works and give them credit for their work.

Did you know that most of the apps for Lemmy are opensource and use other opensource projects?

Did you know that Google Chrome uses a browser engine that was created by KDE then improved by Apple, then Google forked it and change the name to Blink.

PS: Trump stole the code from Mastodon, remove the creator credits and call it their own.

Comment on

YSK: You can install an extension on Firefox (android) that allows you to play YouTube videos with your screen locked: (perfect for listening to obscure music)

Any of these (YouTube Music) players are better choices than using an extension on a browser.
Also better features like lyrics, better interface...

PS: extensions can access all of your browser data, you need to trust the extensions hoping that they aren't sending your data to some 3rd party

Comment on

PSA: If your Jellyfin is having high memory usage, add MALLOC_TRIM_THRESHOLD_=100000 to environment

Reply in thread

The value of this tunable is the minimum size (in bytes) of the top-most, releasable chunk in an arena that will trigger a system call in order to return memory to the system from that arena.

https://www.gnu.org/software/libc/manual/html_node/Memory-Allocation-Tunables.html


MALLOC_MMAP_THRESHOLD_ is an environment variable that sets the size threshold for using the mmap system call to allocate memory instead of using the heap.

  • Default: 128 KiB
  • Behavior:
    • If a memory request is ≥ 128 KiB, mmap is used.
    • If < 128 KiB, the heap is used.
  • Purpose:
    • Helps manage large memory allocations more efficiently.
    • Can be adjusted to optimize performance for specific applications.