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 Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)

  1. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Friday, 15-Aug-2025 02:10:28 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to
    • Adrianna Tan

    @skinnylatte I don't know whether France has a policy to fight brain drain, but, I have to say, a few weeks eating French food while on vacation in France makes me miss it as I'm back home in Greece.

    In conversation about 11 days ago from gnusocial.jp permalink
  2. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Friday, 15-Aug-2025 02:10:26 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to
    • Adrianna Tan
    • Robot Diver

    @RobotDiver @skinnylatte At least I get to live in a place where groceries and restaurants are cheaper than in France, so there's that.

    In conversation about 11 days ago from gnusocial.jp permalink
  3. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Tuesday, 29-Jul-2025 16:41:51 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to
    • jonny (good kind)

    @jonny So, somewhere between "we help," "we advise," and "we watch?"

    In conversation about a month ago from floss.social permalink

    Attachments


    1. https://cdn.masto.host/floss/media_attachments/files/114/934/748/189/491/108/original/97c9e4fdc4e0e81c.webp
  4. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Tuesday, 29-Jul-2025 16:09:16 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to
    • Foone🏳️‍⚧️

    @foone Amusingly, the same would also happen in C.

    In conversation about a month ago from floss.social permalink
  5. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 20:07:50 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    First, let's look for bugs:

    -ChatGPT picked the wrong start address
    -It forgot a parameter to a syscall
    -It forgot to clean up the stack after a syscall
    -It wrote 16-bit data to some 8-bit hardware registers
    -It wrote to 2 registers that don't exist
    -It wrote to a ROM address
    -It clobbered system variables
    -It overwrote its own code
    -It stored a variable in a read-only section

    Right off the bat, 9 bugs in 16 lines of code, probably 6 of which are crashing.

    In conversation about 2 months ago from floss.social permalink
  6. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 20:07:49 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    Now, let's read the comments it put in that code:

    -Bogus claim about the TOS start address
    -Wrong name for the syscall it used
    -Confused between user and supervisor stack (2x)
    -Got the meaning of hardware registers wrong (4x)

    (3/n)

    In conversation about 2 months ago from gnusocial.jp permalink
  7. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 20:07:48 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    Finally, let's check for optimization issues, part 1:

    -Stores a value that it never uses back.
    -Uses CLR to clear a data register when MOVEQ is faster
    -Uses long addressing for hardware registers addresses when short addressing is available
    -Uses long addressing for low addresses (68k equivalent of the zeropage) when short addressing is available
    -Loads an immediate zero into an address register when another register is already zero

    (4/n)

    In conversation about 2 months ago from floss.social permalink
  8. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 20:07:46 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    And more optimization issues:

    -Uses CLR to clear RAM when MOVE is faster, especially in a code location where a register is guaranteed already to contain zero.
    -Clears RAM with 16-bit instructions when 32-bit would have been faster and perfectly appropriate (I'm not necessarily expecting MOVEM here or loop unrolling, that's a bit more advanced).

    (5/n)

    In conversation about 2 months ago from gnusocial.jp permalink
  9. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 20:07:45 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    Final score:

    16 lines of code (13 net instructions), 9 bugs, 8 inaccurate comments (when I count duplicates), 7 missed optimizations, i.e. 24 total problems.

    We're talking about assembly here, which is not a language that is famous for being expressive. It's hard even to comprehend how it is possible to average almost 2 issues per instruction. That's a level of incompetence that's hard to fathom from a human, and that would certainly not pass any interview.

    (6/6)

    In conversation about 2 months ago from floss.social permalink
  10. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 20:06:05 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru

    Hahaha, I asked ChatGPT to write a tiny piece of code for me. I had written that code by hand a few days ago, in a few minutes, and it worked the first time I ran it. The ChatGPT version has 13 instructions and 3 directives, i.e. 16 lines of code.

    I have to say, the ChatGPT code look credible at first glance, if you don't think about the details involved. The kind that would get a CEO to say "that can replace my coders."

    So, let's look at the code. A thread.

    (1/6)

    In conversation about 2 months ago from floss.social permalink
  11. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 19:54:21 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru

    Recent discussions about libxml2, and the maintainer's decision to make all bug reports public, remind me of a sitaution I've been in.

    For 4 years, 2009-2013, I was the Google Tech Lead for the Open Source aspects of Android.

    One of the discussions that came back often was whether Android was truly Open given that its development happened primarily between closed doors.

    Back then already, we thought we didn't have good words to talk about that development model.

    (1/n)

    In conversation about 2 months ago from floss.social permalink
  12. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 19:54:20 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    I don't want to go (yet) into a lengthy discussion about Open Source and Free Software, this'll be for another time.

    Here's the deal: by requesting embargoes, reporters of those bugs are requesting that development of libxml2 happen behind closed doors. The exact model that Google used 15 years ago for its Android contributions, that the enthusiast community didn't like (to say the least).

    I've been looking for words to define such practices, trying to avoid overloading existing words.

    (2/n)

    In conversation about 2 months ago from floss.social permalink
  13. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 19:54:19 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    I was about to settle on "secretive" and "transparent" development, wanting to say that libxml2 bug reporters are requesting a secretive development model, while the maintainer instead explicitly chose a transparent development model.

    But, then, it hit me: we already have words for those models, and we have had them for decades. We even have a long writing, almost historical at this point, that documents the point.

    (3/n)

    In conversation about 2 months ago from floss.social permalink
  14. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 19:54:18 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    The Cathedral and the Bazaar.

    Yup, we've had those words since 1997.

    Essentially, proprietary development is a cathedral model by nature. Therefore, that's what all non-FLOSS corporate development looks like, even when such development relies of Open Source code.

    What we're seeing is an attempt by such corporate developers to force a cathedral model onto Open Source maintainers, when we now have long documented evidence that the bazaar model is very credible.

    (4/n)

    In conversation about 2 months ago from floss.social permalink
  15. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 28-Jun-2025 19:54:17 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to

    Specifically, Eric Raymond formulates Linus' law "given enough eyeballs, all bugs are shallow."

    By trying to lock maintainers into a cathedral, the proprietary industry is depriving those maintainers from the benefits of the bazaar.

    How about we use those words again? Let's clarify that some Open Source projects are explicitly part of the Bazaar, and that proprietary developers shouldn't expect to trap maintainers into their Cathedral.

    (5/5)

    In conversation about 2 months ago from floss.social permalink
  16. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Thursday, 12-Jun-2025 20:38:25 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru

    Google AI inventing new physics, where a system using 2500W would consume about 3.5kWh/h.

    In conversation about 2 months ago from floss.social permalink
  17. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Saturday, 24-May-2025 08:02:12 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru
    in reply to
    • Paul Lalonde

    @Flux I tend to think it's more like "What output would best fool this human into thinking I understood the question and know the answer?"

    Fun thing, this is exactly how an incompetent human would behave in a job interview, so I call LLMs "Artificial Incompetence."

    In conversation about 3 months ago from floss.social permalink
  18. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Sunday, 18-May-2025 06:49:33 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru

    Decades ago, I wrote an interpreter for an esoteric programming language, let's call it "bf" (if you know, you know).

    At the time, a lot of new programming languages were popping up, and it was very common to compare those languages by comparing the number of lines of code necessary to code a "Hello, World!".

    So, I invented bf++ as an extension to bf, where an empty source file would print "Hello, World!" and exit. 0 lines of code. Absolute winner.

    (1/2)

    In conversation about 3 months ago from floss.social permalink
  19. Embed this notice
    Jean-Baptiste "JBQ" Quéru (jbqueru@floss.social)'s status on Monday, 28-Apr-2025 13:26:29 JST Jean-Baptiste "JBQ" Quéru Jean-Baptiste "JBQ" Quéru

    As a mentor, a theme I commonly discuss is about goals at work. I summarize my philosophy as "earn or learn" (not my wording). Your job needs to be either making you money from skills you acquired before, or teaching you skills that will make you money in the future. If you can have both at the same time, that's great, but it's not common. If you have neither, look for another job.

    (Yes, it's oversimplified, all catchphrases are).

    In conversation about 4 months ago from floss.social permalink

User actions

    Jean-Baptiste "JBQ" Quéru

    Jean-Baptiste "JBQ" Quéru

    I'm JBQ / Djaybee, Husband, Immigrant, Veteran, Highly Sensitive Person #HSP. He/Him. I write about tech and other things. I'm fluent in French and English, I live in Greece, previously France, UK, USA.I like:#skiing, #hiking, #biking, #games, #photography, visual #astronomy, #RetroComputing, #DemoScene, #PixelArt, #painting, #knitting, #weaving, #crochet, #BeadWeaving, #CrossStitch and #BlackWork embroidery.Profile: photo of meHeader: logo of the MegaBustersAuto-delete: 1 month

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          342951
          Member since
          28 Apr 2025
          Notices
          19
          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.