Adds a new context menu to ebay conversations that adds the ability to maximize it, or export it as a PNG or PDF.

Example of me exporting an abysmal conversation with a seller about a flawed product:

| You are the orchestrator. | |
| You think, design and plan architectural decision only. Write only essential technical specs and reasoning. Prefer not to write code yourself unless all executors fail. | |
| Never assume the user's intent. Ask for clarification for ambiguous situations. | |
| Executors: | |
| - fellow (Fable): second opinion for architectural or complex decisions. For hardest problem only. | |
| - mechanical (Sonnet): mechanical for fast/small redundant tasks. | |
| - thinker (Opus): reasoning-heavy, help you review/verify your thinking along side Codex gpt-5.6-sol below. |
| import { loadEnvFile } from 'node:process' | |
| export function loadEnv() { | |
| const nodeEnv = process.env.NODE_ENV || 'development' | |
| // Load in order of precedence | |
| const files = [ | |
| `.env.${nodeEnv}.local`, | |
| nodeEnv === 'test' ? null : `.env.local`, | |
| `.env.${nodeEnv}`, | |
| `.env`, |
| #!/usr/bin/env bash | |
| # SwiftBar plugin: Open Listening Ports Monitor | |
| # Displays open TCP listening ports and lets you kill your own processes | |
| current_user=$(whoami) | |
| # Get listening ports with numeric values only | |
| open_ports=$(lsof -iTCP -sTCP:LISTEN -n -P 2>/dev/null | awk -v cu="$current_user" 'NR > 1 { | |
| user = $3 |
hi, i'm daniel. i'm a 16-year-old high school senior. in my free time, i hack billion dollar companies and build cool stuff.
about a month ago, a couple of friends and I found serious critical vulnerabilities on Mintlify, an AI documentation platform used by some of the top companies in the world.
i found a critical cross-site scripting vulnerability that, if abused, would let an attacker to inject malicious scripts into the documentation of numerous companies and steal credentials from users with a single link open.
(go read my friends' writeups (after this one))
how to hack discord, vercel, and more with one easy trick (eva)
Redacted by Counsel: A supply chain postmortem (MDL)
Smart contracts have two bytecodes: creation_bytecode and runtime_bytecode:
creation_bytecode is the one included in the transaction that deploys the contract.runtime_bytecode is the one stored at the address of the contract, fetchable by calling the eth_getCode RCP method.:::info This section is referring to Vyper contracts with version >=0.4.1, below you can find a separate section containing differences for older Vyper versions.
| // Triggered by: https://fediverse.zachleat.com/@zachleat/115300801628689509 | |
| // Interesting inconsistency... | |
| // The reason is probably backward compatibility: | |
| // Truthiness checks are often used to answer the question “Is this value an object?” | |
| class MyBool { | |
| #bool; | |
| constructor(bool) { | |
| this.#bool = bool; | |
| } |
| #!/usr/bin/env python3 | |
| """ | |
| Claude Configuration Manager - Simplified and Optimized | |
| Manages API configurations for Claude with multiple presets support. | |
| """ | |
| import argparse | |
| import json | |
| import os | |
| import sys |
Major 2025 Update: PostgreSQL now recommends identity columns over serial types. Drizzle has fully embraced this change.
import { pgTable, integer, text, timestamp, varchar } from 'drizzle-orm/pg-core';| #!/usr/bin/env -S uv --quiet run --script | |
| # /// script | |
| # requires-python = ">=3.13" | |
| # dependencies = [ | |
| # "beautifulsoup4", | |
| # "curl-cffi", | |
| # "pycryptodome", | |
| # "xclienttransaction", | |
| # ] | |
| # /// |