Skip to content

Instantly share code, notes, and snippets.

@miratcan
miratcan / market_thesis.md
Last active February 15, 2026 21:44
Crypto Market Thesis: Wyckoff Accumulation (Bear Phase)

Market Manipulation / Wyckoff Accumulation Theory (2026-02-16)

User's thesis about the current BTC bear market (Feb 2026). This is the user's active trading thesis — reference in future sessions when discussing market conditions, SHORT positions, or training parameters.

Core Theory

The current BTC crash (98k → 60k) is a coordinated Wyckoff accumulation by whales/government, NOT a genuine bear market. The goal is to accumulate BTC cheaply before the US Strategic Bitcoin Reserve is filled.

Key Elements

@miratcan
miratcan / gist:f2860e216986abf9c876449198f7c33d
Last active February 14, 2026 18:13
Jarvis Emergency Mode - LLM Trading Prompt (Claude Code + simsar MCP)
# Jarvis Emergency Mode - LLM Trading Prompt
When emergency mode is active, this prompt is sent to an LLM subprocess
with access to market data tools. The LLM fetches whatever data it needs
and makes trading decisions autonomously. LLM-agnostic — works with any
model that supports tool use or HTTP calls.
---
## Prompt (built per symbol)
@miratcan
miratcan / market-analysis-2026-02-12.md
Last active February 12, 2026 10:50
Kripto Piyasa Analizi - 12 Şubat 2026 (BTC 7K, Fear&Greed 5, Dead Cat Bounce?)

Kripto Piyasa Analizi - 12 Şubat 2026

Piyasa Durumu

Gösterge Değer Yorum
Fear & Greed 5 EXTREME FEAR - tarihsel olarak nadir ve dip bölgesi
BTC Fiyat $67,666 2 haftada $89K → $67K (-%24)
ETH Fiyat $1,982 2 haftada $3,010 → $1,982 (-%34)
BTC Daily RSI 26.6 OVERSOLD
@miratcan
miratcan / deal-gatekeeper.md
Last active February 4, 2026 00:48
AI-Powered Investor Matching Platform - Proje Brief

Deal Gatekeeper — Tam Doküman


BÖLÜM 1: İŞ MODELİ


Konsept Özeti

@miratcan
miratcan / annotated_turkish_syllables.py
Last active August 28, 2025 22:53
Python'da Türkçe Heceleme Yapma
def get_syllables(word):
syllables = []
"""
Aşağıdaki satır gelen kelimenin ünlü harfler 1, ünsüzler 0 olacak
şekilde desenini çıkarır.
Örneğin: arabacı -> 1010101, türkiye -> 010010
"""

AGENTS.md (Generalized)

This document defines the collaboration rules and development principles expected of all AI agents and contributors across projects. Originally designed for a scalable content-sharing platform, these guidelines are now abstracted for universal use.


🔧 General Code Style (Universal)

  • Prioritize simplicity, readability, and maintainability.
  • Avoid code duplication; reuse logic and components.
@miratcan
miratcan / fblogin.py
Created January 2, 2016 10:06
FB Login Brute Force (Requires mechanize module)
import itertools
import sys
from time import sleep
import mechanize
CHRS = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
MOZILLA_UAS = 'Mozilla/5.0 (X11; U; Linux i686; en-US) ' \
'AppleWebKit/534.7 (KHTML, like Gecko) ' \
@miratcan
miratcan / game_tester.lua
Last active October 27, 2023 12:34
Run tests on game before start on TIC-80
local testRunner = {
tests = {
test_foo = function() end,
test_bar = function() end,
test_zoo = function() end
},
init = function(self)
self._tests = {}
for n, f in pairs(self.tests) do
table.insert(self._tests, {n, f})
@miratcan
miratcan / blockchain.py
Last active September 22, 2023 12:33
Blockchain with Python
from hashlib import sha256
from time import time
HARDNESS = 4
VALID_BLOCK_PREFIX = "0" * HARDNESS
def is_valid_hash(hash_str):
return hash_str.startswith(VALID_BLOCK_PREFIX)
@miratcan
miratcan / fix_database_to_utf8.py
Last active August 31, 2023 00:06
Small python script that converts character sets to utf8 in all databases and tables. My solution for "Illegal mix of collations" errors. (http://stackoverflow.com/questions/3029321/how-to-solve-illegal-mix-of-collations-in-mysql)
from MySQLdb import connect
conn = connect(user="[USER]", passwd= "[PASSWORD]")
cur = conn.cursor()
cur.execute("show databases;")
dbs_to_update = filter(
lambda db: db not in ('information_schema', 'mysql', 'performance_schema'),
[dbname[0] for dbname in cur.fetchall()])