nutomic

joined 5 years ago
MODERATOR OF
[–] [email protected] 7 points 1 month ago

Thank you, all donations help :)

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

I hope youre right :)

[–] [email protected] 0 points 1 month ago (1 children)

Oh no i'm so offended 😱😱😱

[–] [email protected] 1 points 1 month ago (1 children)

Seems like a lot of effort, and then people will still keep complaining and demand more.

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

Small bumps are no problem, but for bigger ones you kind of need to jump with your bodyweight. If you miss it then you can crash.

[–] [email protected] 7 points 2 months ago (1 children)

Liberapay is preferable as it has low fees and is also open source.

[–] [email protected] 15 points 2 months ago

I actually got in contact with them yesterday, will probably have a meeting soon to discuss how we can work together with them.

[–] [email protected] -3 points 2 months ago (6 children)

Sure just one line I have to parrot and you will be happy. But then it still wont be enough and you will ask something else, right? I dont have time for your little games, I have work to do.

[–] [email protected] 6 points 2 months ago

Liberapay is the best option, because it doesnt take any fees beyond payment processing, and its also open source. Thanks for donating!

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

I see, or simpler yet a special badge which is shown next to donor's username. Definitely worth considering. Thanks for the suggestion!

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

And would happily donate to them if they needed it.

So you are not donating anyway? It seems to me like there is a vocal minority of users who make any type of excuse for the fact that they are unwilling to donate. Instead of being honest about that, you demand from us to make more and more changes, which will piss off other users and will likely not lead to any actual increase in donations.

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

So you would be fine if lemmy.ml was run exactly like it is now, but without Dessalines or me taking direct actions as admins?

 

We also have documentation to setup the dev environment: https://join-lemmy.org/docs/contributors/02-local-development.html

If you have questions, feel free to ask here, in the relevant issue or in matrix.

 

Which of these code styles do you find preferable?

First option using mut with constructor in the beginning:

  let mut post_form = PostInsertForm::new(
    data.name.trim().to_string(),
    local_user_view.person.id,
    data.community_id,
  );
  post_form.url = url.map(Into::into);
  post_form.body = body;
  post_form.alt_text = data.alt_text.clone();
  post_form.nsfw = data.nsfw;
  post_form.language_id = language_id;

Second option without mut and constructor at the end:

  let post_form = PostInsertForm {
    url: url.map(Into::into),
    body,
    alt_text: data.alt_text.clone(),
    nsfw: data.nsfw,
    language_id,
    ..PostInsertForm::new(
      data.name.trim().to_string(),
      local_user_view.person.id,
      data.community_id,
    )
  };

You can see the full PR here: https://github.com/LemmyNet/lemmy/pull/5037/files

 

r/privatelife on Reddit is once again the primary and sole host for this community. Any further communication will be on Reddit or Telegram. Thanks for the attention!

 

This means that it is not federated, and only users logged in to lemmy.ml can see it.

 

/c/opensource is currently unmoderated because all the existing mod accounts are inactive.

Thats why we are looking for new moderators. To apply as mod, reply below indicating what would make you a good moderator for this community, and mention any previous mod experience you have. You should be registered on lemmy.ml and have previous posting history.

 

This community is currently unmoderated because the only moderator has deleted his account. For this reason the community is currently locked until new mods are added.

To apply as /c/politicalhumer mod, reply below indicating what would make you a good moderator for this community, and mention any previous mod experience you have. You should be registered on lemmy.ml and have previous posting history.

95
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

If you write a plugin, let me know how it goes!

Link to PR

26
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

The names of previous Lemmy versions were all very boring and repetetive. We need something much more creative. Any ideas?

0
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 
  • fix mobile css layout by @mstcl
  • Add follow instance button in article nav (fixes #31)
  • Dont allow / in article title (fixes #25)
  • Include domain when generating diff link (fixes #23)
  • Minor changes to create/edit article page (fixes #24)
view more: ‹ prev next ›