I hate compilers

(xeiaso.net)

118 points by xena9 hours ago

20 comments

  • inigyou2 hours ago
    Better title: Reproducible builds are hard
  • edude032 hours ago
    Could have sworn the author was a nix(os) user already. I know it’s a meme but what all the problems they’re describing literally is solved by nix. The nix sandbox even catches calls for time for example to replace it with 0 for determinism.
    • trexd1 hour ago
      They stopped using Nix due to disagreements with how the project was run.<p><a href="https:&#x2F;&#x2F;xeiaso.net&#x2F;blog&#x2F;2024&#x2F;much-ado-about-nothing&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xeiaso.net&#x2F;blog&#x2F;2024&#x2F;much-ado-about-nothing&#x2F;</a>
      • xena19 minutes ago
        Nix doesn&#x27;t help when the issue is a compiler bug, sadly.
  • antirez2 hours ago
    So to avoid those energy-hungry LLM companies from scraping your website, you force each browser to compute a lot of hashes in a necessarily energy-hungry loop, creating, at the same time, all the kind of accessibility problems?
    • ericpauley1 hour ago
      I don’t get how people believe there’s a PoW function that both:<p>1. Allows access in reasonable time&#x2F;battery use to me on my phone<p>2. Poses any meaningful challenge to the most compute-resourced organizations on the planet<p>I wonder how many cumulative hours of human life have been wasted waiting on Anubis.
      • beached_whale32 minutes ago
        There are a lot of people writing really bad scrapers and running them on far from high compute power systems. This is the prevent DoS because of those. The big companies are often far more clever and know they are traversing the whole internet and can come back later.
      • grayhatter49 minutes ago
        &gt; I wonder how many cumulative hours of human life have been wasted waiting on writing comments on creamsicle reddit.<p>I disagree with a lot of the decisions around the design of Anubis... but resisting the current drive of the industry to ruin as much of the good faith resource donations from others is an admirable objective.<p>The point isn&#x27;t to increase the amount of work required to the point of exhaustion, it&#x27;s to require that scripts be able to offer the exact same feature set that browsers offer. The point isn&#x27;t to make it impossible, it&#x27;s too make it more expensive than free.<p>Anubis isn&#x27;t trying to prevent all scraping, it&#x27;s trying to reduce the abuse just enough that real requests get their fair share. You don&#x27;t need to outcompute the botnet just slow them down a little.<p>I hate seeing the Anubis interstitial too, I&#x27;ve complained about it publicly already too. But it doesn&#x27;t come close to the frustration of waiting 10s for an SPA to load all of the routes it&#x27;ll never use before the first redraw. Clearly our industry has also decided latency is a good thing.
      • lifthrasiir1 hour ago
        The vast majority of that compute is locked in AI accelerators that do the inference. Those hardwares are bad at doing anything other than that---in fact crawlers would need more residential proxies than more computes in that regard.
    • hootz1 hour ago
      Not just LLM companies, but bots in general. They were a big problem even before LLMs.
  • jdw648 hours ago
    Reading this, I think low level engineering is actually more dependent on specific environments. Hardware also has its own points of change. Usually, when you think at a high level, environmental changes are less significant than you might expect. But low level thinking tends to be tied to specific environments, which is what makes it difficult. The reason low level is hard is that even if the code itself is short, the hidden assumptions inside it are difficult and place a heavy cognitive load on the programmer. For example, even a short snippet in C like `int value = <i>(int</i>)buffer` requires a lot of implicit knowledge about the 4 byte alignment of the buffer, or whether int is exactly 32 bits. LLMs do not seem to be very good at knowing these things. Rather, they are strong at high level wrapping, but at the low level, they seem surprisingly difficult and somewhat useless. Hardware has CPU generation changes, and in the case of PLCs, where I mainly work, the protocol differences between vendors are far too severe. There does not seem to be any technology with a very long lifecycle.
    • jstimpfle7 hours ago
      Depends on what you mean by low level I guess. Compared to web application framework churn rate, simple procedural programming without many dependencies is remarkably stable. You tend to program in a way that works for most platforms (all targetted platforms). How to best do that you learn over the years. To me personally it&#x27;s very refreshing if the environment around you does not constantly change. That affords learning a bag of tricks and a list of gotchas to avoid.
      • embedding-shape3 hours ago
        &gt; You tend to program in a way that works for most platforms (all targetted platforms).<p>Isn&#x27;t that true for web frameworks too? Usually they&#x27;ll only target unix, but if they target windows and macos, then they work on those platforms too? Or am I misunderstanding what you&#x27;re trying to say here?
        • jstimpfle3 hours ago
          This is how I mean it: In case of low level programming, the &quot;platform&quot; is the hardware&#x2F;OS&#x2F;compiler. In case of web programming, the &quot;platform&quot; is the web framework.<p>If you update the OS, hardware, or compiler, you will see only few changes. If you update the web framework, you may see breakages, API deprecations or whatever. You may want to move to a different web framework entirely. TBH I don&#x27;t really know, I don&#x27;t know web programming beyond basic HTML&#x2F;Javascript. That&#x27;s what they say, though.
          • embedding-shape3 hours ago
            Well I mean you&#x27;re comparing two different solutions at different layers here.<p>In the case of an desktop application, unless you build things against OS libraries, your &quot;platform&quot; is also typically a framework, like QT or AppKit or whatever you end up using. That&#x27;s the equivalent of the &quot;web framework&quot; in the web world.<p>Basically, it goes &quot;Your app &gt; GUI framework &gt; other&#x2F;OS libraries&quot; for desktop apps, &quot;Your app &gt; web framework &gt; other&#x2F;OS libraries&quot; for web applications.<p>Then in both approaches you can of course skip the framework if you want, no one is forcing you to use those in either of the cases.<p>Edit: I realize now we might be talking past each other, I was under the understanding that &quot;web framework&quot; is about backend web frameworks, but maybe you actually meant frontend frameworks running client-side. If so, replace &quot;other&#x2F;OS libraries&quot; with &quot;browser runtime&quot; and my comment more or less still makes sense :)
            • jstimpfle3 hours ago
              &gt; your &quot;platform&quot; is also typically a framework, like QT or AppKit or whatever you end up using<p>That&#x27;s not what I consider &quot;low level programming&quot;. I don&#x27;t use any of these.<p>Yes you can do try and do plain Javascript. Honestly Javascript is a much less pleasurable environment than a compiled statically typed procedural language. The main advantage of the browser is you get a viewport, you get font rendering etc. with almost no setup required at all.
              • embedding-shape42 minutes ago
                &gt; That&#x27;s not what I consider &quot;low level programming&quot;. I don&#x27;t use any of these.<p>So say C linking to Xorg-libraries and drawing GUI that way isn&#x27;t low level programming, then what is? Only assembly is &quot;low level programming&quot; or what?<p>Meh, JavaScript is fine, like most dynamic Algol&#x2F;C-like languages. Could be worse, could be TypeScript :)<p>But personally, browser environment is a hell of a lot easier to target than doing cross-platform native application development, but I&#x27;m a web developer who started doing native apps, not the other way around, might be why.
          • AnimalMuppet3 hours ago
            More: If you upgrade the hardware or the compiler, <i>you</i> upgrade them. If you&#x27;re doing web programming, you have to worry about the <i>user</i> upgrading their browser.
            • jstimpfle3 hours ago
              It&#x27;s not so much about the browser (I&#x27;m not aware of major incompatibilities introduced by new browsers or new W3C standards). But the software ecosytems (like frameworks, or node.js) that web people are relying on in order to create their web apps.
      • jdw646 hours ago
        I think you&#x27;re right too. So I also think that maybe I&#x27;m viewing the changes as bigger than they actually are, based on my own standards
    • Dwedit2 hours ago
      Looks like the formatting ate your asterisks at *(int*)buffer. Use \* to get an asterisk.
      • jdw641 hour ago
        Since edits aren&#x27;t allowed after a certain amount of time, I&#x27;ll keep that in mind next time. Thanks!
  • crvdgc7 hours ago
    Nix also needs the build output to be deterministic to calculate the hash. It also has the problems of timestamps etc. The build environment tries to be hermetic by setting the time to be epoch among other things.
    • mplanchard3 hours ago
      Yes, reading this I was thinking about how many of these problems go away with a nix environment. Certainly not all of them, but it’s a great way to get a reproducible build environment that includes direct specification of system dependencies.
    • lloeki6 hours ago
      SOURCE_DATE_EPOCH is not a Nix thing<p><a href="https:&#x2F;&#x2F;reproducible-builds.org&#x2F;docs&#x2F;source-date-epoch&#x2F;" rel="nofollow">https:&#x2F;&#x2F;reproducible-builds.org&#x2F;docs&#x2F;source-date-epoch&#x2F;</a><p>(although Nix sets it as a default)
    • stabbles6 hours ago
      Nix hashes the build inputs, for which deterministic builds are not required, only desirable.
  • ComputerGuru8 hours ago
    These seem very reasonable, the workarounds used are natural, and overall the article is not at all congruous with the conclusion in the (clickbait?) title?<p>Compilers literally made your project possible!
    • zeratax4 hours ago
      &gt; Clang relies on address layout for ordering things<p>I would consider that a bug tbh
      • j2kun1 hour ago
        What is kind of annoying is that the author jumps to &quot;I hate compilers&quot; instead of &quot;I will report&#x2F;help fix this bug upstream.&quot;
        • chiyc44 minutes ago
          I don&#x27;t get the sense they hate compilers at all. The writing describes work they seem to love doing. It&#x27;s just clickbait.<p>And it may not have crossed their mind that the clang behavior is a bug after finding a workaround. I&#x27;d also assume compilers do things &quot;no mere mortal can fully comprehend on their own&quot;.
          • xena39 minutes ago
            This might be the first time in my career I have genuinely found a compiler bug. I&#x27;ve been operating under the axiom of &quot;don&#x27;t assume it&#x27;s a compiler bug, assume you&#x27;re fucking it up somehow&quot;. When you get to the point that disabling ASLR makes it consistent intra-host I think I&#x27;ve won the right to at least suspect a compiler bug is at play.<p>I&#x27;ll go file it upstream after work today.
      • StilesCrisis1 hour ago
        If reproducible builds is a stated goal for Clang? I&#x27;m not sure that it is. If so, absolutely a bug.
  • j16sdiz1 hour ago
    &gt; What do you do when the client has WebAssembly disabled?<p>Do people really do that? -- disable, not just using old browsers with no wasm.<p>Disabling wasm while keeping js enabled is a configuration i can&#x27;t understand
    • pohl54 minutes ago
      It’s easy to imagine an organization with a paranoid security posture ending up with that configuration because they decided to only enable a minimum necessary feature set where they determined that JS was necessary while WASM was not.
      • xena43 minutes ago
        iOS Lockdown Mode also implements this configuration.
  • biglost8 hours ago
    Time date env variables and random address... Is also input data, maybe not as a flag but still
    • RyanSquared7 hours ago
      Time and date are... tolerable. There&#x27;s SOURCE_DATE_EPOCH which should always be set to whack it into submission when used. ASLR of the _compiler being invoked_ resulting in a difference in the _program being compiled_ is nuts and would break any self-hosting compiler with consistency checks.
      • xiphias241 minutes ago
        ASLR is important, but you should be able to provide the random seed (I don&#x27;t know if it&#x27;s possible or not)
    • yjftsjthsd-h7 hours ago
      Explicit is Better than Implicit.
  • randusername2 hours ago
    I&#x27;ve seen posts by this author before and did not understand if the commentary characters were referential or a creation of the author. Turns out its the latter. I dismissed the underlined names as just styling, not hyperlinks.<p><a href="https:&#x2F;&#x2F;xeiaso.net&#x2F;characters&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xeiaso.net&#x2F;characters&#x2F;</a>
  • swiftcoder7 hours ago
    The Birth and Death of Javascript really had the gift of prophecy, eh
    • neocron5 hours ago
      Was that the thing where Gary predicted js in the kernel?
      • swiftcoder4 hours ago
        yes, although more directly relevant here, chrome-compiled-to-wasm-nested-in-chrome
  • KolmogorovComp1 hour ago
    I’m still surprised by Anubis’ decision not to make the PoW have a useful output, for example a crypto, protein-folding like, or something else.<p>And I speak as being generally very critical of cryptos, but here rewarding the website owner with some cents to have access seems fair, and resolves the traditional issues about micro-payments.
    • xena35 minutes ago
      Patches welcome. I&#x27;d love to do protein folding too.
  • evmar3 hours ago
    A better solution might be to use <a href="https:&#x2F;&#x2F;github.com&#x2F;evanw&#x2F;polywasm" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;evanw&#x2F;polywasm</a> to run the original wasm in place.
  • pertymcpert8 hours ago
    If Clang generated non-deterministic output due to pointer addresses then that&#x27;s a bug (happens regularly) that should be fixed. The most common way this happens if it some code path is iterating over a DenseMap which is non-deterministic. Sometimes that&#x27;s fine and sometimes that&#x27;s not depending on how that map is used. The common way to fix that is to switch to a MapVector which pays some additional runtime&#x2F;memory cost to guarantee deterministic iteration order.
    • xena8 hours ago
      I&#x27;ll try and make a minimal reproduction case and file a bug. Do you know if any tooling that can take a binary and fuzz it down to a minimal reproduction set?
      • amatria7 hours ago
        cvise. Here is a link to a mini tutorial I wrote for a user in an LLVM issue: <a href="https:&#x2F;&#x2F;github.com&#x2F;llvm&#x2F;llvm-project&#x2F;issues&#x2F;108827#issuecomment-2597596068" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;llvm&#x2F;llvm-project&#x2F;issues&#x2F;108827#issuecomm...</a>
        • xena38 minutes ago
          Thank you, this will be very useful.
      • glandium7 hours ago
        Claude code is actually rather good at this. If your initial testcase is not too big, you can use creduce or cvise.
        • xena36 minutes ago
          Sadly my initial test case is binaryen which has 290 compilation units. I will try though.
  • Animats6 hours ago
    I hate proof of work code running on my machine for the benefit of someone else. It&#x27;s like planting a crypto miner.
    • hueho51 minutes ago
      The &quot;benefit of someone else&quot; in this scenario is the site operator not having their website down or their hosting bills unsustainable because of misbehaving (which are 99% of current) web scrapers from AI companies.<p>The README itselfs admit that this is an nuclear option. <a href="https:&#x2F;&#x2F;github.com&#x2F;TecharoHQ&#x2F;anubis" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;TecharoHQ&#x2F;anubis</a>
    • ctrlmeta2 hours ago
      Do proof-of-work pages actually stop AI bots? Big AI companies have enough compute to solve these challenges at scale. And if their bots are already doing much heavier work to fetch, read and process each page, then solving a small challenge first seems unlikely to be a serious barrier. Who are these proof-of-work challenges actually helping?
      • titularcomment20 minutes ago
        I believe poisonous loops of non-sense text are the best choice in terms of LLM capabilities and human distinguishing potential; the next iteration could be non-sense with reasonably intact grammar and content. At the very least, show some content whilst doing the PoW (isn&#x27;t the point rising computational costs? Give me something like YouTube video decryption instead of having me wait at least) OR use the PoW for some useful protein-folding, finding the next prime, or an alternative monetization scheme.
        • xena10 minutes ago
          Anubis does this: <a href="https:&#x2F;&#x2F;anubis.techaro.lol&#x2F;docs&#x2F;admin&#x2F;honeypot&#x2F;overview" rel="nofollow">https:&#x2F;&#x2F;anubis.techaro.lol&#x2F;docs&#x2F;admin&#x2F;honeypot&#x2F;overview</a><p>Getting in the maze influences your client&#x27;s challenge difficulty.
    • tengwar23 hours ago
      Yup, and I suspect that even if OP is honest in this respect, if proof-of-work gets established as a normal practice for web pages, it&#x27;s going to be used this way.<p>But just taking this as-is, what is the environmental impact likely to be when multiplied up by the number of users? Proof of work is a bad idea.
    • account423 hours ago
      Yes, all these kind of bot checks are essentially malware.
  • znpy6 hours ago
    &gt; What do you do when the client has WebAssembly disabled?<p>&gt; I decided to take inspiration from the legendary talk The Birth and Death of JavaScript and just recompile the WebAssembly to JavaScript.<p>So what do you do when the client has Javascript disabled ?
    • zeratax4 hours ago
      <a href="https:&#x2F;&#x2F;anubis.techaro.lol&#x2F;docs&#x2F;admin&#x2F;configuration&#x2F;challenges&#x2F;metarefresh&#x2F;" rel="nofollow">https:&#x2F;&#x2F;anubis.techaro.lol&#x2F;docs&#x2F;admin&#x2F;configuration&#x2F;challeng...</a>
  • sylware7 hours ago
    To avoid all those grotesque and absurd compilers and runtimes, more for those of computer languages with a ultra-complex syntax (c++ and similar), I now design &quot;binary specifications&quot; which I &quot;design&quot; and &quot;validate&quot; with RISC-V assembly coding.<p>Here, since any whatwg cartel web engine is an issue, the author should not bother.
  • mathisfun1238 hours ago
    [flagged]
    • xena8 hours ago
      Tell me the flags I&#x27;m missing then: <a href="https:&#x2F;&#x2F;github.com&#x2F;TecharoHQ&#x2F;anubis&#x2F;blob&#x2F;Xe&#x2F;wasm4&#x2F;utils&#x2F;wasm&#x2F;wasm2js&#x2F;build.sh" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;TecharoHQ&#x2F;anubis&#x2F;blob&#x2F;Xe&#x2F;wasm4&#x2F;utils&#x2F;wasm...</a>
      • heavensteeth8 hours ago
        I&#x27;m surprised by the amount of heckling this post received almost immediately! And a lack of constructive input.<p>I for one enjoyed the article and understand what you&#x27;re getting at.
    • yjftsjthsd-h7 hours ago
      &gt; This is the goofiest I&#x27;ve seen written unironically in quite a long - the C preprocessor is not part of the compiler. The pre in preprocessor should probably give it away.<p>This is true but doesn&#x27;t seem relevant; does replacing the word &quot;compiler&quot; with &quot;build chain&quot; change anything? Because that seems like the clear meaning.
    • LPisGood8 hours ago
      Re: source code producing different binaries: things like ASLR, stack canaries, optimization levels, linking, etc all lead to different binaries.
  • ekjhgkejhgk3 hours ago
    [flagged]
  • charcircuit8 hours ago
    As long as the program is equivalent there isn&#x27;t an actual problem here. Requiring the output to always be the same is an arbitrary restriction.<p>If you want to have users trust that someone else hasn&#x27;t modified it, then sign it with your identity.
    • yjftsjthsd-h7 hours ago
      We&#x27;d like to verify, not trust.
      • charcircuit7 hours ago
        The whole point of a signature is that you are able to verify what was signed was in fact a message that was signed by signer.
        • robinsonb57 hours ago
          Sure, but a signature doesn&#x27;t prove that a particular binary came from a particular codebase - merely that a particular human (or other trusted entity, for varying degrees of &quot;trusted&quot;) has vouched for it.<p>Being able to reproduce the binary from the source code and being able to verify that it&#x27;s the same as the original is quite important in some contexts.
          • charcircuit6 hours ago
            &gt;Being able to reproduce the binary from the source code and being able to verify that it&#x27;s the same as the original is quite important in some contexts.<p>I disagree. The contexts that people come up with are purely theoretical, and are not practically important. Please do try and convince me otherwise by sharing such a context. From my view the juice of trying to accomplish this is no where worth the squeeze.
            • harrouet2 hours ago
              You disagree but you&#x27;re wrong.<p>Military context: a government would want to review the code and compile themselves. Provide a hash of the target binary to ensure they&#x27;ve compiled it correctly.<p>SDLC: provide auditors with _proof_ that the tested binary is indeed coming from the audited code
              • skydhash2 hours ago
                Military Context: Just build the code that you just reviewed. No need to get the binaries<p>SDLC: Traceability is more important than reproducibility. Keeping logs is more important than deterministic build outputs
          • skydhash2 hours ago
            &gt; Being able to reproduce the binary from the source code and being able to verify that it&#x27;s the same as the original is quite important in some contexts<p>Why not build your own binaries and be done with that. If you don’t trust the compiler or the machine doing the build, just build the code yourself.
  • dyauspitr8 hours ago
    LLMs should be trained on and directly output binary.
    • klodolph8 hours ago
      On the off chance that you’re serious, that would result in disastrously bad output. The difference between “jmp $+15” and “jmp $+16” is inscrutable and the LLM would not be able to pick the right one without tooling.<p>That tooling is a compiler. The higher level, the better chance the LLM can be steered to good output. Machine code is hopeless, don’t bother.
      • pjmlp8 hours ago
        That compiler does wonders with languages that have UB on their specs, especially when having optimizations passes with heuristics.<p>Also there are dynamic compilers were the shape of machine code changes as the code executes, and each single execution will certainly generate different sequences, depending on the program execution and where it is running.<p>Deterministic JIT compiler code generation, at least on optimising ones, is not a solved problem.
      • faangguyindia8 hours ago
        What about AOT optimization? whuch brings aot closer to JITs performance? Isn&#x27;t that something LLM + Harness can easily do?
        • klodolph8 hours ago
          I think the idea that AOT is inherently faster than JIT, or vice versa, is a thoroughly debunked idea.<p>You can have LLMs help you optimize code but I don’t think you can do this unattended for non-trivial code.
      • jenadine8 hours ago
        &gt; The difference between “jmp $+15” and “jmp $+16” is inscrutable<p>I don&#x27;t see why that&#x27;s the case. LLM trained on binary would totally see it, not?<p>Also the tool can also be running the test and a debugger.
        • klodolph8 hours ago
          &gt; I don&#x27;t see why that&#x27;s the case. LLM trained on binary would totally see it, not?<p>It would not. You find the correct version by counting the number of bytes to the destination. LLMs are famously bad at this kind of problem (counting).<p>&gt; Also the tool can also be running the test and a debugger.<p>The test needs to provide a good amount of signal. That’s too hard if you are throwing machine code at the wall.<p>In order for debuggers to work, you need some kind of model that describes what the code should do and what state the computer should be in after each instruction. That model is high-level code.<p>I can understand the intuitive appeal of training LLMs with machine code, but all of my experience with LLMs suggest that they are incredibly ill-suited to the task, and we just don’t have the capacity to train them to make useful machine code.
          • zx80808 hours ago
            Can &quot;LLMs are bad at counting&quot; be generalized to &quot;LLM are better in complex stuff but make more mistakes in simple&quot;?
            • fluoridation7 hours ago
              I would phrase it as &quot;LLMs are good at big picture stuff and bad at fine detail&quot;, or to put it another way, they&#x27;re accurate, but imprecise and with low reproducibility.
              • bregma4 hours ago
                It is my experience that it&#x27;s the opposite. LLMs are very very precise but wildly inaccurate. They might give you 17 significant digits but be off by 10 orders of magnitude, to use a metaphor.
              • benj1114 hours ago
                But where does that leave us when programmers treat themselves as architects with the AI doing the drudge work? As seems to be the fashion.<p>It then means you have 2 parties focussing on the big picture and no one focussing on the details.
            • ozlikethewizard7 hours ago
              Its more LLMs are better at vague problems with multiple non perfect solutions, and struggle at problems that require precision.
            • klodolph7 hours ago
              No, I don’t think so. LLMs are good at a lot of simple tasks, but bad at certain simple tasks. Moravec’s paradox in a new iteration.<p>It applies to humans too. Calculus is “simple” but it takes something like sixteen years to train a human to do it, if all goes well. Meanwhile, most humans think that inverse kinematics is, like, the easiest thing in the world (it’s a super complicated task).
              • fluoridation7 hours ago
                Calculus is definitely the harder task, considering it took a species developing the cognitive capacity for symbolic reasoning for it to show up, whereas any animal can figure out how to position its limbs. Yeah, we figured out how to make CAS programs before inverse kinematics software, but that&#x27;s because computers were made to solve numerical problems, not to replace the cerebella of chordates.
                • klodolph1 hour ago
                  &gt; Calculus is definitely the harder task,<p>You’re only evaluating “harder” or “easier” based on the perspective of somebody who has a mammalian brain with millions of years of selective pressure to make it suitable for solving inverse kinematics problems.<p>The point here is that when we start constructing agents or tools with different architectures to ourselves, it makes sense to reevaluate notions of whether something is ‘hard’ or ‘easy’. LLMs are bad at counting not because counting is hard, but because their architecture makes it hard.
        • dezgeg5 hours ago
          Even if it could, it would be ridiculously token inefficient to update huge amount of addresses instead when some small change is done to the middle of a binary
    • xiaoyu20068 hours ago
      It should not. Abstraction in software engineering brings intelligence. (compression correlates to intelligence)
      • shshshjaja8 hours ago
        runApp()<p>Done! Excellent abstraction. High intelligence.
      • frwrfwrfeefwf8 hours ago
        people don&#x27;t get this
      • dyauspitr8 hours ago
        Why? I mean this is all emergent, right? And it’s not like humans ever work at this level. It would be very interesting to see what sort of outputs and abstractions an LLM comes up with.
    • bandrami8 hours ago
      Generative algorithms have been studied for decades now and while they have led to some interesting results they&#x27;re a bad fit for LLMs because there&#x27;s no such thing as a &quot;plausible&quot; binary: a small perturbation yields an unusable result.
    • fulafel8 hours ago
      Technically they are, just a subset. But still a practical one, they&#x27;re frequently used to produce executable files.
    • rvz8 hours ago
      I think you forgot the &quot;&#x2F;s&quot;
    • wahnfrieden8 hours ago
      [flagged]
    • junior446607 hours ago
      [flagged]