I trust you to make more of them.
- 0 Posts
- 9 Comments
I haven’t had a chimichanga in so long that I forgot it was a thing.
We urgently need to see a cross-section.
Corngood@lemmy.mlto Fediverse@lemmy.world•What Would a Fair and Community-Focused Monetization Model on the Fediverse Look Like?English1·5 months agoPossibly, but I’m not very familiar with wordpress.
I imagined something like:
https://nextcloud.com/partners/
The idea is that I could pay someone to admin the same services that they provide to the public.
So like maybe lemmy.world and the other popular instances could offer a Lemmy instance, and maybe also offer: matrix, pixelfed, mastodon, etc etc.
There are decent options out there for mainstream services like email, web, etc. but maybe not for more niche services like lemmy.
Corngood@lemmy.mlto Fediverse@lemmy.world•What Would a Fair and Community-Focused Monetization Model on the Fediverse Look Like?English2·5 months agoI’ve been wondering if there’s an opportunity for instance admins (e.g. lemmy.world) to offer managed instances for user domains.
It would be great if it was easier for the average person to own a domain and use it for email, matrix, Lemmy, etc.
I propose we call that Cavalry Pie.
Corngood@lemmy.mlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish7·1 year agoIt’s not just the visible complexity in this one file. The point of it is to keep a subscriber count in sync, but you have that code I referenced above, plus:
LinkPersonCommunityCreatedEvent
LinkPersonCommunityDeletedEvent
LinkPersonCommunityCreatedPublisher
LinkPersonCommunityDeletedPublisher
And then there are things like
LinkPersonCommunityUpdated[Event/Publisher]
which don’t even seem to be used.This is all boilerplate IMO.
And all of that only (currently) serves keeping that subscriber count up to date.
And then there’s the hidden complexity of how things get wired up with spring.
And after all that it’s still fragile because that event is not tied to object creation:
@Transactional public void addLink(Person person, Community community, LinkPersonCommunityType type) { final LinkPersonCommunity newLink = LinkPersonCommunity.builder().community(community) .person(person).linkType(type).build(); person.getLinkPersonCommunity().add(newLink); community.getLinkPersonCommunity().add(newLink); linkPersonCommunityRepository.save(newLink); linkPersonCommunityCreatedPublisher.publish(newLink); }
And there’s some code here:
final Set<LinkPersonCommunity> linkPersonCommunities = new LinkedHashSet<>(); linkPersonCommunities.add(LinkPersonCommunity.builder().community(community).person(person) .linkType(LinkPersonCommunityType.owner).build()); linkPersonCommunities.add(LinkPersonCommunity.builder().community(community).person(person) .linkType(LinkPersonCommunityType.follower).build()); communityService.createCommunity(community); linkPersonCommunityRepository.saveAllAndFlush(linkPersonCommunities);
that is able to bypass the community link service and create links in the repository directly, which would presumably not trigger than event.
Maybe there’s a good reason for that, but it sure looks fragile to me.
Corngood@lemmy.mlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish16·1 year agoHere’s an example:
IMO that’s a lot of code (and a whole dedicated file) just to (magically) hook a global event and increase the subscriber count when a link object is added.
The worst part is that it’s all copy/pasted into a neighbouring file which does the reverse:
It’s not the end of the world or anything, I just think good code should surprise you with its simplicity. This surprises me with its complexity.
Corngood@lemmy.mlto Fediverse@lemmy.world•Sublinks Aims to Be a Drop-In Replacement for LemmyEnglish87·1 year agoBrowsing the code makes me angry at how bloated Java projects are:
package com.sublinks.sublinksapi.community.repositories; import com.sublinks.sublinksapi.community.dto.Community; import com.sublinks.sublinksapi.community.models.CommunitySearchCriteria; import com.sublinks.sublinksapi.post.dto.Post; import com.sublinks.sublinksapi.post.models.PostSearchCriteria; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import java.util.List; public interface CommunitySearchRepository { List<Community> allCommunitiesBySearchCriteria(CommunitySearchCriteria communitySearchCriteria); }
Every file is 8 directories deep, has 20 imports, and one SQL statement embedded in a string literal. 😭
The first decision has to be vim/emacs.