• 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle



  • Well, I’m not that pessimist, at least not on those 2 points. I hardly see how CSP would prevent addon to do their stuff, as CSP is protection against cross site attacks, and extension aren’t sites (thought I actually remember having an issue like that once making an extension, but correcting the extensio’s permissions solved it).

    And DRMs only apply on the video stream. It won’t protect the webpage or the javascript. Plus there are content on youtube that they are contractually required to not put behind DRMs.

    What I’m worried youtube will do is simply that their server will refuse to send the video until a certain time after the user load the page, thid time corresponding to a bit less than the time the user would wait by playing ads.

    It won’t force the user to watch ads. But it’ll deincensitive it by a certain amount.






  • The table that store upvote is named comment_like and post_like. Here, you have the vote’s unique id, the local user id that is linked to the it’s “global id”, the local post id which is also linked to it’s “global id”, the value of the vote (+/-1) and the date.

    So votes are indeed totally not anonymous.

    (and I run my server sinces less than a week, and the sum of entry in the two table is of 114 950 votes. Certainly enought for doing a bunch of analysis.)

    Example of datas for the comment vote table (ids has been changed)

      id   | person_id | comment_id | post_id | score |         published          
    -------+-----------+------------+---------+-------+----------------------------
         1 |        10 |          3 |      61 |     1 | 2023-06-17 20:01:20.948684
         2 |        34 |          1 |      22 |     1 | 2023-06-17 20:01:26.346783
         3 |        12 |          2 |      54 |     1 | 2023-06-17 20:01:27.627144
         4 |        20 |          7 |      91 |     1 | 2023-06-17 20:01:36.570636
    

    Ping @[email protected]