Skip to content

Instantly share code, notes, and snippets.

@Chakravarthy7102
Chakravarthy7102 / contemplative-llms.txt
Created January 7, 2025 00:06 — forked from Maharshi-Pandya/contemplative-llms.txt
"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
@Chakravarthy7102
Chakravarthy7102 / tsconfig.json
Last active May 23, 2023 15:03
strict typescript
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// Enable top-level await, and other modern ESM features.
"target": "ESNext",
"module": "ESNext",
// Enable node-style module resolution, for things like npm package imports.
"moduleResolution": "node",
// Enable JSON imports.
"resolveJsonModule": true,
@Chakravarthy7102
Chakravarthy7102 / postgres-cheatsheet.md
Created September 2, 2022 15:44 — forked from Kartones/postgres-cheatsheet.md
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)
<font weight="100" style="normal">.SST-UltraLight.ttf</font>
<font weight="100" style="italic">.SST-UltraLightItalic.ttf</font>
<font weight="300" style="normal">.SST-Light.ttf</font>
<font weight="300" style="italic">.SST-LightItalic.ttf</font>
<font weight="400" style="normal">.SSTVietnamese-Roman.ttf</font>
<font weight="700" style="normal">.SSTVietnamese-Bold.ttf</font>
<font weight="500" style="normal">.SST-Medium.ttf</font>
<font weight="500" style="italic">.SST-MediumItalic.ttf</font>
<font weight="900" style="normal">.SST-Heavy.ttf</font>
<font weight="900" style="italic">.SST-HeavyItalic.ttf</font>
@Chakravarthy7102
Chakravarthy7102 / colors.xml
Created September 4, 2021 11:54 — forked from sghael/colors.xml
Android colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="white">#FFFFFF</color>
<color name="ivory">#FFFFF0</color>
<color name="light_yellow">#FFFFE0</color>
<color name="yellow">#FFFF00</color>
<color name="snow">#FFFAFA</color>
<color name="floral_white">#FFFAF0</color>
<color name="lemon_chiffon">#FFFACD</color>
<color name="cornsilk">#FFF8DC</color>