Skip to content

Instantly share code, notes, and snippets.

View wrock's full-sized avatar

Wolfgang Rock wrock

View GitHub Profile
@wrock
wrock / claude-history.py
Last active December 7, 2025 14:22
claude-history - Interactive Terminal UI to Browse & Resume Claude Code Sessions. Arrow-key navigation, select and press ENTER to instantly resume your session. Inspired by https://kentgigger.com/posts/claude-code-conversation-history
#!/usr/bin/env python3
"""
claude-history: Interactive TUI to Browse & Resume Claude Code Sessions
Arrow-key navigation, project filtering, prompt counts - never lose track
of your AI pair programming conversations.
Installation:
mkdir -p ~/.claude/bin
curl -o ~/.claude/bin/claude-history https://gist.githubusercontent.com/wrock/3b212e3f37fa3d1b458644dc1fb34bc8/raw/claude-history.py
@wrock
wrock / HashPasswordsCommand.php
Created November 10, 2020 16:06
TYPO3: Convert plain-text passwords of fe_users to encrypted passwords via command
<?php
namespace Rockit\RockitTheme\Commands;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use TYPO3\CMS\Core\Core\Bootstrap;