• 0 Posts
  • 25 Comments
Joined 4 years ago
cake
Cake day: June 24th, 2020

help-circle
  • I think most orgs would want to own the server and for messages to not be end-to-end encrypted. All connections to the server would still be encrypted.

    That would be more in-line with slack or something.

    If you’re referring to federation specifically then that’s going to get pretty complicated with security policies.


  • Something which notifies you whenever a new comment or reply is made to a selected post/comment, so that you can keep track of any new conversation.

    Something like this would be awesome as a core Lemmy feature IMO. It would essentially turn a post (or maybe any comment tree?) into a matrix style room. Lemmy is actually decent for long term discussion (e.g. helping someone with a problem), but not if there are more than two people involved.




  • pretty soon you get really good at judging how many calories are in things.

    This was the key for me. Understanding the cost of the food I enjoy let me cut back on rice and replace it with ice cream, for example.

    Also when I’m logging food, it adds a bit of friction, especially for new foods, so I eat less just because of that. Usually that’s when I realise that I’m not eating because of hunger.






  • Browsing 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. 😭