thevoidzero

joined 2 years ago
[–] thevoidzero@lemmy.world 4 points 2 days ago (2 children)

I'll say it as much as I can. Tax business, on profit not individuals on their salary. Salary comes from a business paying you, they have accountants, they can pay taxes.

And when you tax profits, they have the incentive to reinvest in the company, either by hiring more people, or building things, or spending money on research. Instead of giving record profits to shareholders.

Of course you can have small businesses below certain employee numbers exempt or something like that to help new businesses.

This of course means you can't hand out "government help" by just taking less taxes from people already making money, and have to install give real help to people in need irrespective of their salary.

And of course there might be some details that should be added to make it good.

[–] thevoidzero@lemmy.world 4 points 5 days ago

No worries my back remembers all the cutting and staining

[–] thevoidzero@lemmy.world 3 points 1 week ago (1 children)

Luckily I saw that video one time about what things are called in USA/UK/AUS. Until my brain recalled that, I was really confused about this comment

[–] thevoidzero@lemmy.world 3 points 1 week ago (1 children)

Again, thinking someone/something needs to be super intelligent to take power is not good. They get power because stupid people thinking they're intelligent will put them in power

[–] thevoidzero@lemmy.world 1 points 1 week ago

This is what I really want

[–] thevoidzero@lemmy.world 2 points 1 week ago

I recently read it in a book. It was used for an evolved human form. That was my first time seeing it other than programming too

[–] thevoidzero@lemmy.world 8 points 1 week ago* (last edited 1 week ago)

Some people don't even believe in evolution, do there it is.

And besides that, some people want to believe their food don't have feelings.

It makes sense all organisms feel some sort of pain because it's related to self preservation, but not all of them have an ability to communicate about the pain. And even less number of them communicate pain in a way we could understand, and even less that we actually care to listen.

[–] thevoidzero@lemmy.world 2 points 1 week ago* (last edited 1 week ago)

Yeah, I really like it. But I also started with it because my university at that time only taught open source apps, and later on other universities did Arc but I just did the same thing in QGIS. But when you're starting it might be a little of an adjustment.

They also just released v4.0 with full migration to qt6, I haven't tested it out that well yet.

Btw I am currently working on a programming language that uses custom syntax to do fun analysis related to networks (directed graphs). And I have a GIS support for reading/writing network and attributes. I made it for rivers first, but I'm expanding to all directed graph. I've a mix of Computer and Geosciences background so I had fun doing something in the middle that most people don't.

Edit: I am looking for people to try it out, but I have problem finding people that want to code in a new language, and for network related tasks.

[–] thevoidzero@lemmy.world 4 points 1 week ago (2 children)

ArcGIS is the proprietary industry standard, but QGIS is catching up. I personally don't like Arc and have only used it when I was in industry. Even in academia colleges pay for ArcGIS but I just use QGIS.

You can also customize QGIS easily and there're a lot of community plugins. And works well with other open source tools or CLI tools.

Main thing that makes Arc popular in industry is the liability. They can claim they used the best available industry standard software, so the errors are not their fault, and deflect it to the software company. While with open-source alternatives they might be held liable. It's not a problem if the open source is the standard. But that only happens when they were there first, hard to do it otherwise.

[–] thevoidzero@lemmy.world 2 points 1 week ago

I'm not saying there aren't exceptions. linux users come from various backgrounds, if someone told me they use Linux I don't assume they're from CS. I'm not either. But given they're not from CS, the chances they've even heard of it is very low.

It's just a sad but real fact that when you go out into the real world outside of your online communities with similar interests, people don't know Linux or open source.

[–] thevoidzero@lemmy.world 27 points 1 week ago (8 children)

I used to think everyone at least knew VLC media player or Firefox, but nope.

Now I first ask which field, if they're CS they know linux, if art, they know blender, if geosciences they know QGIS, anything else is hard

 

Hi all,

I like programming and do a lot of hobby projects. But I don't really do web development, or android, which seems to be what most work are about.

I like making desktop applications, computational projects, etc. i also like problems where I can solve/automate tasks using programming. I have like 100 projects in GitHub now, and I love contributing to open source community. But it sometimes makes me feel like I could be using that time to do things that could make money instead of working on projects that noone will use.

I'm looking for small jobs, independent tasks I could do for minor income. But if it's in python or rust, I am open to a bit larger projects.

 

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

Hi all,

I don't know where would be the best place to post this, but I wanted some people's feedback on a DSL that I wrote for network analysis.

I am using nom for writing the lexer and parser, then using abi_stable crate for data types so that you can write plugins to the language and load them dynamically as well.

This language is made to work by loading a tree graph (network) and then call a bunch of node or network functions that work on it. There are different ways you can run functions, and use node/network attributes.

I am mostly self-taught, so it took a lot of years to get to a level where I could write something like this. I am learning a lot and having a lot of fun in the process, but I want this to develop into something that can have a practical usefulness to people. Since I am in the field of hydrology, I am making it with river networks in the mind.

To try it out, you can either download the executables for windows from the releases page, or you can compile it using cargo (for all OS; except android where GUI won't work, CLI will work in termux). I have some basic examples in the Learn By Examples section of the User Guide that you can follow.

Please let me know if you can't compile/use it as well. I have tried to make sure it has required instructions, but I could have missed something.

 

Hi all,

I don't know where would be the best place to post this, but I wanted some people's feedback on a DSL that I wrote for network analysis.

I am using nom for writing the lexer and parser, then using abi_stable crate for data types so that you can write plugins to the language and load them dynamically as well.

This language is made to work by loading a tree graph (network) and then call a bunch of node or network functions that work on it. There are different ways you can run functions, and use node/network attributes.

I am mostly self-taught, so it took a lot of years to get to a level where I could write something like this. I am learning a lot and having a lot of fun in the process, but I want this to develop into something that can have a practical usefulness to people. Since I am in the field of hydrology, I am making it with river networks in the mind.

To try it out, you can either download the executables for windows from the releases page, or you can compile it using cargo (for all OS; except android where GUI won't work, CLI will work in termux). I have some basic examples in the Learn By Examples section of the User Guide that you can follow.

Please let me know if you can't compile/use it as well. I have tried to make sure it has required instructions, but I could have missed something.

 

Hi all.

I want to develop a plugin system within my program, and I have a trait that functions defined by plugins should implement.

Currently, my code gets all the functions in a HashMap and then calls them by their name. Problem is, I have to create that hashmap myself by inserting every function myself.

I would really appreciate it if there was a way to say, suppose, all pub members of mod functions:: that implement this trait PluginFunction call register(hashmap) function. So as I add more functions as mod in functions it'll be automatically added on compile.

Pseudocode:

Files:

src/
├── attrs.rs
├── functions
│   ├── attrs.rs
│   ├── export.rs
│   └── render.rs
├── functions.rs
├── lib.rs

Basically, in mod functions I want:

impl AllFunctions{
    pub fn new() -> Self {
       let mut functions_map = HashMap::new();[[
       register_all!(crate::functions::* implementing PluginFunction, &mut functions_map);
       Self { function_map }
  }
}

Right now I'm doing:

impl AllFunctions{
    pub fn new() -> Self {
       let mut functions_map = HashMap::new();[[
       crate::functions::attrs::PrintAttr{}.register(&mut functions_map);
       crate::functions::export::ExportCSV{}.register(&mut functions_map);
       crate::functions::render::RenderText{}.register(&mut functions_map);
       // More as I add more functions
       Self { function_map }
  }
}
 

TLDR: I recently found out there is "deprecated" XFA format that acrobat still uses in their programs, and government forms have those for dynamic contents in the form that we cannot fill using other softwares. Looking for solutions.


This has been a problem since a long time. Back in 2020 I had dual boot because I needed acrobat to fill PDF forms, but after finding xournal++ program I nuked windows partition. Windows update messing up grub was one of the reason I decided to nuke windows and looking at the posts recently it's still a huge issue.

So the problem I recently encountered is that even the government issued PDF forms need acrobat reader (which is free software for PDF, but only available in windows and mac). Which I didn't think would be an issue and just filled the form in Firefox.

Turns out that was problematic as the PDF forms has fields that are automatically filled, calculated from other fields, only made available when certain checkboxes are checked, etc. and Firefox doesn't support that. Even trying to install the acrobat reader snap (which uses wine) in a VM and opening the PDF on it didn't work. The UI makes me think it's a really old version of the reader.

So without searching for other devices (and filling a PDF with my sensitive information) what solution is there? Installing windows is a hassle even in a VM, and it will use up precious SSD memory. But that's the only solution I can think of.

I also found masterpdf or something like that which the Arch wiki says has support for that, but it didn't work. It says XFA forms are converted to acro forms, and the dynamic part doesn't work. There are websites that promise to work for such forms, but I'm not going to be putting sensitive info on web apps.

 

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.

 

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

view more: next ›