Skip to content

Instantly share code, notes, and snippets.

View joshuabradley012's full-sized avatar

Josh Bradley joshuabradley012

View GitHub Profile

My Personal Constitution: A Living Document

Preamble: Embracing the Flow of Existence

This Personal Constitution is a living document, reflecting my ongoing journey of self-discovery and engagement with the world. It is not a rigid set of rules, but a guiding framework based on the truths I have found in my experiences, thoughts, and explorations. It emphasizes embracing the dynamic nature of life, the pursuit of knowledge and wisdom, and the importance of contributing positively to humanity.

Core Values:

1. The Pursuit of Knowledge and Wisdom: A Lifelong Journey

@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active April 20, 2025 02:39
"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
@daliborgogic
daliborgogic / delay.js
Created December 16, 2016 15:26
Node.js Async/Await delay
'use strict'
const timeout = ms => new Promise(res => setTimeout(res, ms))
function convinceMe (convince) {
let unixTime = Math.round(+new Date() / 1000)
console.log(`Delay ${convince} at ${unixTime}`)
}
async function delay () {