Skip to content

Instantly share code, notes, and snippets.

@jonmumm
jonmumm / Volatility Waterfall.md
Created January 7, 2025 15:02
The Volatility Waterfall

The Volatility Waterfall

Imagine two vast reservoirs of water. One sits high above a waterfall, brimming with potential energy. The other rests calmly below, having already plunged over the edge. In financial terms, the upper reservoir is our global economy—laden with debt, inflation, and plenty of capital searching for the next big bet. The lower reservoir is an alternative state of money and value, quieter and ostensibly more stable, yet still receiving an inflow from above.

Between these reservoirs roars a waterfall—a torrent of volatility. By itself, it seems chaotic, but with a bit of engineering, that volatility can be harnessed, much like a hydroelectric dam harnesses the power of falling water to generate electricity. Here’s how it all fits together in the broader picture of debt, inflation, military might, and a possible lower-entropy system.


The Upper Reservoir: Debt-Fueled Potential Energy

@jonmumm
jonmumm / highlight.tsx
Created June 6, 2024 13:26
Highlight Component
"use client";
import { useStore } from "@nanostores/react";
import { Slot } from "@radix-ui/react-slot";
import { atom } from "nanostores";
import React, { ReactNode, createContext, useContext, useState } from "react";
import { twc } from "react-twc";
import { Popover, PopoverContent, PopoverTrigger } from "./layout/popover";
interface HighlightProps {
@jonmumm
jonmumm / README.md
Created February 15, 2024 04:53
ActorKit QuickStart Guide

Quickstart Guide for ActorKit

This guide outlines integrating ActorKit with PartyKit, focusing on XState for defining state machines and Zod for validating commands and events. It includes configuring ActorKit with dynamic secrets and hostnames for enhanced security and deployment flexibility.

Installation

Ensure ActorKit, XState, PartyKit, and Zod are installed:

Strikers Trading Card Game Rulebook

Table of Contents

  1. Introduction

    • Overview
    • Objective
    • Components
  2. Game Setup

Machine Component

A React-Router like component for conditionally rendering components based on the current state of a running xstate machine.

import { useSelector } from '@xstate/react';
import React, { ReactNode, useContext } from 'react';
import { AnyInterpreter, StateValue } from 'xstate';

/**
@jonmumm
jonmumm / machine.js
Last active June 4, 2021 23:36
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
}
a {
text-decoration: none;
color: rgb(66, 134, 201);
&:hover {
@jonmumm
jonmumm / gist:3153071
Created July 20, 2012 20:34
OpenTok Hello World
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>OpenTok Getting Started</title>
<script src="http://staging.tokbox.com/v0.91/js/TB.min.js"></script>
<script type="text/javascript">
var apiKey = '1127';
var sessionId = '14685d1ac5907f4a2814fed28294d3f797f34955';
var token = 'devtoken';
@jonmumm
jonmumm / README.md
Created July 17, 2012 22:30
OpenTok Heroku Readme

OpenTok is a hosted API for adding real-time video chat to your application. The API gives developers the ability to create private one-to-one chats, group chats, or broadcasts that can stream to thousands of viewers in real-time.

When developing with OpenTok, most of the development is done on the client. The server is used only to generate and distribute room ids (sessions) and security credentials (tokens) to the client.

OpenTok has client-side libraries for JavaScript, iOS, and ActionScript, and server-side libraries for Ruby, PHP, Java, Python, .NET and Node.js. This add-on will set up your server-side environment for use with OpenTok.

@jonmumm
jonmumm / Basic.php
Created September 2, 2011 22:41
Using the _OT.widget to broadcast
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Widget Sample - Basic</title>
<script src="http://staging.tokbox.com/v0.91/js/TB.min.js"></script>
<script src='../../_OT.js'></script>
</head>