Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env node
// codex-mcp-bridge.js - MCP proxy that injects session_id into codex tool results
import { spawn } from "node:child_process";
import readline from "node:readline";
// Spawn the actual codex mcp server
const child = spawn(
"codex",
[
"mcp",
@zippoxer
zippoxer / board.go
Created July 15, 2018 18:38
flutter_board server
package main
import (
"encoding/binary"
"image/color"
"io"
"log"
"net"
"sync"
"time"
@zippoxer
zippoxer / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../chart-js/chart-js.html">
<polymer-element name="my-element">
@zippoxer
zippoxer / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
@zippoxer
zippoxer / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<polymer-element name="my-element">
<template>
<style>
:host {
@zippoxer
zippoxer / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../notification-elements/notification-alert.html">
<polymer-element name="my-element">
@zippoxer
zippoxer / designer.html
Created October 11, 2014 00:00
designer
<link rel="import" href="../core-menu-button/core-menu-button.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../topeka-elements/category-images.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../topeka-elements/category-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
@zippoxer
zippoxer / network_rail.go
Created July 9, 2012 15:17 — forked from robotmay/network_rail.go
Network Rail ActiveMQ Streams in Go
package main
import (
"os"
"fmt"
"errors"
"net"
"encoding/json"
"github.com/gmallard/stompngo"
)