Skip to content

Instantly share code, notes, and snippets.

View githubdebugger's full-sized avatar

githubdebugger

View GitHub Profile
@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active June 15, 2025 17: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
@ShabbirHasan1
ShabbirHasan1 / aiosonic_helper.py
Last active September 10, 2024 06:46
aiosonic HTTP Client Usage Example
from __future__ import annotations, absolute_import
import os, sys, platform, asyncio, signal, logging, contextlib
from ssl import SSLContext
from http import HTTPMethod
from datetime import datetime as dtdt
from pathlib import Path
from threading import Thread
from time import sleep
from logging.handlers import RotatingFileHandler
from aiosonic import HTTPClient
@jace48
jace48 / OptionPremium_WithGreeks.py
Last active August 30, 2024 19:20
Black Scholes Merton with Greeks (Adjoints) with respect to Inputs
import math
from scipy.stats import norm
def BSM_withAdjoints(S0, r, y, sig, K, T):
#Evaluation
sqrtT = math.sqrt(T)
df = math.exp(-r * T)
# -*- coding: utf-8 -*-
"""
:description: A Function To Generate TOTP From Qrcode Image.
:license: MIT.
:author: Shabbir Hasan
:created: On Wednesday November 18 2022 17:43:57 GMT+05:30
"""
__author__ = "Shabbir Hasan"
__webpage__ = "https://github.com/ShabbirHasan1"
__license__ = "MIT"