Skip to content

Instantly share code, notes, and snippets.

@lazabogdan
lazabogdan / llm-wiki.md
Created June 12, 2026 08:31 — 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.

@lazabogdan
lazabogdan / linkedin-bot-gaming-research.md
Last active April 6, 2026 12:59
LinkedIn Bot & Automation Gaming Research

Gaming LinkedIn: Bots, Automation & How People Get Caught

Research compiled: April 2026 Sources: Public reporting, court filings, LinkedIn transparency reports, Reddit communities, security research, news coverage through mid-2025


Table of Contents

  1. Common Bot & Automation Tactics
@lazabogdan
lazabogdan / github_gist_tools.py
Created August 21, 2024 18:50
GitHub Gist Tools for LangChain
import os
from typing import Dict
from langchain.tools import tool
import requests
# Replace with your GitHub token or use environment variables
GITHUB_TOKEN = "your_github_token_here"
@tool
@lazabogdan
lazabogdan / test.txt
Created August 21, 2024 18:42
Test Gist created by LangChain tool
This is updated content by LangChain tool
@lazabogdan
lazabogdan / private_fork.md
Created December 4, 2023 07:06 — forked from 0xjac/private_fork.md
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git

@lazabogdan
lazabogdan / rails_deployment.md
Created September 6, 2023 05:30 — forked from jamessom/rails_deployment.md
Rails deployment to AWS EC2

Rails Deployment to AWS EC2

Stack : (Nginx + Phusion Passenger + Postgresql)

  • Step -1

    To Launch an EC2 instance from aws console with all the credentials and configurations hooked.

  • Step-2

@lazabogdan
lazabogdan / .babelrc
Created August 18, 2018 11:26
.babelrc ie11
{
"plugins": ["transform-runtime"],
"presets": [
["env", {
"targets": {
"ie": "11",
"browsers": ["last 2 versions"]
}
}]
]
@lazabogdan
lazabogdan / SassMeister-input.scss
Last active August 30, 2024 00:40
Sass sizing utility
// ----
// libsass (v3.3.2)
// ----
$sizer: 1rem;
$sizer-increment: 5;
$sizers: ();
@for $i from 1 through 20 {
@lazabogdan
lazabogdan / SassMeister-input.scss
Last active August 14, 2020 18:10
Sass spacing utility
// ----
// libsass (v3.3.2)
// ----
$spacer: 1rem;
$spacer-x: $spacer;
$spacer-y: $spacer;
$spacers: ();
@lazabogdan
lazabogdan / Utilities.swift
Created September 24, 2015 13:31
CouchbaseLite Swift
//
// Utilities.swift
// swift-couchbaselite
//
// Created by Jens Alfke on 9/17/14.
// Copyright (c) 2014 Couchbase, Inc. All rights reserved.
//
import Foundation