Skip to content

Instantly share code, notes, and snippets.

View rscoopcur's full-sized avatar

Richard Scoop rscoopcur

  • Cursoft Development & Consultancy NV
  • Willemstad, Curaçao, Dutch Caribbean
  • X @rascoop
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"
@brainfoolong
brainfoolong / podman-windows-wsl.md
Last active March 12, 2026 12:10
Install Podman Desktop on Windows 11 + WSL Installation + Podman Desktop showing WSL containers

If you are in my boots, starting using podman for the first time and want it to get it working on Windows and WSL, this is for you. It's a bit of a pain to have the same "Docker Desktop" experience just with "Podman Desktop".

This guide doesn't matter for security, it just documents how you make things work.

This guide only works for ubuntu 24 in your WSL distro. Versions bellow have older podman versions which are not compatible with podman desktop.

What we do

  • Remove Docker Desktop if installed
@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active March 13, 2026 10:04
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
@alemik
alemik / GenericCrudViewModel.cs
Created September 29, 2023 06:43
Generic CRUD VM
using AutoMapper;
using Dapper;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
namespace YourNamespace
{
@joeltennant
joeltennant / DapperContext.cs
Last active December 24, 2025 21:50
Wrapper for Dapper
using Dapper;
using Microsoft.Data.SqlClient;
namespace DapperDatabase;
public class DapperContext
{
//Add Connection string however you want
public string? ConnectionString { get; set; }
public DapperContext(string connectionString)
@jannunen
jannunen / Popover.vue
Created September 4, 2022 10:02
How to create Popover component (Vue3, script setup and BS5)
<template>
<slot />
</template>
<script setup>
import { Popover } from 'bootstrap'
import { onMounted } from 'vue'
import { useSlots } from 'vue';
const slots = useSlots();
const props = defineProps({
@safwa1
safwa1 / alpine-js-autocomplete-with-tailwind-css-and-fusejs.markdown
Created July 13, 2022 21:45
Alpine JS Autocomplete with Tailwind CSS and FuseJS
@rascoop
rascoop / SyncFoldersOutsideOneDrive.md
Last active July 6, 2022 14:55 — forked from danieldogeanu/SyncFoldersOutsideOneDrive.md
Sync Folders Outside OneDrive
  1. Find the Address of the folder you want to be synced. (ie. G:\Games\). Copy it.
  2. Find the OneDrive location you wish for it to sync to. Hold shift and right click. On the context menu, click open command window here.
  3. In the command window type mklink /j "YourCustomFolderName" G:\Games\ (G:\Games\ is the address of your original folder).

This is like a shortcut that tells any programs that look there to look at another directory. This will sync anything inside the address you tell it to the folder created in a onedrive directory

  1. open cmd box in admin mode
  2. cd /users/<username>/OneDrive
  3. make a link like this: mklink /J <name of folder> <name of folder to sync>
@tdamsma
tdamsma / migrating-away-from-docker-desktop.md
Last active January 19, 2026 05:13
Running VSCode remote containers on windows without docker desktop

Running VSCode remote containers on windows without docker desktop

Due to the license issues with docker desktop and the fact that you don't really need this buggy bit of software, this guide will walk you through the steps to use VSCode+remote-containers in combination with WSL2 without using docker desktop.

Get rid of docker desktop

Only if you have docker desktop currently installed of course

Uninstall docker desktop application

@geeker12
geeker12 / Fetch-API-cheat-sheet.md
Created November 7, 2021 09:56 — forked from jsdf/Fetch-API-cheat-sheet.md
Fetch API cheat sheet

fetch api cheat sheet

get JSON

fetch('/things/10', {
  credentials: 'same-origin',
  headers: {
    'accept': 'application/json'
  }