Skip to content

Instantly share code, notes, and snippets.

Как получить супердизайн сайта или приложения с помощью AI? Простой пошаговый план для ленивых + готовый промпт

Автор: Алексей Крол Время от нуля до результата: 20-30 минут Что получите: кликабельный HTML-прототип уровня Figma, но без Figma и без дизайнера


Зачем это нужно

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.

@ElectricRCAircraftGuy
ElectricRCAircraftGuy / bookmarklets.md
Last active May 30, 2026 23:22
These are bookmarklets (ie: browser bookmarks with Javascript in them) to perform functions to help make your GitHub PR review life easier.
@peterflynn
peterflynn / Useful GitHub bookmarklets
Last active May 30, 2026 23:21
GitHub comment thread bookmarklets
To use: create a new bookmark and paste into the URL field.
In Chrome, you can paste the full multiline code as shown below.
In other browsers, you may need to minify the code into one line first.
@adrienne
adrienne / mullenweg-wpe.md
Last active May 30, 2026 23:18
The Mullenweg/WPE Thing

FULL REVERSE ENGINEERING: awstore.cloud Malware

Caution

Это профессиональный многостадийный MitM-троян, таргетированный на СНГ. Значительно опаснее обычного стилера.


Attack Overview

Элементарное "Спасибо" ниже в комментариях, будет греть душу))

graph TD
@ammaraskar
ammaraskar / effects.ksy
Last active May 30, 2026 23:14
sims2 effects resource
meta:
id: effects
file-extension: effects
endian: le
seq:
- id: first_short
type: u2
- id: num_particles
@tamzid2001
tamzid2001 / fanduel_automation.js
Last active May 30, 2026 23:12
Fanduel Automation
async function fanduel() {
// var response = await request.get(`https://sportsbook.draftkings.com/leagues/basketball/nba`);
// var $ = cheerio.load(response);
// var buttonLength = 0;
// var c;
// $("#fittPageContainer > div:nth-child(2) > div > div:nth-child(6) > div > div.PageLayout__Main > section.Card.Card--PlayByPlay > div > nav > ul > li").each((index, element)=>{
// c = $(element).find('button');
// });
//executablePath: "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome", userDataDir: '/Users/tamzidullah/Library/Application Support/Google/Chrome/Tamzid'
const browser = await puppeteer.launch({ headless: false});
@nitred
nitred / optimal_mtu.md
Last active May 30, 2026 23:11
Wireguard Optimal MTU

About

  • I faced bandwidth issues between a WG Peer and a WG server. Download bandwidth when downloading from WG Server to WG peer was reduced significantly and upload bandwidth was practically non existent.
  • I found a few reddit posts that said that we need to choose the right MTU. So I wrote a script to find an optimal MTU.
  • Ideally I would have liked to have run all possible MTU configurations for both WG Server and WG Peer but for simplicity I choose to fix the WG Server to the original 1420 MTU and tried all MTUs from 1280 to 1500 for the WG Peer.

Testing

  • On WG server, I started an iperf3 server
  • On WG peer, I wrote a script that does the following:
    • wg-quick down wg0
  • Edit MTU in the /etc/wireguard/wg0.conf file