Skip to content
  • Hjem
  • Seneste
  • Etiketter
  • Populære
  • Verden
  • Bruger
  • Grupper
Temaer
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Kollaps
FARVEL BIG TECH
  1. Forside
  2. Ikke-kategoriseret
  3. > We are completely overwhelmed, of course.

> We are completely overwhelmed, of course.

Planlagt Fastgjort Låst Flyttet Ikke-kategoriseret
91 Indlæg 32 Posters 7 Visninger
  • Ældste til nyeste
  • Nyeste til ældste
  • Most Votes
Svar
  • Svar som emne
Login for at svare
Denne tråd er blevet slettet. Kun brugere med emne behandlings privilegier kan se den.
  • daemonspudguy@app.wafrn.netD daemonspudguy@app.wafrn.net

    @hipsterelectron@circumstances.run @zzt@mas.to @lykso@tiny.tilde.website @c0dec0dec0de@hachyderm.io

    Your list of operating systems ain't exactly large if LLM extruded code is a complete dealbreaker. Especially if you're exposing something on the internet.

    hipsterelectron@circumstances.runH This user is from outside of this forum
    hipsterelectron@circumstances.runH This user is from outside of this forum
    hipsterelectron@circumstances.run
    wrote sidst redigeret af
    #57

    @daemonspudguy @zzt @lykso @c0dec0dec0de that's why i'm making my own kernel

    hipsterelectron@circumstances.runH daemonspudguy@app.wafrn.netD 2 Replies Last reply
    0
    • hipsterelectron@circumstances.runH hipsterelectron@circumstances.run

      @daemonspudguy @zzt @lykso @c0dec0dec0de that's why i'm making my own kernel

      hipsterelectron@circumstances.runH This user is from outside of this forum
      hipsterelectron@circumstances.runH This user is from outside of this forum
      hipsterelectron@circumstances.run
      wrote sidst redigeret af
      #58

      @daemonspudguy @zzt @lykso @c0dec0dec0de operating systems like linux are extraordinarily inefficient

      1 Reply Last reply
      0
      • c0dec0dec0de@hachyderm.ioC This user is from outside of this forum
        c0dec0dec0de@hachyderm.ioC This user is from outside of this forum
        c0dec0dec0de@hachyderm.io
        wrote sidst redigeret af
        #59

        @lykso @hipsterelectron @daemonspudguy @zzt FUCK, tmux, is nothing sacred?!

        daemonspudguy@app.wafrn.netD 1 Reply Last reply
        0
        • hipsterelectron@circumstances.runH hipsterelectron@circumstances.run

          @daemonspudguy @zzt @lykso @c0dec0dec0de that's why i'm making my own kernel

          daemonspudguy@app.wafrn.netD This user is from outside of this forum
          daemonspudguy@app.wafrn.netD This user is from outside of this forum
          daemonspudguy@app.wafrn.net
          wrote sidst redigeret af
          #60

          @hipsterelectron@circumstances.run @zzt@mas.to @lykso@tiny.tilde.website @c0dec0dec0de@hachyderm.io

          I'm curious, is it a microkernel?

          hipsterelectron@circumstances.runH 1 Reply Last reply
          0
          • c0dec0dec0de@hachyderm.ioC c0dec0dec0de@hachyderm.io

            @lykso @hipsterelectron @daemonspudguy @zzt FUCK, tmux, is nothing sacred?!

            daemonspudguy@app.wafrn.netD This user is from outside of this forum
            daemonspudguy@app.wafrn.netD This user is from outside of this forum
            daemonspudguy@app.wafrn.net
            wrote sidst redigeret af
            #61

            @hipsterelectron@circumstances.run @zzt@mas.to @lykso@tiny.tilde.website @c0dec0dec0de@hachyderm.io

            No. Sacredness was killed in the year 2020 along with all of humanity. 2020 was actually the apocalypse and this is actually a purgatory for all of humanity. /j

            1 Reply Last reply
            0
            • daemonspudguy@app.wafrn.netD daemonspudguy@app.wafrn.net

              @hipsterelectron@circumstances.run @zzt@mas.to @lykso@tiny.tilde.website @c0dec0dec0de@hachyderm.io

              I'm curious, is it a microkernel?

              hipsterelectron@circumstances.runH This user is from outside of this forum
              hipsterelectron@circumstances.runH This user is from outside of this forum
              hipsterelectron@circumstances.run
              wrote sidst redigeret af
              #62

              @daemonspudguy @zzt @lykso @c0dec0dec0de yes but not in the L4 style. a "monolithic" kernel actively abdicates security boundaries or protocols of any sort and is impossible to optimize to application-specific access patterns. ring 0 is for memory allocations and not for hardware. explicit message buffering (unlike seL4) enables strong guarantees around data persistence and data copies can be used to safely transfer across security contexts as well as memory hierarchy regimes. the bullshit linux does to pass around pages to avoid copies is incredibly archaic and it's very cache-unfriendly

              hipsterelectron@circumstances.runH 1 Reply Last reply
              0
              • hipsterelectron@circumstances.runH hipsterelectron@circumstances.run

                @daemonspudguy @zzt @lykso @c0dec0dec0de yes but not in the L4 style. a "monolithic" kernel actively abdicates security boundaries or protocols of any sort and is impossible to optimize to application-specific access patterns. ring 0 is for memory allocations and not for hardware. explicit message buffering (unlike seL4) enables strong guarantees around data persistence and data copies can be used to safely transfer across security contexts as well as memory hierarchy regimes. the bullshit linux does to pass around pages to avoid copies is incredibly archaic and it's very cache-unfriendly

                hipsterelectron@circumstances.runH This user is from outside of this forum
                hipsterelectron@circumstances.runH This user is from outside of this forum
                hipsterelectron@circumstances.run
                wrote sidst redigeret af
                #63

                @daemonspudguy @zzt @lykso @c0dec0dec0de most of POSIX can be supported but not fucking pthreads. the entire concept of a mutex is completely broken and that's why deadlocks are even allowed to happen. haven't figured all that out yet but i think any constructs built on top of c11 atomics need to have clear semantics for progress. the ring buffer i've built supports stuff like "block until N bytes are available to write" and it makes parallelism so much easier when data structures provide guarantees around data flow rather than control flow

                hipsterelectron@circumstances.runH lykso@tiny.tilde.websiteL 2 Replies Last reply
                0
                • hipsterelectron@circumstances.runH hipsterelectron@circumstances.run

                  @daemonspudguy @zzt @lykso @c0dec0dec0de most of POSIX can be supported but not fucking pthreads. the entire concept of a mutex is completely broken and that's why deadlocks are even allowed to happen. haven't figured all that out yet but i think any constructs built on top of c11 atomics need to have clear semantics for progress. the ring buffer i've built supports stuff like "block until N bytes are available to write" and it makes parallelism so much easier when data structures provide guarantees around data flow rather than control flow

                  hipsterelectron@circumstances.runH This user is from outside of this forum
                  hipsterelectron@circumstances.runH This user is from outside of this forum
                  hipsterelectron@circumstances.run
                  wrote sidst redigeret af
                  #64

                  @daemonspudguy @zzt @lykso @c0dec0dec0de alexia massalin did the absolute coolest fucking shit ever with only an atomic compare-and-swap instruction in her synthesis kernel https://pages.cs.wisc.edu/~bart/736/papers/synthesis.pdf i'm doing a lot more with filesystem i/o and scheduler control because the scheduler is a security boundary and no process should have a global view of all files

                  1 Reply Last reply
                  0
                  • hipsterelectron@circumstances.runH hipsterelectron@circumstances.run

                    @daemonspudguy @zzt @lykso @c0dec0dec0de most of POSIX can be supported but not fucking pthreads. the entire concept of a mutex is completely broken and that's why deadlocks are even allowed to happen. haven't figured all that out yet but i think any constructs built on top of c11 atomics need to have clear semantics for progress. the ring buffer i've built supports stuff like "block until N bytes are available to write" and it makes parallelism so much easier when data structures provide guarantees around data flow rather than control flow

                    lykso@tiny.tilde.websiteL This user is from outside of this forum
                    lykso@tiny.tilde.websiteL This user is from outside of this forum
                    lykso@tiny.tilde.website
                    wrote sidst redigeret af
                    #65

                    @hipsterelectron That sounds fantastic, TBH. Really looking forward to seeing what you end up writing!
                    @daemonspudguy @zzt @c0dec0dec0de

                    1 Reply Last reply
                    0
                    • zzt@mas.toZ zzt@mas.to

                      > We are completely overwhelmed, of course. The glimmer of hope is that we secured sufficient LLM budget and access (thank you Meta!) to run reviews with multiple frontier models on each patch. This eliminates some hallucinations.

                      jesus christ https://mastodon.catgirl.cloud/@lina/117130089920503564

                      hsza@social.tudbut.deH This user is from outside of this forum
                      hsza@social.tudbut.deH This user is from outside of this forum
                      hsza@social.tudbut.de
                      wrote sidst redigeret af
                      #66

                      @zzt “we are drowning in slop, the solution is obviously more slop”

                      ozzelot@mstdn.socialO 1 Reply Last reply
                      0
                      • zzt@mas.toZ zzt@mas.to

                        if only we had lots and lots of examples of easier systems projects using similar techniques that entirely failed and now don’t exist as functioning projects

                        what are bun and rsync, why do you keep saying those names

                        hsza@social.tudbut.deH This user is from outside of this forum
                        hsza@social.tudbut.deH This user is from outside of this forum
                        hsza@social.tudbut.de
                        wrote sidst redigeret af
                        #67

                        @zzt it will be vindicating seeing linux go on that list

                        1 Reply Last reply
                        0
                        • daemonspudguy@app.wafrn.netD daemonspudguy@app.wafrn.net

                          @zzt@mas.to @c0dec0dec0de@hachyderm.io

                          Even when translating to what the phrase is poorly trying to pretend to be different from, I have absolutely no fucking clue what "social warrior project" is meant to convey because "social justice warrior project" is just not a phrase I can make any sense out of. It doesn't scan at all.

                          hsza@social.tudbut.deH This user is from outside of this forum
                          hsza@social.tudbut.deH This user is from outside of this forum
                          hsza@social.tudbut.de
                          wrote sidst redigeret af
                          #68

                          @daemonspudguy @c0dec0dec0de @zzt it is the right-wing nutjob framing of “ethical project”

                          1 Reply Last reply
                          0
                          • raster@retro-gaiden.comR raster@retro-gaiden.com

                            @zzt This is just the natural outcome.
                            The real red flags where when IBM (that is working into AI from more than a decade) buyed Red Hat and when they pushed madly a broken systemD as the usual "it's the FuTuRe" in the same guise they are pushing Wayland... that isn't really ready yet either for a lot of cases.
                            With these precedents why the LLMs push is so strange? Is just a normal development for these people.

                            grahamperrin@mastodon.bsd.cafeG This user is from outside of this forum
                            grahamperrin@mastodon.bsd.cafeG This user is from outside of this forum
                            grahamperrin@mastodon.bsd.cafe
                            wrote sidst redigeret af
                            #69

                            @raster I can not read the conversation here, thanks to @zzt for the block /s

                            I see that he enjoys the phrase "fucking slop", so you can point him and his fucking awful.systems to the open (non-blocked) anti-AI discussion linked below.

                            Alternatively, with less profanity:

                            ― sloppy human systems.

                            https://www.reddit.com/r/freebsd/comments/1vtgx7t/antiai_open_source_has_an_enemy_in_common_but/

                            #AI #openness

                            mawhrin@circumstances.runM grahamperrin@mastodon.bsd.cafeG carre@mastodon.onlineC 3 Replies Last reply
                            0
                            • zzt@mas.toZ zzt@mas.to

                              good thing the linux kernel has multiple frontier models, none of which are capable of generating a C compiler that fucking works

                              thank you Meta!

                              haihappen@social.anoxinon.deH This user is from outside of this forum
                              haihappen@social.anoxinon.deH This user is from outside of this forum
                              haihappen@social.anoxinon.de
                              wrote sidst redigeret af
                              #70

                              @zzt i am wondering if any of the benchmarks is "generate compiler for arbitrary language and architecture" with a testset that is just arbitrary code to compile amd execute (which is not oart of the context).
                              I guess not, that could lead to embaressment and admitting they set a trillion dollars aflame for spicy autocomplete

                              1 Reply Last reply
                              0
                              • zzt@mas.toZ zzt@mas.to

                                I really liked having fully working linux systems for… like 7 out of the 30+ years I’ve been using this fucking thing

                                we even briefly got gaming before they decided to come and fuck it all up in exchange for money

                                glitterbean@wehavecookies.socialG This user is from outside of this forum
                                glitterbean@wehavecookies.socialG This user is from outside of this forum
                                glitterbean@wehavecookies.social
                                wrote sidst redigeret af
                                #71

                                @zzt what?

                                1 Reply Last reply
                                0
                                • zzt@mas.toZ zzt@mas.to

                                  > We are completely overwhelmed, of course. The glimmer of hope is that we secured sufficient LLM budget and access (thank you Meta!) to run reviews with multiple frontier models on each patch. This eliminates some hallucinations.

                                  jesus christ https://mastodon.catgirl.cloud/@lina/117130089920503564

                                  paul@notnull.spaceP This user is from outside of this forum
                                  paul@notnull.spaceP This user is from outside of this forum
                                  paul@notnull.space
                                  wrote sidst redigeret af
                                  #72

                                  @zzt "some hallucinations" 🤦

                                  1 Reply Last reply
                                  0
                                  • zzt@mas.toZ zzt@mas.to

                                    good thing the linux kernel has multiple frontier models, none of which are capable of generating a C compiler that fucking works

                                    thank you Meta!

                                    ozzelot@mstdn.socialO This user is from outside of this forum
                                    ozzelot@mstdn.socialO This user is from outside of this forum
                                    ozzelot@mstdn.social
                                    wrote sidst redigeret af
                                    #73

                                    @zzt
                                    They embraced, they extended, now comes the extinguishing (even if some of them believe it's extension)

                                    1 Reply Last reply
                                    0
                                    • hsza@social.tudbut.deH hsza@social.tudbut.de

                                      @zzt “we are drowning in slop, the solution is obviously more slop”

                                      ozzelot@mstdn.socialO This user is from outside of this forum
                                      ozzelot@mstdn.socialO This user is from outside of this forum
                                      ozzelot@mstdn.social
                                      wrote sidst redigeret af
                                      #74

                                      @hsza
                                      "The only thing that can stop a bad guy with a slop extruder is a good guy with a slop extruder"
                                      @zzt

                                      ryencode@mstdn.caR 1 Reply Last reply
                                      0
                                      • grahamperrin@mastodon.bsd.cafeG grahamperrin@mastodon.bsd.cafe

                                        @raster I can not read the conversation here, thanks to @zzt for the block /s

                                        I see that he enjoys the phrase "fucking slop", so you can point him and his fucking awful.systems to the open (non-blocked) anti-AI discussion linked below.

                                        Alternatively, with less profanity:

                                        ― sloppy human systems.

                                        https://www.reddit.com/r/freebsd/comments/1vtgx7t/antiai_open_source_has_an_enemy_in_common_but/

                                        #AI #openness

                                        mawhrin@circumstances.runM This user is from outside of this forum
                                        mawhrin@circumstances.runM This user is from outside of this forum
                                        mawhrin@circumstances.run
                                        wrote sidst redigeret af
                                        #75

                                        @grahamperrin take the block like a real poster and don't whine about it. (calling reddit “open” is a beautiful joke.)

                                        grahamperrin@mastodon.bsd.cafeG krupo@infosec.exchangeK 2 Replies Last reply
                                        0
                                        • mawhrin@circumstances.runM mawhrin@circumstances.run

                                          @grahamperrin take the block like a real poster and don't whine about it. (calling reddit “open” is a beautiful joke.)

                                          grahamperrin@mastodon.bsd.cafeG This user is from outside of this forum
                                          grahamperrin@mastodon.bsd.cafeG This user is from outside of this forum
                                          grahamperrin@mastodon.bsd.cafe
                                          wrote sidst redigeret af
                                          #76

                                          @mawhrin try commenting like a real reader and don't misunderstand what's written.

                                          I described a single discussion, not Reddit, as "open (non-blocked) anti-AI".

                                          Would you like to know why?

                                          Cc @raster

                                          mawhrin@circumstances.runM 1 Reply Last reply
                                          0
                                          Svar
                                          • Svar som emne
                                          Login for at svare
                                          • Ældste til nyeste
                                          • Nyeste til ældste
                                          • Most Votes


                                          • Log ind

                                          • Har du ikke en konto? Tilmeld

                                          • Login or register to search.
                                          Powered by NodeBB Contributors
                                          Graciously hosted by data.coop
                                          • First post
                                            Last post
                                          0
                                          • Hjem
                                          • Seneste
                                          • Etiketter
                                          • Populære
                                          • Verden
                                          • Bruger
                                          • Grupper