Commit graph

4 commits

Author SHA1 Message Date
82704caa97 Fix ESLint warning and achieve perfect code quality
JavaScript fixes:
- Fixed 'ZalgoGenerator' defined but never used warning
- Changed ESLint sourceType from 'module' to 'script' to properly handle global exports
- Added eslint-disable comment as backup

Python fixes:
- Fixed pylint warning about method signature in log_message
- Added pylint disable comment for redefined-builtin

Code quality status:
- ESLint: ✓ No errors, no warnings
- Pylint: ✓ 10.00/10 rating
- Black: ✓ All files formatted
- Prettier: ✓ All files formatted

All linting and formatting checks now pass completely.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 20:14:45 +02:00
749df446e9 Add Justfile and fix server implementation
Server improvements:
- Complete rewrite with robust IPv4/IPv6 support
- Graceful fallback from IPv6 dual-stack to IPv4-only
- Better error handling and informative startup messages
- Proper socket cleanup and server shutdown
- Custom logging with timestamps

Justfile additions:
- serve/serve-bg/stop - Server management
- lint-all/format-all/check-all - Code quality commands
- install/setup/clean - Project management
- validate/info/status - Development helpers
- icons-png/icons-browser - Icon generation
- commit/quick-commit - Git workflow helpers

The server now works reliably across different network configurations
and the justfile provides a comprehensive development workflow.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 20:13:04 +02:00
4e58281d51 Rebrand to GlitchCraft with IPv6 support
Changes:
- Renamed from "Text Corruptor" to "GlitchCraft"
- New slogan: "Artisanal text corruption, served fresh!"
- Updated server to support both IPv4 and IPv6 (dual-stack)
- Server now listens on all interfaces (::) instead of just localhost
- Updated all references in code and documentation

The new name reflects both the glitch aesthetic and the craftsmanship
of creating beautifully corrupted text, with a playful tone.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 20:03:51 +02:00
44a2ac4cbd Initial commit: Text Corruptor PWA
Features:
- Zalgo text generator with adjustable intensity (1-10)
- Real-time text corruption as you type
- Click-to-copy functionality with visual feedback
- Progressive Web App with offline support
- Responsive design for mobile and desktop
- Dark theme with glitch-inspired aesthetics

Technical implementation:
- Pure JavaScript implementation (no frameworks)
- Service Worker for offline functionality
- PWA manifest for installability
- Python development server
- Comprehensive linting setup (ESLint, Prettier, Black, Pylint)

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 20:00:58 +02:00