6 comments

  • voidUpdate3 hours ago
    &gt; First thing I did was look at the raw bytes: xxd -l 4 &quot;ClientApp.make&quot;<p>I recommend using the linux &quot;file&quot; command, since it will generally be able to tell you these sorts of things straight away. I&#x27;ve been working on a long-term project to directly import figma design files into Unity, so I&#x27;ve ended up coming across a lot of these things myself
    • doctorpangloss3 hours ago
      Tell it to Mr. Claude. Who do you think made all these decisions?
      • frumplestlatz1 hour ago
        This is depressing.<p>We need different language for describing things AI did for us vs things we figured out ourselves. When a human presents work under their own name, there is an unspoken but widely relied-upon assumption that the presenter has exercised judgment over the space of possible choices and can explain why these ones were taken.<p>In other words, we naturally assume they engaged with the problem space deeply enough to justify the decisions made.<p>I think AI-produced code and investigation needs a disclaimer, and I say that as someone who uses vibe coding a <i>lot</i> to produce tooling used in our development process.<p>If you didn’t do it or write it yourself, you don’t understand it as well as if you had. If you didn’t look at the output in great detail and understand every choice made, you <i>really</i> shouldn’t be putting your name on it — or staking your reputation on it — without a pretty clear disclaimer.<p>And if you present an investigation done by AI as something done by yourself, you’re not really providing human insights. (Almost) anyone can drive an AI, and there’s not a lot of value there for your audience if you don’t disclose that’s what you did.<p>If you attach your name to work, you are asserting that you can meaningfully answer “why this and not something else?” across the decisions that matter. Tools that produce answers faster than humans think require new language, because our old words still imply thought occurred.
        • doctorpangloss45 minutes ago
          the whole blog post and all the author&#x27;s replies are authored by an LLM.
          • frumplestlatz30 minutes ago
            Seems so. It should be much more explicitly disclaimed.
  • albertsikkema5 days ago
    Figma&#x27;s API returns 400 for .make files, so I dug into the binary. Turns out it&#x27;s a ZIP with a custom format: Deflate for the schema chunk, Zstandard for the data, then Kiwi binary decoding. Scripts on GitHub if useful: <a href="https:&#x2F;&#x2F;github.com&#x2F;albertsikkema&#x2F;figma-make-extractor" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;albertsikkema&#x2F;figma-make-extractor</a>
    • barnas23 hours ago
      I&#x27;m curious if you tried binwalk? That&#x27;s usually my goto for mysterious files.
      • lights01233 hours ago
        I agree. It would likely have identified the separate deflate and zstd chunks automatically.
  • nadis2 hours ago
    This is fascinating, thanks for sharing! I also appreciated the &quot;when would you need this&quot; section at the end.<p>&gt; &quot;When Would You Need This? - Client hands you a Figma Make prototype but not the design file - You want to audit AI-generated code before deployment - You need to migrate away from Figma Make to a different stack - You want to extract design tokens for your design system - Pure curiosity about how Figma structures its data&quot;
  • dfajgljsldkjag1 hour ago
    It&#x27;s interesting that the AI tool just writes react rather than creating a figma drawing. All that training on writing code has made it easier for AI to just write the app than make an illustration of it.
  • systemd1networ1 hour ago
    [dead]
  • vednig5 days ago
    I once reverse engineered the Figma .fig file they have utilised quite good compression and data storage techniques for a tech company that uses AWS
    • albertsikkema5 days ago
      That is a funny observation! You are right, that is strange.