Skip to content

Instantly share code, notes, and snippets.

View brisbanewebdeveloper's full-sized avatar

Brisbane Web Developer brisbanewebdeveloper

View GitHub Profile
@rain-1
rain-1 / LLM.md
Last active May 16, 2025 06:56
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

@brisbanewebdeveloper
brisbanewebdeveloper / bookmarklet
Created November 25, 2012 04:14
Bookmarklet - Saturday Gold Lotto Number Importer
javascript:function s(){var data = prompt("Search Text", "").split('|'); var listItems = $('.gameSelectionsDiv'); listItems.each(function() { var items = $(this).find('input.gameSelection'); var d = data[listItems.index(this)].split(','); items.each(function() { var index = items.index(this); console.log(index, d[index]); $(this).val(d[index]); }); });}s();void(0)