thevoidzero

joined 6 months ago
[–] [email protected] 3 points 2 days ago

Thank you.

From my interactions with the people that'll fund this. It does look like they want me to just develop this. But my advisor has not done this kind of software development grants. And the people I talked to might also not know what their organization's legal requirements are put in contract. That's why I want to know what kind of language I should use in proposal so that it can be used as a point of discussion if someone from their organization says we can't do that. Instead of them just assuming I'll hand over everything.

[–] [email protected] 2 points 2 days ago

Yeah, but my program does not have such things in the code. And if you add it, GPL will make it so that they have to share to code, so people will be able to tell if they try it, right?

[–] [email protected] 3 points 2 days ago (3 children)

Thank you. I'm a PhD student, so I do not have access to Lawyers that I can ask, and it probably will cost me money to get their opinion if I seek professional lawyers.

[–] [email protected] 4 points 2 days ago (1 children)

If whatever changes/improvement they make is available for everyone to use, I consider that contributions to the open source.

[–] [email protected] 8 points 2 days ago (4 children)

I don't mind them making money off of it, as long as they contribute to the open source community by improving it, contributing upstream, or using it in other systems and keeping those open source as well. I want other people to benefit from the effort I made and published, and if someone wants to improve it, I want others to benefit from there too.

I don't want the case like insulin in US, where the first invention is free because they wanted everyone to benefit from it. But now it's super expensive because of the incremental advances other corps did that are patented. And the free version is no longer viable to use without those incremental improvements.

[–] [email protected] 4 points 2 days ago* (last edited 2 days ago) (3 children)

I'm fine as long as it is used in other GPL projects. I just don't want them to take this, use it on some proprietary code and make money/mine data and other things and not contribute to upstream or open source in general.

I hadn't thought about the network usages, I though GPL covered it. So, is AGPL everything GPL has plus software service from network? If yes, then I will use that license. EDIT: Saw that AGPLv3 is indeed GPLv3 + the network thing.

[–] [email protected] 3 points 2 days ago

Further points:

I also have a lot of other libraries and programs that I have developed and published with GPLv3 license, so I also want to integrate them with the new program. Since I don't want to reinvent the wheel for things I have already done. And I'll probably want to integrate this software on things I might make in the future.

 

Hi everyone,

I'm hoping there are people here who work on FOSS and have applied for grants to support their software financially. I am applying for a grant opportunity that is asking for a software from US gov agency.

My requirements:

  • I want to publish it under Open Source Licenses like GPL (not MIT) so other corps can't take this to use on their product,
  • The grant agency will get the source code, they can do whatever as long as the license is held,
  • I will develop the features they want, and request during the duration of grant,
  • I will want to continue development independently after the grant, or apply for more grants from other organizations,
  • To clarify the previous point, I do not want to give them the final product so they own it, and I can no longer do anything on the program.

So, if anyone has done similar things, please give me advice on this. Their requirement says "a web repository" should be provided at the end, so I think I can apply with the intention of giving them the software code while keeping the rights. But I don't want to make a mistake in application/contract and lost the rights to the program, I want to develop a lot further than just the features they want for their use case.

Or at least dual license to protect the Open Source Side while giving the grant organization rights to take the code for their other programs because of the money they spent.

[–] [email protected] 3 points 1 week ago (6 children)

Yup, looks like that movie. Thanks, I didn't remember the name.

[–] [email protected] 6 points 1 week ago (9 children)

I remember there being something like this already. The final mission happens as they say "this is the final training for you". The enemy (aliens) behave differently than expected in this final simulation because they are not immediately aggressive and are waiting while defending their location, but the child successfully eliminates them. And later learns that was the actual aliens and not the simulation. And the aliens were just trying to find a place and protect their new generation, or sth.

[–] [email protected] 2 points 1 week ago

For adding with Firefox or similar apps on laptop. I have another program that monitors clipboard (or selection), can filter with regex and run custom commands. So simply copying the url to the video can trigger the curl command to add to playlist.

Making it in the phone is the hard part. I don't know much about android dev so any help would be appreciated. I did find somewhere you can make a simple app with protocol definition for sharing, and on share to the app, run the request to the server in the local network.

I also want to implement file share, if you share a file to that app from local storage, it could upload to the server and mpv can stream it. Since I have used the basic tcp connection, I couldn't do that in this version either.

[–] [email protected] 4 points 1 week ago

Yeah it is sad that we don't have flash. But today I saw there's a program Ruffle (written in Rust) that can run flash, and add support to browser through extensions or something.

[–] [email protected] 1 points 3 weeks ago

Seq will only print one sequence, though. The program's focus is discontinuous range. Something like: 1:2:10,20:2:30

 

cross-posted from: https://lemmy.world/post/18129059

This feels like it should already be a feature in a terminal. But I didn't find anything that let me do this efficiently.

I had a rust library for converting list like 1-4,8-10 into vectors, but thought I'd expand it into a command line command as well, as it is really useful when I want to run batch commands in parallel using templates.

I wanted to share it since it might be a useful simple command for many people.

 

This feels like it should already be a feature in a terminal. But I didn't find anything that let me do this efficiently.

I had a rust library for converting list like 1-4,8-10 into vectors, but thought I'd expand it into a command line command as well, as it is really useful when I want to run batch commands in parallel using templates.

I wanted to share it since it might be a useful simple command for many people.

 

cross-posted from: https://lemmy.world/post/17984566

Hi all,

mpv communities seem to be tiny in lemmy, so I'm sharing it here.

This is a program I made for music control from local network.

You can run it in a computer with some local media files, or youtube links or any other links yt-dlp supports. And then with the server, you can control the media player and the playlist from any devices in your local network. So that you can just show a QR code or something to house guests for parties, or have it bookmarked within family to control the music.

I wanted to make something similar to how youtube app let's you play in TV and such, but my skills were not enough to do that. So I tried a simple alternative that works with computers. In an ideal world, I could make "Play with local mpv server" option come while on other android apps, but I have zero experience in android app development and it looks complicated.

I know some other programs also give option to control media, but I wanted to give it a go with a simple implementation. Making the web-server was a tricky part. Only tutorial from the rust book was useful here as every other web server developement in rust seems to be async ones using libraries so I would have to make a complicated system to communicate with the mpv. Using the simple Tcp connection let me make a thread with mpv instance in the scope. I do need to support https and file uploads and other things, but I haven't had any luck finding a solution that works with simple Tcp connection like in the tutorial. Let me know if you know anything.

Github: https://github.com/Atreyagaurav/local-mpv

 

Hi all,

mpv communities seem to be tiny in lemmy, so I'm sharing it here.

This is a program I made for music control from local network.

You can run it in a computer with some local media files, or youtube links or any other links yt-dlp supports. And then with the server, you can control the media player and the playlist from any devices in your local network. So that you can just show a QR code or something to house guests for parties, or have it bookmarked within family to control the music.

I wanted to make something similar to how youtube app let's you play in TV and such, but my skills were not enough to do that. So I tried a simple alternative that works with computers. In an ideal world, I could make "Play with local mpv server" option come while on other android apps, but I have zero experience in android app development and it looks complicated.

I know some other programs also give option to control media, but I wanted to give it a go with a simple implementation. Making the web-server was a tricky part. Only tutorial from the rust book was useful here as every other web server developement in rust seems to be async ones using libraries so I would have to make a complicated system to communicate with the mpv. Using the simple Tcp connection let me make a thread with mpv instance in the scope. I do need to support https and file uploads and other things, but I haven't had any luck finding a solution that works with simple Tcp connection like in the tutorial. Let me know if you know anything.

Github: https://github.com/Atreyagaurav/local-mpv

 

cross-posted from: https://lemmy.world/post/11271385

Basically, you can choose some slides from an opened .tex file to copy. It also has the function to see which graphics files are included in the selected files, so you know which ones to copy.

Here is the Github link: https://github.com/Atreyagaurav/beamer-quickie

The PDF pages are shown using the SyncTeX (if available) so that you can visually choose the slides as long as there is a single .tex source file, (might still work without synctex for simple cases).

I've made it on Linux, so it hasn't been tested in windows. You probably will need to compile gtk on Windows if you want to make it work. So if someone is really interested let me know, I can give instructions. Even in linux you'll need to install dependencies.

 

Basically, you can choose some slides from an opened .tex file to copy. It also has the function to see which graphics files are included in the selected files, so you know which ones to copy.

Here is the Github link: https://github.com/Atreyagaurav/beamer-quickie

The PDF pages are shown using the SyncTeX (if available) so that you can visually choose the slides as long as there is a single .tex source file, (might still work without synctex for simple cases).

I've made it on Linux, so it hasn't been tested in windows. You probably will need to compile gtk on Windows if you want to make it work. So if someone is really interested let me know, I can give instructions. Even in linux you'll need to install dependencies.

view more: next ›