Skip to content

Instantly share code, notes, and snippets.

View Gerrilicious's full-sized avatar

Gereon Doerner Gerrilicious

  • RDS CONSULTING GmbH
  • Düsseldorf
View GitHub Profile

Beast Mode

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.

Below you will find the Beast Mode prompt in various versions - starting with the most recent - 3.1

Installation Instructions

  • Go to the "agent" dropdown in VS Code chat sidebar and select "Configure Modes".
  • Select "Create new custom chat mode file"
@meanpixel-mbr
meanpixel-mbr / EOSPseudoCode.cs
Created October 21, 2021 22:06
Pseudo Code Listing of Connecting, Logging In, and Listing Friends with EOS SDK
PlatformInterface.Initialize();
var interface = PlatformInterface.Create();
// Aufruf WebBrowser, Epic Kontovlogin zulassen
interface.GetAuthInterface().Login(callback => {
var userId = callback.LocalUserId;
@DanDiplo
DanDiplo / JS-LINQ.js
Last active November 20, 2025 05:46
JavaScript equivalents of some common C# LINQ methods. To help me remember!
// JS array equivalents to C# LINQ methods - by Dan B.
// First: This version using older JavaScript notation for universal browser support (scroll down for ES6 version):
// Here's a simple array of "person" objects
var people = [
{ name: "John", age: 20 },
{ name: "Mary", age: 35 },
{ name: "Arthur", age: 78 },
{ name: "Mike", age: 27 },
@theuntitled
theuntitled / DataContext.cs
Last active December 14, 2018 11:12
Elmah v1.2 POCO and Code First Migration
using System.Data.Entity;
using ProjectName.Models;
namespace ProjectName {
public class DataContext : DbContext {
internal DbSet<ElmahError> ElmahErrors { get; set; }
}