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

Updates without submitting to App Store

This is allowed for ReactNative apps. Source

AppHub.io is one option, open source coming soon.

Building a ReactNative app with Swift

See react/react-native#2648

@staltz
staltz / introrx.md
Last active July 24, 2026 00:55
The introduction to Reactive Programming you've been missing
@joyrexus
joyrexus / README.md
Last active May 2, 2026 22:40 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

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