Skip to content

Instantly share code, notes, and snippets.

Are any of these local sized models any good at code generation?

This is actually quite a complex question that needs to be broken down a bit.

Which models are good at code generation, and how do we objectively know?

LLMs are tested against benchmarks to assess their performance, some coding benchmarks are:

@nsimmons
nsimmons / ReactNative-Deep-Dive.md
Last active October 9, 2023 07:48
ReactNative Deep Dive
@staltz
staltz / introrx.md
Last active July 31, 2025 06:33
The introduction to Reactive Programming you've been missing
@joyrexus
joyrexus / README.md
Last active August 1, 2025 10:41 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})