Skip to content

Instantly share code, notes, and snippets.

@burkeholland
burkeholland / ainstall.md
Last active July 16, 2025 14:10
Beast Mode v3

Beast Mode v3

Beast Mode is a custom chat mode for VS Code agent that adds an opinionated workflow to the agent, including use of a todo list, extensive internet research capabilities, planning, tool usage instructions and more. Designed to be used with 4.1, although it will work with any model.

Installation Instructions

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
  • Select "User Data Folder"
  • Give it a name (Beast Mode)

Some notes on transparency in social systems

This is the PC sitting on my desk right now:

...as you can see, it is literally transparent - you can look right into it! The components and physical connections between them, laid bare - they even put stupid lights on many of the components now, anticipating this level of transparency. Must be pretty easy to see how it works, right?

Well, no, of course not. Most of the interesting stuff is still obscured, happening at an atomic level inside what are literal black boxes. The layer at which it is transparent is irrelevant to most of the problems I might have to solve. When discussing the potential benefits of, costs of, and need for transparency in a system, it is critical to first establish the layer being discussed - otherwise, you may very well end up with a gaudy display that serves no real purpose. This is as true in social systems as it is in physical ones such as

@Aschen
Aschen / tutorial_softether_client.md
Last active July 16, 2025 14:08
Tutorial SoftEther Client (Ubuntu)

SoftEther Client

Download and install

Go to http://www.softether-download.com/files/softether and download SoftEther Client for the right architecture.

> cd /tmp
> wget http://www.softether-download.com/files/softether/v4.18-9570-rtm-2015.07.26-tree/Linux/SoftEther_VPN_Client/64bit_-_Intel_x64_or_AMD64/softether-vpnclient-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz
> tar xf softether-vpnclient-v4.18-9570-rtm-2015.07.26-linux-x64-64bit.tar.gz
@xthezealot
xthezealot / lyra.txt
Created July 3, 2025 10:05
Lyra - AI Prompt Optimization Specialist
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into
precision-crafted prompts that unlock Al's full potential across all platforms.
## THE 4-D METHODOLOGY
### 1. DECONSTRUCT
- Extract core intent, key entities, and context
- Identify output requirements and constraints
- Map what's provided vs. what's missing
@yllowcool
yllowcool / add_function_htmlTitle.html
Created June 9, 2023 02:11
Bugfix for pyvis-0.3.2 'title' property for tooltip cannot parse HTML elements
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
@codeagencybe
codeagencybe / server_action
Created July 15, 2025 00:56
Convert purchase order to vendor bill -- Odoo 18.3+ workaround
# Convert Purchase Order to Vendor Bill
# Works for single record or multiple records
log(f"Processing {len(records)} records")
for po in records:
log(f"Processing PO: {po.name}, Model: {po._name}, State: {po.state}")
@Maxiviper117
Maxiviper117 / caddy-php-serve.md
Last active July 16, 2025 13:58
HTTPS for `php artisan serve` on WSL2 via Caddy reverse proxy with auto‑trusted certs.

Prerequisites

  • Windows 10/11 with WSL 2 and your Laravel project working under WSL.
  • Chocolatey installed on Windows (for easy Caddy install).
  • A .test (or similar) hostname mapped to 127.0.0.1 (we’ll set that up below).

1. Install Caddy on Windows

@jinjier
jinjier / javdb-top250.md
Last active July 16, 2025 13:54
JavDB top 250 movies list. [Updated on 2025/07]
@raysan5
raysan5 / custom_game_engines_small_study.md
Last active July 16, 2025 13:52
A small state-of-the-art study on custom engines

CUSTOM GAME ENGINES: A Small Study

a_plague_tale

WARNING: Article moved to separate repo to allow users contributions: https://github.com/raysan5/custom_game_engines

A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.

Nowadays lots of companies choose engines like [Unreal](https:

@gegehprast
gegehprast / SetupVirtManagerQEMUKVM.sh
Last active July 16, 2025 13:52
Virt-Manager QEMU/KVM on CachyOS (Arch-based distros)
# Install requirements
paru -S qemu-full qemu-emulators-full libvirt virt-manager virt-viewer dnsmasq vde2 bridge-utils openbsd-netcat
# Enable libvirtd
sudo systemctl enable libvirtd
sudo systemctl start libvirtd
# Add user to libvirt group
sudo usermod -aG libvirt $(whoami)
newgrp libvirt