Skip to content

Instantly share code, notes, and snippets.

View GuiBibeau's full-sized avatar

Gui Bibeau GuiBibeau

View GitHub Profile
@GuiBibeau
GuiBibeau / 1.txt
Last active April 25, 2025 06:11
Vibe architecting prompts
I want you to refine this brainstorming document into a prompt for a deep research system that will be tasked with writing a technical spike
research document on a software engineering project. The goal of this research is to help guide future agentic coding systems into
having a good understanding of the technical landscape around the software the user wants to create.
<context>
Deep research is a category of product where large language models capable of test time compute are paired with capacities to:
- search the web
- browse documentatin
- read research paper
- further refine their research based on their finding
@GuiBibeau
GuiBibeau / bubble.svelte
Created May 14, 2023 02:02
svelte glowy bubles
<script lang="ts">
import type { AnimationLength, Percentage, Size } from '$lib/circles';
export let top: Percentage = undefined;
export let bottom: Percentage = undefined;
export let right: Percentage = undefined;
export let left: Percentage = undefined;
export let animatonLength: AnimationLength = 10;
export let size: Size;