Skip to content

Instantly share code, notes, and snippets.

View massive's full-sized avatar
🏠
Working from home

Matias Käkelä massive

🏠
Working from home
View GitHub Profile
@0xqtpie
0xqtpie / README.md
Created December 27, 2025 06:45
claude code <--> opencode migrator

Claude Code ↔ OpenCode Migration Script

A self-contained Python CLI that migrates configurations between Claude Code and OpenCode formats. Supports bidirectional migration. Uses uv with PEP 723 inline dependencies for zero-setup execution.

Quick Start

# Forward: Claude Code → OpenCode
uv run migrate_claude_to_opencode.py --dry-run        # Preview changes
uv run migrate_claude_to_opencode.py --all # Migrate everything
@btroncone
btroncone / rxjs_operators_by_example.md
Last active September 14, 2025 16:48
RxJS 5 Operators By Example
@stevedomin
stevedomin / porcelain_spawn_receive.exs
Last active August 29, 2015 14:16
Porcelain spawn/receive
alias Porcelain.Process
alias Porcelain.Result
defmodule Cmd do
def run() do
args = ["b"]
opts = [
in: "a\nb\nc\nb\nb\nd\nb\ne",
out: {:send, self()},
err: {:send, self()} # eksperimental -> This is the only thing that changed
@JangoSteve
JangoSteve / rails_omakase.rb
Last active December 12, 2015 01:58 — forked from postmodern/rails_omakase.rb
Works with Rails 2.2.x on Ruby 1.8.7. Really harmless, but if you see a `#<ActionController>` object in your params, that's bad.
#!/usr/bin/env ruby
#
# Proof-of-Concept exploit for Rails Remote Code Execution (CVE-2013-0333)
#
# ## Advisory
#
# https://groups.google.com/forum/?fromgroups=#!topic/rubyonrails-security/1h2DR63ViGo
#
# ## Caveats
#