DapperPenguin

joined 1 month ago
[–] DapperPenguin@programming.dev 3 points 4 days ago* (last edited 4 days ago) (3 children)

I understand your sentiment. I wonder, if one were to "recruit" a lot of popular youtubers to stream in a decentralized fediverse manner by offering to make a simple hardware solution for them, would it encourage others to follow? How much of an investment would that be? Presumably you could keep the hardware "product" going and if more catch on they could also be directed towards your solution as helping them get in (quicker to market) as the network effect grows.

One would need to address the way people could monetize themselves aside from getting direct viewer support via subscriptions or donations.

Guess this is what happens when a post in the lemmy verse gets about 100 comments.

[–] DapperPenguin@programming.dev 14 points 6 days ago (7 children)

Can't people just make new accounts? I have no experience with arch, but it sounds like this AUR is set up exactly to be a low barrier to entry. Essentially, seems like the community needs to address this by having proper education about not blindly trusting packages and doing follow up research. Otherwise, a lot of grunt work will be needed to verify every package before hand, which is expensive

[–] DapperPenguin@programming.dev 1 points 2 weeks ago* (last edited 2 weeks ago)

I appreciate reading comments that are well written. If an AI was used to create the argument in its entirety, or edit it, so be it. What matters is content and context. If it's eloquent, without being obnoxiously verbose, that's a bonus. It doesn't feel like a lot of filler bullshit was added. ETA: I want to clarify, flooding the web with AI bots to astroturf agendas is not cool.

[–] DapperPenguin@programming.dev 13 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

I appreciate rust as much as the next dev. But you can define your own types in C just as well? And with the proper warnings and errors -Wall -Werror in place, any warning is an error, and implicit conversions should probably be a warning right?

ETA: Just tried with the following C code and could not get it to fail with gcc.

typedef int t_0;
typedef long t_1;

t_0 test() {
  t_1 foo = 1;
  return foo;
}

Tried with gcc -Wall -Wextra -Wpedantic -Werror and it compiled just fine.