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
| /** | |
| * CodeJeet Blog Generator | |
| * | |
| * Generates SEO-optimized blog posts using the DeepSeek API. | |
| * Produces company interview guides, topic deep-dives, comparison posts, | |
| * and company-topic crossover articles — all with multi-language code examples. | |
| * | |
| * Usage: | |
| * DEEPSEEK_API_KEY=sk-your-key-here npx tsx scripts/generate-blogs-shareable.ts | |
| */ |
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 python3 | |
| """Audiobook generation pipeline for 'The Accidental CTO' using Sarvam AI TTS.""" | |
| import argparse | |
| import base64 | |
| import json | |
| import os | |
| import re | |
| import time | |
| from dataclasses import dataclass, field |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Image Background with Transparent Video</title> | |
| <style> | |
| body, html { | |
| height: 100%; | |
| margin: 0; |