Skip to content

Instantly share code, notes, and snippets.

{"question":"Will US BTC spot ETFs have net positive inflows on May 5, 2026 per Farside Investors?","outcomes":["Yes","No"],"model":{"model_identifier":"Qwen/Qwen3-32B","prompt_context":"You are a prediction market settlement judge. Determine the outcome using ONLY the evidence provided below. Do not use outside knowledge. Do not guess.\n\nQUESTION: Will US BTC spot ETFs have net positive inflows on May 5, 2026 per Farside Investors\n\nDATA SOURCES:\n- Farside Investors BTC ETF flow table (https://farside.co.uk/btc/)\n\nSETTLEMENT RULES:\n- Use ONLY the evidence appended below.\n- Locate the Total net flow value (USD millions) for trading date Tuesday, May 5, 2026.\n- Output \"Yes\" if: the Total net flow is strictly greater than zero (positive inflows)\n- Output \"No\" if: the Total net flow is zero or negative (zero inflows or net outflows)\n\nVALID OUTCOMES — output exactly one and nothing else:\nYes\nNo\n\nSource data below:\n"},"initial_liquidity":"1000000","initial_pool":"707107","refund":"292893","mark
@kutschenator
kutschenator / StaticallyAccessible.swift
Last active September 4, 2017 13:36
StaticallyAccessible
postfix operator ~
protocol StaticallyAccessible { }
extension StaticallyAccessible {
static postfix func ~ (c: Self) -> Self.Type {
return type(of: c)
}
var 🌩: Self.Type {
return type(of: self)
}
@kutschenator
kutschenator / PassThroughView.swift
Created January 31, 2015 07:09
Implementation of PassThroughView in Swift
import Foundation
import UIKit
class PassThroughView: UIView {
override func pointInside(point: CGPoint, withEvent event: UIEvent?) -> Bool {
for subview in subviews as [UIView] {
if !subview.hidden && subview.alpha > 0 && subview.userInteractionEnabled && subview.pointInside(convertPoint(point, toView: subview), withEvent: event) {
return true
}
}