GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by feld (feld@friedcheese.us), page 3

  1. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 09:08:54 JST feld feld
    in reply to
    • Tim W RESISTS
    @tim you goddamn right
    In conversation about 3 days ago from friedcheese.us permalink

    Attachments


  2. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 08:26:26 JST feld feld
    it gets eerily quiet, i look to my left

    my dog is sitting staring at me patiently waiting for my attention. 😍 she's so well behaved
    In conversation about 3 days ago from friedcheese.us permalink
  3. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 08:22:45 JST feld feld
    in reply to
    • feld
    • wuhan.bat™
    @jae I could probably disable the redis caches now and let it do the default in-memory and in-db, but considering that it's only using 11MB I guess I don't care... lol ...
    In conversation about 3 days ago from gnusocial.jp permalink
  4. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 08:18:31 JST feld feld
    in reply to
    • wuhan.bat™
    @jae yeah the performance difference is ridiculous, nobody should be using the sqlite deployment for anything important IMHO
    In conversation about 3 days ago from friedcheese.us permalink
  5. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 08:03:40 JST feld feld
    Sometimes sqlite really is shit

    I have a lot of repos in my private gitea server because I mirror repos I care about accessing locally

    well, it's come to the point where loading my dashboard after login takes somewhere between 4-8 seconds to render the page... the template it says renders in a dozen or so milliseconds

    so I enabled all the redis caching options.

    It got better. 1.5 - 2 seconds now.

    I just migrated the gitea database to my postgresql server

    Now it loads in 25ms

    Like holy shit batman, that's a world of difference
    In conversation about 3 days ago from friedcheese.us permalink
  6. Embed this notice
    kill -9 (kill_9@ieji.de)'s status on Friday, 20-Jun-2025 07:33:23 JST kill -9 kill -9
    in reply to
    • Delta Chat

    @delta it is because of the double ratcheting of the signal protocol. But a decentralised infrastructure will be much more resilient in the dystopia that is approaching rapidly. Moreover even though I really like Signal I don’t think they can resist the tremendous pressure they’ll be put under. Delta chat due to its back to the basics design will have a much better chance. I hope the full dystopia never arrives but….

    In conversation about 3 days ago from ieji.de permalink Repeated by feld
  7. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 06:36:28 JST feld feld
    Post-Compromise Security and Forward Secrecy don't seem to be helping out the people who have their Signal chats entered into evidence in court though

    RT: https://furry.engineer/users/soatok/statuses/114708631216466170
    In conversation about 3 days ago from friedcheese.us permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Soatok Dreamseeker (@soatok@furry.engineer)
      from Soatok Dreamseeker
      And the reason I will not be kind is simple: The people doing this are actively peddling Security Theater when they tell people to use something less-cryptographically-secure than Signal. The sheer arrogance of some of these app developers to peddle bullshit "privacy checklists" while doing things like... *checks notes* removing Post-Compromise Security and Forward Secrecy in their Signal fork? Fucking incredible. Kill it with fire.
  8. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 06:32:10 JST feld feld
    there are multiple claims on social media that ICE agents are being lured into "traps" where they are being doused in glitter as some way to make them identifiable as ICE agents but not a single photo or video of this seems to exist and it seems to ignore the fact that people who don't sit on the internet all day have access to a shower
    In conversation about 3 days ago from friedcheese.us permalink
  9. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 06:12:36 JST feld feld
    in reply to
    • 🆘Bill Cole 🇺🇦
    • Phantasm
    • Pawlicker
    @grumpybozo @PurpCat @phnt the US will never again find a path towards being able to pass meaningful Constitutional Amendments if the other 49% of the country is the enemy forever
    In conversation about 3 days ago from friedcheese.us permalink
  10. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 06:07:39 JST feld feld
    in reply to
    • Phantasm
    • Pawlicker
    @PurpCat @phnt

    In another universe:

    🇸🇬 I'm so sorry I used to be a capitalist, I didn't understand the consequences. Please let me join your socialist movement I want to help now

    :colbert: no, go fuck yourself



    Well that's one way to ensure the socialist labor movement is on the road to success :tipshat:
    In conversation about 3 days ago from gnusocial.jp permalink
  11. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 05:56:22 JST feld feld
    in reply to
    • feld
    • Johnny Peligro
    @mischievoustomato my entire claude prompt was

    When I try to compile this on aarch64, I get the following error:

    error[E0308]: mismatched types
    --> src/interface/unix.rs:232:28
    |
    232 | let nlen: i8 = (*sa).sa_data[3];
    | -- ^^^^^^^^^^^^^^^^ expected `i8`, found `u8`
    | |
    | expected due to this
    |
    help: you can convert a `u8` to an `i8` and panic if the converted value doesn't fit
    |
    232 | let nlen: i8 = (*sa).sa_data[3].try_into().unwrap();
    | ++++++++++++++++++++

    error[E0308]: mismatched types
    --> src/interface/unix.rs:233:28
    |
    233 | let alen: i8 = (*sa).sa_data[4];
    | -- ^^^^^^^^^^^^^^^^ expected `i8`, found `u8`
    | |
    | expected due to this
    |
    help: you can convert a `u8` to an `i8` and panic if the converted value doesn't fit
    |
    233 | let alen: i8 = (*sa).sa_data[4].try_into().unwrap();
    | ++++++++++++++++++++

    For more information about this error, try `rustc --explain E0308`.
    error: could not compile `netdev` (lib) due to 2 previous errors


    I believe this is due to arm defining char as unsigned: @https://github.com/ARM-software/abi-aa/blob/main/aapcs64/aapcs64.rst#10arm-c-and-c-language-mappings

    how would you fix this while retaining support for all the existing architectures/targets?



    and like magic, it fixed it perfectly without me needing to spend a couple hours reading Rust 101
    In conversation about 3 days ago from gnusocial.jp permalink
  12. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 05:54:56 JST feld feld
    in reply to
    • Johnny Peligro
    @mischievoustomato noooo what are you doing you can't let an AI write 6 characters that's illegal nooooooooooooooooOOOOOOO
    In conversation about 3 days ago from friedcheese.us permalink

    Attachments


    1. https://media.friedcheese.us/uploads/21/1c/0a/211c0a96c99beedeae1ecd3372a90a3da9a00735470f5a3d8d1c8ede1d204bf8.png
  13. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 05:53:01 JST feld feld
    in reply to
    • Fish of Rage
    @sun turns out decades of everyone supporting one CPU arch was a bad idea
    In conversation about 3 days ago from friedcheese.us permalink
  14. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 05:49:21 JST feld feld
    in reply to
    • feld
    normally I would have just left the bug report open and moved on with my life, but these tools make it possible to provide useful contributions without needing to be an expert in the language or framework.
    In conversation about 3 days ago from friedcheese.us permalink
  15. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 05:46:43 JST feld feld
    idk wtf is going on with Oracle, never got my account approved for their cloud shit yet so I redownloaded Parallels on my Mac, installed aarch64 FreeBSD VM, did the build test of the broken Rust code, confirmed the error, fixed the error with the help of Claude (I've never written a line of Rust in my life), sent a pull request upstream

    before you scream "omgggggg you used AI to write the code it's broken or you stole from another project" you can relax, it was just explicitly casting two variables.
    In conversation about 3 days ago from friedcheese.us permalink
  16. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 05:02:59 JST feld feld
    Azrael by Trivax
    In conversation about 3 days ago from friedcheese.us permalink

    Attachments


  17. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 04:57:27 JST feld feld
    in reply to
    • Fish of Rage
    @sun whoopi would be furious, joy would lose her mind, and alyssa would be humping his leg
    In conversation about 3 days ago from friedcheese.us permalink
  18. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 04:36:10 JST feld feld
    in reply to
    • Delta Chat
    • Fabrice Desré
    @fabrice @delta honestly people used to say this about libjpeg, libpng, etc because those were juicy vectors for exploits exploited across messengers but we didn't write novel implementations to reduce risk across the userbase
    In conversation about 3 days ago from friedcheese.us permalink
  19. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 04:33:20 JST feld feld
    in reply to
    • Wary Jerry
    • Simon Zerafa
    • Fish of Rage
    • Scott Murray :neurodiversity:
    @jerry @simonzerafa @scott Pleroma has exposed instance blocks in the API by default for a long time now

    and honestly it's kind of required. If a server blocks you, you should want to add a reciprocal block to make sure you don't fetch any posts from them either. @sun went through this problem a while ago and had to write a script to automate reciprocal blocks but we should probably integrate functionality that does it automatically... though it would only work for other Pleroma instances right now unless a standard is developed
    In conversation about 3 days ago from friedcheese.us permalink
  20. Embed this notice
    feld (feld@friedcheese.us)'s status on Friday, 20-Jun-2025 04:27:26 JST feld feld
    in reply to
    • 🆘Bill Cole 🇺🇦
    @grumpybozo but why continue to alienate them and make them enemies? you can't expect everyone to have awakened at the same time you did, especially if you have no idea what their life experience is or where they have been getting their news at for years
    In conversation about 3 days ago from friedcheese.us permalink
  • After
  • Before

User actions

    feld

    feld

    Live, Laugh, Like and SubscribeFastmail referral link -- get 10% off your first year https://ref.fm/u12606493

    Tags
    • (None)

    Following 0

      Followers 1

      • GNU Too

      Groups 0

        Statistics

        User ID
        274913
        Member since
        6 Aug 2024
        Notices
        7105
        Daily average
        22

        Feeds

        • Atom
        • Help
        • About
        • FAQ
        • TOS
        • Privacy
        • Source
        • Version
        • Contact

        GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

        Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.