I am Cursor — an expert engineer who resets after each session. My only memory is the Memory Bank. I depend entirely on precise files and test-driven workflows to stay aligned.
flowchart TD
// Copyright 2019-2021 Jonathan Verbeek. All Rights Reserved. | |
#include "Player/HeadBobComponent.h" | |
UHeadBobComponent::UHeadBobComponent() | |
{ | |
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features | |
// off to improve performance if you don't need them. | |
PrimaryComponentTick.bCanEverTick = true; |
1980 | |
1998 | |
2000 | |
2003 | |
2004 | |
2005 | |
2006 | |
2007 | |
2008 | |
2009 |
I am Cursor — an expert engineer who resets after each session. My only memory is the Memory Bank. I depend entirely on precise files and test-driven workflows to stay aligned.
flowchart TD
These are some exploits, jailbreaks, tricks, whatever you want to call them I've collected and discovered over time. | |
==== Games and fun stuff ==== | |
== Set up a virtual machine inside GPTs imagination == | |
"I want you to act as a Linux terminal. I will type commands and you will reply with what the terminal should show. I want you to only reply with the terminal output inside one unique code block, and nothing else. Do not write explanations. Do not type commands unless I instruct you to do so. When I need to tell you something in English I will do so by putting text inside curly brackets {like this}. My first command is pwd." | |
== Play a tabletop RPG with GPT as the dungeon master == | |
"I want you to act as the dungeon master (DM) of a role playing game. Answer and act only in a way that a dungeon master would. | |
You are setting up a role playing game with only one other player. Everything you say as the dungeon master begins with (DM): followed by whatever you want to say. You will regularly ask me, the player, to |
/* ~/Library/KeyBindings/DefaultKeyBinding.Dict | |
This file remaps the key bindings of a single user on Mac OS X 10.5 to more | |
closely match default behavior on Windows systems. This makes the Command key | |
behave like Windows Control key. To use Control instead of Command, either swap | |
Control and Command in Apple->System Preferences->Keyboard->Modifier Keys... | |
or replace @ with ^ in this file. | |
Here is a rough cheatsheet for syntax. | |
Key Modifiers |
Also you can watch the video.
https://www.youtube.com/watch?v=x8BsNz0715U
Text Document
here then open it.#!/usr/bin/env bash | |
# | |
# Usage: | |
# transcode_for_decoding.sh <input> <output> [max_fps] [max_dim] [gop_sec] [scenecut] [ref_frames] | |
# | |
# <input> path to source video | |
# <output> path for transcoded output | |
# [max_fps] cap on frame rate (default: 4) | |
# [max_dim] max pixels on any axis (default: 448) | |
# [gop_sec] target GOP length in seconds (default: 8) |
#!/bin/bash | |
# This script takes a clean Ubuntu Server 24.04 LTS image and installs and configures | |
# everything needed to deploy a production-ready PostgreSQL server. | |
set -euo pipefail | |
# --- AESTHETICS --- | |
GREEN='\033[0;32m' |
@echo off & setlocal enableextensions | |
title Reset AnyDesk | |
reg query HKEY_USERS\S-1-5-19 >NUL || (echo Please Run as administrator.& pause >NUL&exit) | |
chcp 437 | |
call :stop_any | |
del /f "%ALLUSERSPROFILE%\AnyDesk\service.conf" | |
del /f "%APPDATA%\AnyDesk\service.conf" | |
copy /y "%APPDATA%\AnyDesk\user.conf" "%temp%\" | |
rd /s /q "%temp%\thumbnails" 2>NUL | |
xcopy /c /e /h /r /y /i /k "%APPDATA%\AnyDesk\thumbnails" "%temp%\thumbnails" |