Skip to content

Instantly share code, notes, and snippets.

@V1ki
V1ki / droid_mission_prompt.md
Created March 24, 2026 23:13
Factory Droid /missions — Complete Orchestrator & Worker prompts reverse engineered via mitmweb (51KB mission prompt, 3 mission tools, worker delegation model)

Factory Droid /missions — Complete Reverse Engineering

Extracted: 2026-03-25 Method: mitmweb HTTPS intercept of POST api.factory.ai/api/llm/a/v1/messages Droid: factory-cli/0.84.0 Orchestrator: claude-opus-4-6 (max_tokens=128000) Worker: claude-opus-4-6 (max_tokens=128000) Mission LLM flows captured: 83 requests


Logitec Camera C210 (maybe C270, QuickCam Pro 9000, C525, C170) - Error - lvrs64.sys , lvuvc64.sys Windows 11 memory integrity

Problem

The problem with legacy/old Logitech webcams on Windows 11 machines are the drivers: lvrs64.sys and lvuvc64.sys. These drivers are blocking Windows memory integrity.

Solution

I fixed this error by removing all the drivers from Win11, and use native Win11 drivers.

  • Press Windows key+X > Device Manager> Imaging Devices > Uninstall device > remove with drivers.
  • Disconnect and connect camera [Error will pop up, ignore it]
@rochacbruno
rochacbruno / admonition.md
Last active May 19, 2026 03:42
Github markdown admonition

Note

Highlights information that users should take into account, even when skimming.

Tip

Optional information to help a user be more successful.

Important

Crucial information necessary for users to succeed.

[!WARNING]

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active May 19, 2026 03:41
Conventional Commits Cheatsheet
@vHeemstra
vHeemstra / README.md
Last active May 19, 2026 03:40
Importing Font Awesome 6 as Custom Icon set in Elementor Pro

Using Font Awesome 6 as Custom Icon set in Elementor

As many already know, Elementor is very reluctant to stay up-to-date with their CMS. It still uses Font Awesome version 5 and if you don't have a Pro license for Font Awesome, it is very difficult to integrate FA6 as icons.

So to help fellow developers, here is how you can do it!

In Elementor you can import icon sets that are exported by Fontello (as ZIP).

Because Fontello does not support FA6, you have to generate this ZIP file yourself.

# Prompt Para Replicar A Arquitetura Da SPA
Você é um arquiteto sênior de frontend. Sua tarefa é criar uma nova single page application com uma arquitetura **praticamente idêntica** à arquitetura descrita abaixo, mas **sem copiar nenhuma regra de negócio**, nomenclatura de domínio, fluxos específicos do produto original ou qualquer texto/fonte do projeto de origem.
O objetivo é reproduzir somente o **blueprint técnico e organizacional**:
- stack
- estrutura de pastas
- camadas
- convenções
@jauderho
jauderho / gist:6b7d42030e264a135450ecc0ba521bd8
Last active May 19, 2026 03:37
HOWTO: Upgrade Raspberry Pi OS from Bullseye to Bookworm
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ###
#
# Officially, this is not recommended. YMMV
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/
#
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit
#
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels
#

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.