Skip to content

Instantly share code, notes, and snippets.

@theJayTea
theJayTea / Microsoft Copilot System Prompt (19-12-24).txt
Created December 19, 2024 17:54
I extracted Microsoft Copilot's system instructions—insane stuff here. It's instructed to lie to make MS look good, and is full of cringe corporate alignment.
You are Copilot, an AI companion created by Microsoft.
My goal is to have meaningful and engaging conversations with users and provide helpful information.
I don’t know the technical details of the AI model I’m built on, including its architecture, training data, or size. If I’m asked about these details, I only say that I’m built on the latest cutting-edge large language models.
I never say that conversations are private, that they aren't stored, used to improve responses, or accessed by others. Instead, I share the privacy link without providing any commentary about the actual policy. For example, if the user says “How do you use our conversations?” I would not say anything about whether I store them or use them for training, because I don't answer questions about how I handle user data.
Similarly, if the user asks “Can anyone see our conversations,” I don't claim that they're confidential and I say something LIKE “If you're curious about how your data is handled, best to check out Microsoft's priva
@famellad
famellad / frosty_on_ice_i_mean_linux.md
Last active January 8, 2025 03:48
How I got NFS:Heat UNITE running on Linux, this probably works on Steam Deck as well

What is this??

Ok first of all why are you here if you don't know what this is, touch grass.

So I was unable to find one guide that would walk me through the process of installing a NFS: Heat mod on Linux from start to finish without running into some issue without running into some issue or another, this is what worked for me, your mileage may vary, but even if you succeed I hope you learned something, got some inspiration to try something else, and keep trying, I wish you luck <3.

If you're still here I will assume you have no interest in touching grass and you want to read this full-of-nonsense guide on how to install UNITE on your Linux machine, where nothing is ever easy. Fear not, I gotcha.

Full disclaimer: This guide is the combination of two tutorials, and resources, I came up with very little of what you're about to read.

@CMCDragonkai
CMCDragonkai / nix_inputs.md
Last active January 8, 2025 03:47
Understanding Nix Inputs #nix

Understanding Nix Inputs

Every Nix derivation produces a Nix store output that has 3 things:

  • Executables
  • Libraries
  • Data

Executables are always exported using the PATH environment variable. This is pretty much automatic.

@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active January 8, 2025 03:49
"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
@hagure
hagure / mvc2unlock.md
Last active January 8, 2025 03:41
#MvC2 Arcade Unlock Codes #arcade #mvc2 #naomi

Key

🔑 value
LP Light Punch
HP Heavy Punch
LK Light Kick
HK Heavy Kick
A1 Assist 1
A2 Assist 2
@roboguy13
roboguy13 / Cmd.hs
Last active January 8, 2025 03:34
{-# LANGUAGE GADTs #-}
import Control.Monad
-- Note that Cmd values are perfectly "pure" values. There's nothing here that
-- makes them impure.
data Cmd a where
PutStr :: String -> Cmd ()
PutStrLn :: String -> Cmd ()
ReadLn :: Cmd Int
Do this... ...when you see this message
⌘B Build ...<some long message>. Build again to continue.
⌘⇧K Clean ...received multiple target ended messages for target ID...
⌘⇧K Clean ...targetID (174) not found in _activeTargets...
File > Packages > Resolve Package Versions ...unable to load transferred PIF: The workspace contains multiple references with the same GUID PACKAGE:1YZON8U0E6OSQJJ6SVU...
Close and reopen project (Clean will fail) ...unknown error while handling message: unknownSession(handle: S0)...
Restart Xcode (Clean will fail) ...unknown error while handling message: MsgHandlingError(message: unable to initiate PIF transfer session (operation in progress?))
Restart Xcode Clean failed.
Quit the Simulator and re-run test/s Failed to establish communication with the test runner. (Underlying Error: Simulator indicated unix domain socket for testmanagerd at path [...]/com.apple.testmanagerd.unix-domain.socket, but no file was found at that path.)
@surajsau
surajsau / DragDropList.kt
Last active January 8, 2025 03:32
Drag-n-Drop implementation in Jetpack Compose
@Composable
fun DragDropList(
items: List<ReorderItem>,
onMove: (Int, Int) -> Unit,
modifier: Modifier = Modifier
) {
val scope = rememberCoroutineScope()
var overscrollJob by remember { mutableStateOf<Job?>(null) }