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 sirjofri@mastodon.sdf.org

  1. Embed this notice
    sirjofri@mastodon.sdf.org's status on Saturday, 01-Feb-2025 21:44:45 JST sirjofri sirjofri

    I know #activitypub is very powerful and most servers only "use" a subset of its features. I'm wondering, is there a #fediverse activitypub server software that tries to use _every_ feature? It doesn't have to look great and deliver a good experience, I'm just curious.

    To be more precise, I'm not asking for a library or framework, but a full running server that you can install.

    In conversation Saturday, 01-Feb-2025 21:44:45 JST from mastodon.sdf.org permalink

    Attachments


  2. Embed this notice
    sirjofri@mastodon.sdf.org's status on Thursday, 09-Jan-2025 08:34:37 JST sirjofri sirjofri
    in reply to
    • Jan Schaumann

    @jschauma sh even has a weird syntax, especially if compared to rc.

    Funny story: I recently wrote a few imagemagick scripts. All sources complain about quoting and escaping. I had no issues like that with rc!

    In conversation Thursday, 09-Jan-2025 08:34:37 JST from mastodon.sdf.org permalink
  3. Embed this notice
    sirjofri@mastodon.sdf.org's status on Wednesday, 11-Dec-2024 16:02:24 JST sirjofri sirjofri
    in reply to
    • Nathalie Lawhead (alienmelon)
    • njsg

    @njsg @alienmelon let's call his mum! 😂

    In conversation Wednesday, 11-Dec-2024 16:02:24 JST from mastodon.sdf.org permalink
  4. Embed this notice
    sirjofri@mastodon.sdf.org's status on Friday, 20-Sep-2024 18:57:39 JST sirjofri sirjofri
    in reply to
    • Haelwenn /элвэн/ :triskell:
    • Blurry Moon

    @lanodan @volpeon @sun oof. Not nice at all!

    It's not only about "saving" the web, it's about _how_ you do it!

    In conversation Friday, 20-Sep-2024 18:57:39 JST from mastodon.sdf.org permalink
  5. Embed this notice
    sirjofri@mastodon.sdf.org's status on Friday, 20-Sep-2024 18:44:09 JST sirjofri sirjofri
    in reply to
    • Haelwenn /элвэн/ :triskell:
    • Blurry Moon

    @sun @volpeon @lanodan what did they do?

    In conversation Friday, 20-Sep-2024 18:44:09 JST from mastodon.sdf.org permalink
  6. Embed this notice
    sirjofri@mastodon.sdf.org's status on Friday, 16-Aug-2024 07:18:30 JST sirjofri sirjofri
    in reply to
    • Haelwenn /элвэн/ :triskell:

    @lanodan meanwhile plan9:
    fd = create("myfile", OREAD, 0666);

    In conversation Friday, 16-Aug-2024 07:18:30 JST from gnusocial.jp permalink
  7. Embed this notice
    sirjofri@mastodon.sdf.org's status on Tuesday, 06-Aug-2024 16:32:07 JST sirjofri sirjofri
    in reply to
    • Anthony Sorace
    • Dave MacFarlane

    @driusan @a one of the biggest lacks in my opinion is this: you can read a full year about everything around plan 9, all documentation, all man pages, even a basic installation. But once you set up a plan 9 system you're done and you need help. You need help using the system, you need help configuring it, and there's often just no documentation for you.

    In conversation Tuesday, 06-Aug-2024 16:32:07 JST from mastodon.sdf.org permalink
  8. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:04:17 JST sirjofri sirjofri
    in reply to
    • Antonio Frecentese

    @chakuari portability-wise: everything is cross-compilable. Our kernel is portability-oriented, our libraries are, our programs usually are just portable as is (just compile them with the compiler for the target). The build system is built around that. Our dynamic namespaces help to execute the right binaries for our platform (no need for complex $path variable hacking)

    In conversation Sunday, 07-Apr-2024 18:04:17 JST from mastodon.sdf.org permalink
  9. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:04:16 JST sirjofri sirjofri
    in reply to
    • Antonio Frecentese

    @chakuari I guess you already read a lot about it? Then my guess is, just try it. There's plenty of ways to try it and to learn more about it. But keep in mind that plan 9 is not a unix and many design choices are based on a fully networked environment (a single plan 9 system may consist of many machines)

    In conversation Sunday, 07-Apr-2024 18:04:16 JST from mastodon.sdf.org permalink
  10. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:03:28 JST sirjofri sirjofri
    in reply to
    • Antonio Frecentese

    @chakuari speed-wise it's like unix should be: many small programs that do their task and do it well. We have a shell that's comparatively slow, but we never hit any bottlenecks with it, although half of our boot process is managed by it.

    In conversation Sunday, 07-Apr-2024 18:03:28 JST from mastodon.sdf.org permalink
  11. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:02:47 JST sirjofri sirjofri
    in reply to
    • Antonio Frecentese

    @chakuari quite easy, I use it for everything personal computing, nowadays. Though that's also rare at the moment because I don't do much personal stuff...

    It is a small system that's simple to understand, so it helps me to maintain my sanity. It's a system that "just works" at some point and you don't have to live in a state of "configuring before you can start your work" (1/x)

    In conversation Sunday, 07-Apr-2024 18:02:47 JST from mastodon.sdf.org permalink
  12. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:02:46 JST sirjofri sirjofri
    in reply to
    • Antonio Frecentese

    @chakuari it's very consistent. While unix/linux had to patch fixes on issues that wouldn't exist if it were more consistent, plan 9 maintains a level of consistency so fixes like that aren't needed (though it also has its issues of course).

    It has the best C dialect for developing applications, and you can usually compile the whole system within a few minutes. It's also source-based, you rarely get binaries. Just compile from source

    In conversation Sunday, 07-Apr-2024 18:02:46 JST from mastodon.sdf.org permalink
  13. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:02:45 JST sirjofri sirjofri
    in reply to
    • Antonio Frecentese

    @chakuari I guess security-wise we're also in a good position, but not because our system is extremely security-based, just we tunnel everything via one protocol and it's easy to maintain services (files in a directory is easier than managing iptables and hundreds of daemons via some obscure program).

    In conversation Sunday, 07-Apr-2024 18:02:45 JST from mastodon.sdf.org permalink
  14. Embed this notice
    sirjofri@mastodon.sdf.org's status on Sunday, 07-Apr-2024 18:01:53 JST sirjofri sirjofri
    in reply to
    • daniel:// stenberg://

    @bagder good thing I don't need symlinks anymore... #plan9 #9front

    In conversation Sunday, 07-Apr-2024 18:01:53 JST from mastodon.sdf.org permalink
  15. Embed this notice
    sirjofri@mastodon.sdf.org's status on Thursday, 28-Mar-2024 07:26:56 JST sirjofri sirjofri

    I really hate the trend that #documentation is no longer written but the details are in video #tutorials, especially in #gamedev. I want to READ documentation, with graphics and explanation. On long pages with varying degrees of details. Not some obscure 50min video where I can find the missing piece of information in a single frame at minute 34. #unreal #ue5

    In conversation Thursday, 28-Mar-2024 07:26:56 JST from mastodon.sdf.org permalink
  16. Embed this notice
    sirjofri@mastodon.sdf.org's status on Thursday, 28-Mar-2024 07:25:58 JST sirjofri sirjofri
    in reply to
    • aeva

    @aeva @khm also, since I'm working on the abstraction level, it doesn't matter what the implementation does under the hood: pure cpu based, network grid based, native gpu, networked gpu, birds juggling electrons, ...

    In conversation Thursday, 28-Mar-2024 07:25:58 JST from mastodon.sdf.org permalink
  17. Embed this notice
    sirjofri@mastodon.sdf.org's status on Thursday, 28-Mar-2024 07:25:06 JST sirjofri sirjofri
    in reply to
    • aeva

    @aeva @khm that's interesting to know. I'm working on getting some level of vulkan support on plan 9, currently working on that for drawterm. Drawterm is like vnc for plan 9, but much more integrated and native, and it runs on any other major OS. With that gpu filesystem I'm developing you can use the gpu of the host OS on your plan 9 machine.

    In conversation Thursday, 28-Mar-2024 07:25:06 JST from mastodon.sdf.org permalink
  18. Embed this notice
    sirjofri@mastodon.sdf.org's status on Monday, 25-Sep-2023 07:08:05 JST sirjofri sirjofri
    in reply to
    • Brion Vibber :blobcatcoffee:​

    @brion
    unix: "everything is a file"
    plan 9: "liar"
    9front: "😏"

    In conversation Monday, 25-Sep-2023 07:08:05 JST from gnusocial.jp permalink

User actions

    sirjofri

    sirjofri

    Serious #9front user. #Game programmer. Something about #shaders. Acme. C. Unreal.

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          178847
          Member since
          24 Sep 2023
          Notices
          18
          Daily average
          0

          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.