Skip to content

Instantly share code, notes, and snippets.

View jennymaeleidig's full-sized avatar

Jenny Leidig jennymaeleidig

View GitHub Profile
@jennymaeleidig
jennymaeleidig / resources.md
Last active December 4, 2025 17:25
LLM Resources

What

Tools

  • continue - code completion / ai agent extension (preferrably vscode)
  • ollama - simple tool to run llms locally
  • llama.cpp - alternative to ollama, (ollama is a cpp wrapper). more extensible / configurable
    • More here.
    • NOTE: I have not tested this method properly.
  • roo code - ai agent extension (preferrably vscode)

Double Quotes "

Good for simple strings.

var text = "Hello!";
console.log(text);

Output: