A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
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.
# 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