Skip to content

Instantly share code, notes, and snippets.

View sscholle's full-sized avatar
🎯
Focusing

Sebastian Scholle sscholle

🎯
Focusing
  • Brainpowered
  • Cape Town, South Africa
View GitHub Profile
@sscholle
sscholle / USER_PROMPT.md
Created May 5, 2026 15:03
LLM Prompt - Test Coding & Reasoning Abilities - 01

User Prompt for Testing Coding and Reasoning Abilities

Scenario: The Resource Allocation & Pathfinding Agent

You are tasked with developing a Python agent that simulates resource allocation and pathfinding in a dynamic, grid-based environment. This task requires you to iteratively build complexity, manage state variables, and implement efficient algorithms.


Step 1: Environment Setup and Basic Movement (Foundation)

@sscholle
sscholle / llm-wiki.md
Created April 9, 2026 05:40 — forked from karpathy/llm-wiki.md
llm-wiki

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@sscholle
sscholle / node.dockerfile
Last active July 25, 2019 16:31
Test Node App with Node v10.14.2 with this Dockerfile
# CLI: docker run -it -v /somevolume:/var/www some_image bash
FROM ubuntu:xenial
VOLUME [ "./:/var/www:cached" ]
WORKDIR /var/www
RUN apt-get update
RUN apt-get install --yes curl git zip build-essential
RUN curl --silent --location https://deb.nodesource.com/setup_10.x | bash -
@sscholle
sscholle / docker-compose.yml
Last active May 6, 2019 09:00
WordPress Docker Compose
version: '3.1'
services:
wordpress:
image: wordpress
restart: always
ports:
- 8080:80
volumes:

HTML5 Markup Template - Basic

A very basic starter template with fundamental HTML5 markup -- only the basics.

Based on HTML5 Bones | http://html5bones.com

@sscholle
sscholle / designer.html
Created November 17, 2016 13:20
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@sscholle
sscholle / designer.html
Last active August 29, 2015 14:06
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-menu/core-submenu.html">
<link rel="import" href="../core-input/core-input.html">
<polymer-element name="my-element">
@sscholle
sscholle / designer.html
Last active August 29, 2015 14:06
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">