Schmerzbold

joined 4 months ago
[–] Schmerzbold@feddit.org 4 points 1 week ago* (last edited 1 week ago)

And while they claim in their FAQ to not sell your content and/or use it or provide it to others as GenAI training data, according to the Terms&Services you have to grant them the right to do pretty much exactly that (and everything else): https://loops.video/legal/terms-of-service#7

[–] Schmerzbold@feddit.org 47 points 1 week ago (6 children)

Hmmm…

Submissions: By directly sending us any question, comment, suggestion, idea, feedback, or other information about the Services ("Submissions"), you agree to assign to us all intellectual property rights in such Submission. You agree that we shall own this Submission and be entitled to its unrestricted use and dissemination for any lawful purpose, commercial or otherwise, without acknowledgment or compensation to you.

Contributions: The Services may invite you to chat, contribute to, or participate in blogs, message boards, online forums, and other functionality during which you may create, submit, post, display, transmit, publish, distribute, or broadcast content and materials to us or through the Services, including but not limited to text, writings, video, audio, photographs, music, graphics, comments, reviews, rating suggestions, personal information, or other material ("Contributions"). Any Submission that is publicly posted shall also be treated as a Contribution.

You understand that Contributions may be viewable by other users of the Services and possibly through third-party websites.

When you post Contributions, you grant us a license (including use of your name, trademarks, and logos): By posting any Contributions, you grant us an unrestricted, unlimited, irrevocable, perpetual, non-exclusive, transferable, royalty-free, fully-paid, worldwide right, and license to: use, copy, reproduce, distribute, sell, resell, publish, broadcast, retitle, store, publicly perform, publicly display, reformat, translate, excerpt (in whole or in part), and exploit your Contributions (including, without limitation, your image, name, and voice) for any purpose, commercial, advertising, or otherwise, to prepare derivative works of, or incorporate into other works, your Contributions, and to sublicense the licenses granted in this section. Our use and distribution may occur in any media formats and through any media channels.

This license includes our use of your name, company name, and franchise name, as applicable, and any of the trademarks, service marks, trade names, logos, and personal and commercial images you provide.

from https://loops.video/legal/terms-of-service

[–] Schmerzbold@feddit.org 1 points 1 month ago

Well, it's boths fault. LLMs are an annoyingly effective tool for SEOs. Without it SEO would likely be easier to spot and block.

[–] Schmerzbold@feddit.org 4 points 4 months ago* (last edited 4 months ago)

You can set on what line on the screen less (the pager program man uses by default) puts search results with the -jn/--jump-target=n option. For example, using .5 as a value for n makes less focus the line with the search result on the center of the screen. This should help with your overshoot issue.

Either set the option within less with the - command followed by j.5↵ for the current running instance of less, or set and export the LESS environment variable inside your ~/.bashrc to have less always behave that way.

[–] Schmerzbold@feddit.org 3 points 4 months ago

I guess that's true when you're a company trying to sell a product. For an open source project more popularity might just mean more hassle. Sure, it may increase your employment opportunities somewhat, but seeing how entitled and demanding users of os-software can be, I'm sure some devs wish their projects were less popular.

[–] Schmerzbold@feddit.org 5 points 4 months ago (10 children)

That works nicely. Thanks 👍

 

So, I have a python script I'd like to run from time to time from the CLI (on Linux) that resides inside a venv. What's the recommended/intended way to do this?
Write a wrapper shell script and put it inside a $PATH-accessible directory that activates the virtual environment, runs the python script and deactivates the venv again? This seems a bit convoluted, but I can't think of a better way.