Bobinas P4G
  • Login
  • Public

    • Public
    • Groups
    • Popular
    • People

Notices by Carlos Solís (csolisr@social.azkware.net)

  1. Carlos Solís (csolisr@social.azkware.net)'s status on Saturday, 01-Jul-2023 00:17:16 UTC Carlos Solís Carlos Solís

    The latest version of #Lemmy (0.18.x) being so broken, that I can only reply to posts using #Pleroma / #Akkoma but not Lemmy, is something I frankly didn’t expect. Hopefully the #Kbin packaging for #YunoHost is working soon

    In conversation Saturday, 01-Jul-2023 00:17:16 UTC from social.azkware.net permalink
  2. Carlos Solís (csolisr@social.azkware.net)'s status on Saturday, 24-Jun-2023 03:06:04 UTC Carlos Solís Carlos Solís
    • YunoHost
    A quick technical comparison between the two leading tools in the #Threadiverse:

    #Kbin: requires several external dependencies not available in the default repositories, including one that isn't even in a distro package, just the tarball with the binaries

    #Lemmy: an architecture so complex, that @yunohost decided to just decompress the #Docker image to package it LOL
    In conversation Saturday, 24-Jun-2023 03:06:04 UTC from social.azkware.net permalink
  3. Carlos Solís (csolisr@social.azkware.net)'s status on Monday, 19-Jun-2023 23:29:43 UTC Carlos Solís Carlos Solís
    Sad to confirm that #CalcKey is handling #KBin magazines even worse than #Pleroma / #Akkoma. To be fair, most microblogging software borks hard on anything that's not a microblog (e.g. #PeerTube) but I didn't expect #MissKey, a software suite that explicitly supports its own groups, to crash and burn on #KBin / #Lemmy
    In conversation Monday, 19-Jun-2023 23:29:43 UTC from social.azkware.net permalink
  4. Carlos Solís (csolisr@social.azkware.net)'s status on Monday, 19-Jun-2023 23:29:07 UTC Carlos Solís Carlos Solís
    in reply to
    • YunoHost
    • Carlos Solís
    By the way, if somebody could help me convert the installation script for #KBin to a @yunohost script, that'd be great. (Yes I know it's #GitHub but until the YNH team can put on the work to move elsewhere, I'll have to mirror) https://github.com/csolisr/kbin_ynh
    In conversation Monday, 19-Jun-2023 23:29:07 UTC from social.azkware.net permalink

    Attachments

    1. GitHub - csolisr/kbin_ynh: Kbin is a decentralized content aggregator and microblogging platform running on the Fediverse network.
      Kbin is a decentralized content aggregator and microblogging platform running on the Fediverse network. - GitHub - csolisr/kbin_ynh: Kbin is a decentralized content aggregator and microblogging pla...
  5. Carlos Solís (csolisr@social.azkware.net)'s status on Friday, 16-Jun-2023 18:24:32 UTC Carlos Solís Carlos Solís

    My #FollowFriday recommendation goes to the New Communities meta-community at Lemmy World, where you can find pretty much every group that is moving away from #Reddit in almost real time: https://lemmy.world/c/newcommunities

    In conversation Friday, 16-Jun-2023 18:24:32 UTC from social.azkware.net permalink

    Attachments

    1. New Communities - Lemmy.world
      A place to post new communities all over Lemmy for discovery and promotion. # Formatting Please include this following format in your post: [link text](/c/community@instance.com) This provides a link that should work across instances, but in some cases it won’t You should also include either: !community@instance.com or instance.com/c/community [http://instance.com/c/community] # FAQ: Q: Why do I get a 404? A: At least one user in an instance needs to search for a community before it gets fetched. Searching for the community will bring it into the instance and it will fetch a few of the most recent posts without comments. If a user is subscribed to a community, then all of the future posts and interactions are now in-sync. Q: When I try to create a post, the circle just spins forever. Why is that? A: This is a current known issue with large communities. Sometimes it does get posted, but just continues spinning, but sometimes it doesn’t get posted and continues spinning. If it doesn’t actually get posted, the best thing to do is try later. However, only some people seem to be having this problem at the moment.
  6. Carlos Solís (csolisr@social.azkware.net)'s status on Friday, 09-Jun-2023 01:43:26 UTC Carlos Solís Carlos Solís
    #Reddit causing yet another surge of immigrants to the #Fediverse is an interesting state of things. But the sad part is that Reddit itself used to be the open-source alternative to #Digg (even partly built by THE Aaron Swartz of #RSS fame). Then in 2017 they closed the source code and now here we are, on the third step of #EmbraceExtendExtinguish.
    In conversation Friday, 09-Jun-2023 01:43:26 UTC from social.azkware.net permalink
  7. Carlos Solís (csolisr@social.azkware.net)'s status on Thursday, 23-Mar-2023 00:31:37 UTC Carlos Solís Carlos Solís

    Here’s hoping that @mozilla ensures that all of the training data they use on their upcoming #MozillaAI is under a #FreeCulture license. Consent is very important, and if #AI developers want to recover the trust of the creative circles, this is an important step.

    In conversation Thursday, 23-Mar-2023 00:31:37 UTC from social.azkware.net permalink
  8. Carlos Solís (csolisr@social.azkware.net)'s status on Thursday, 22-Dec-2022 00:29:53 UTC Carlos Solís Carlos Solís
    • YunoHost

    Talking about #Calckey. I found a more efficient way to install it, by directly patching the existing #Misskey installer for @yunohost . To get the latest version and checksum, visit https://codeberg.org/calckey/calckey/releases and download the tarball, then run sha256sum on it. Then substitute it on the script below and run it on your server:

    #!/bin/bash version='13.0.5' checksum='97a19c8f4e58e3dfb7085a0aca0d48540a5b39e3fabec3a623aad866de634c74' git clone https://github.com/YunoHost-Apps/misskey_ynh mv misskey_ynh calckey_ynh cd ./calckey_ynh find ./ -type f -not -ipath "*.git" -exec sed -i 's/misskey-hub.net/i.calckey.cloud/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/github.com\/misskey-dev/codeberg.org\/thatonecalculator/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/misskey/calckey/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/Misskey/Calckey/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/refs\/tags\/[0-9]*.[0-9]*.[0-9]*/v'$version'/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/[0-9]*.[0-9]*.[0-9]*~ynh[0-9]/'$version'~ynh1/g' {} \; find ./ -type f -not -ipath "*.git" -exec sed -i 's/SOURCE_SUM=[0-9a-f]*/SOURCE_SUM='$checksum'/g' {} \; cd .. sudo yunohost app install ./calckey_ynh --force
    In conversation Thursday, 22-Dec-2022 00:29:53 UTC from social.azkware.net permalink

    Attachments

    1. calckey
      from calckey
      A greatly enhanced fork of Misskey with better UI/UX, security, features, and more!
    2. GitHub - YunoHost-Apps/misskey_ynh: Misskey package for YunoHost
      Misskey package for YunoHost. Contribute to YunoHost-Apps/misskey_ynh development by creating an account on GitHub.
  9. Carlos Solís (csolisr@social.azkware.net)'s status on Tuesday, 08-Nov-2022 14:15:25 UTC Carlos Solís Carlos Solís
    • Eugen 💀
    I remember the good old times of #Identica, when you could subscribe to groups (instead of a @ they started with a !) and everyone subscribed to that group would receive a notification. Real handy to coordinate public topics. I wonder why didn't #ActivityPub implement it? @Gargron
    In conversation Tuesday, 08-Nov-2022 14:15:25 UTC from social.azkware.net permalink
  10. Carlos Solís (csolisr@social.azkware.net)'s status on Tuesday, 19-Apr-2022 16:15:09 UTC Carlos Solís Carlos Solís
    in reply to
    • soloojos (Mastodon Uruguay)
    @jorge Buen punto ese, al menos en varios lugares se experimenta también con el transporte público eléctrico (trenes, buses, taxis, etcétera)
    In conversation Tuesday, 19-Apr-2022 16:15:09 UTC from social.azkware.net permalink
  11. Carlos Solís (csolisr@social.azkware.net)'s status on Tuesday, 19-Apr-2022 16:04:28 UTC Carlos Solís Carlos Solís
    in reply to
    • soloojos (Mastodon Uruguay)
    @jorge Eso me recuerda el caso de Sri Lanka, recientemente se decidieron a impulsar la agricultura orgánica al punto que prohibieron importar fertilizantes. Las cosechas han caído bastante, no voy a mentir, pero al menos tienen cierta inmunidad a sufrir hambruna por falta de fertilizantes porque ya estaban preparados para el caso. Igual caso en los países que han impulsado el transporte eléctrico y eso los ha blindado parcialmente de la subida del petróleo.
    In conversation Tuesday, 19-Apr-2022 16:04:28 UTC from social.azkware.net permalink

User actions

    Carlos Solís

    Carlos Solís

    Developer, Free Culture activist, auxlanger [EO-IO-LdP], translator-adapter, free-time gamer.

    Tags
    • (None)
    ActivityPub
    Remote Profile

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          28311
          Member since
          19 Apr 2022
          Notices
          11
          Daily average
          0

          Feeds

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

          Bobinas P4G is a social network. It runs on GNU social, version 2.0.1-beta0, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All Bobinas P4G content and data are available under the Creative Commons Attribution 3.0 license.