Skip to content

Instantly share code, notes, and snippets.

@frostitution
frostitution / segagaga_tips.txt
Last active June 7, 2026 15:29
Segagaga Tips
After being frustrated with the SIM portion of Segagaga, I decided to sit down and try to decipher it, and discovered little
tips and tricks to help assist in getting good sales numbers and progression so you can get 100% market share on a first
playthrough easier
- DURING SIM, PUMP RESOURCES!!!!!!!!! MAX IT OUT
- HIRE MULTIPLE PEOPLE OF THE SAME TYPE (FARM LAB C WHEN THERE FIRST TIME)
- OUTSOURCING VOUCHER IS GOOD (BUT PRICEY)
- DONT WORRY SO MUCH ABOUT BUYING EQUIPMENT, ITS A TRAP (DOES IT AFFECT DEVS?)
- BUY INDIVIDUAL HEALING ITEMS FOR STAFF FOR STATS
- ? ITEMS ARENT REALLY WORTH IT (ONLY AFFECT INDIVIDUAL LAB), I THINK HOT SPRING IS BETTER (ALL LABS, -10 DAYS)
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp

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.

@en4rab
en4rab / CF-U1-BIOS.md
Last active June 7, 2026 15:10
Recovering the BIOS password from a Panasonic CF-U1 mk2 (AMI Aptio UEFI)

Recovering the BIOS password from a Panasonic CF-U1 mk2 (AMI Aptio UEFI)

A mess of my own making

While messing with a CF-U1 handheld PC that I bought off ebay I managed to mess up the BIOS and it seems it reverted to previous settings which included an unknown BIOS password, it would however still boot into windows. Since I could still boot windows I was able to dump the bios flash using AFUWINGUI.EXE the version I used was 3.09.03.1462 which is available here:
https://www.ami.com/support-other/ Click on Aptio 4 AMI Firmware Update Utility

@arinthros
arinthros / yvdom.css
Created January 5, 2026 22:30
YVDom CSS Exhaustive Reference
/**
* =============================================================================
* YVDOM Complete Stylesheet - Generated by Claude Opus 4.5
* =============================================================================
*
* YVDOM (YouVersion DOM) is the HTML structure used to represent Bible content
* at YouVersion. It is derived from USX (Unified Scripture XML), which is the
* standard XML format for scripture content.
*
* This stylesheet provides exhaustive documentation and styling for all YVDOM
name vibecoder-review
description Practical OWASP-focused security review for fast-moving codebases built with AI assistance - catches common patterns where speed trumps security (exposed secrets, auth bypasses, missing access controls, injection vulnerabilities)

Vibecoder Security Review

Overview

Target audience: Fast-moving codebases built by developers using AI assistance, rapid prototyping tools, and modern frameworks. These projects prioritize speed and iteration, often skipping security fundamentals.

@oleksis
oleksis / Realtek_8812BU_Wireless_USB_Linux.md
Created August 21, 2023 04:24
Compile drivers WiFi5 for Dual Band AC 1300Mbps USB3.0 Adapter
@JeffM2501
JeffM2501 / pan.c
Last active June 7, 2026 13:37
Raylib example of mouse drag panning for 2D camera.
/*******************************************************************************************
*
* raylib [2D] example - world space panning
*
* Welcome to raylib!
*
* To test examples, just press F6 and execute raylib_compile_execute script
* Note that compiled executable is placed in the same folder as .c file
*
* You can find all basic examples on C:\raylib\raylib\examples folder or