Skip to content

Instantly share code, notes, and snippets.

@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active January 7, 2025 21:56
"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
@cnolanminich
cnolanminich / deployment
Created January 7, 2025 21:15
Dagster GitHub Action with releases for prod and dev for pushes to main
name: Dagster Cloud Hybrid Deployment
on:
push: # For full deployment
branches:
- "main"
- "master"
pull_request: # For branch deployments
types: [opened, synchronize, reopened, closed]
release:
types: [published]
@cmer
cmer / LICENSE
Last active January 7, 2025 21:54
Tom-Select.js Tailwind UI theme
Copyright 2023 Carl Mercier
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHE
@nikolovlazar
nikolovlazar / keybindings.json
Last active January 7, 2025 21:54
VSCode key bindings to navigate like Neovim
[
// Navigation
{
"key": "ctrl-h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl-l",
"command": "workbench.action.navigateRight"
},
@Exorion1er
Exorion1er / FFXIVModding.md
Last active January 7, 2025 21:52
Beginner-friendly FFXIV Modding Guide

This guide was written for people with no idea on how any of this works, complete beginner style. Feel free to skip steps if you feel comfortable doing so.
I wrote this for the Devil's Lair, check out one of the best night clubs of Choas : https://devils-lair.carrd.co/
These steps will also work for general purposes.

Quick disclaimer: This is only for PC. From what I know, it isn't possible to install mods or shaders on consoles.

Okay so first of all, this is largely inspired by https://reniguide.info/ for the Penumbra and Mare installation which is a great resource.

Summary:

@ombhilare999
ombhilare999 / README.md
Last active January 7, 2025 21:47
Accessing EECG printers

Subject: Steps for Using the Network Printer

Hi Everyone,

I understand that using the network printer can be a bit challenging. After some effort, I’ve figured out the following steps to help you print documents. If you face any difficulties, feel free to reach out to me. My desk is right in front of the door.

Steps to Print

  1. Log in to the Anubis/Bastet server:
    Use the following command:
@Evavic44
Evavic44 / Buymeacoffee.md
Last active January 7, 2025 21:47
Buymeacoffee widget React
import React, { useEffect } from "react";

export default function Buymeacoffee() {
	useEffect(() => {
		const script = document.createElement("script");
		const div = document.getElementById("supportByBMC");
		script.setAttribute("data-name", "BMC-Widget");
		script.src = "https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js";
		script.setAttribute("data-id", "evavic44");