KarelWintersky / Export DeepSeek shared conversation to Markdown
0 likes
0 forks
1 files
Last active 6 hours ago
| 1 | #!/usr/bin/env python3 |
| 2 | """ |
| 3 | Export DeepSeek shared conversation to Markdown. |
| 4 | |
| 5 | Usage (just run it — venv is created automatically): |
| 6 | python deepseek_export.py <share_url_or_id> [-o output.md] [--json] [--txt] [--token TOKEN] |
| 7 | |
| 8 | Examples: |
| 9 | python deepseek_export.py https://chat.deepseek.com/share/nvy7v2ps1r6e2wyoyj |
| 10 | python deepseek_export.py nvy7v2ps1r6e2wyoyj -o my_chat.md |
KarelWintersky / build_phar_with_docker.sh
0 likes
0 forks
2 files
Last active 2 weeks ago
Универсальный скрипт сборки в PHAR через докер
| 1 | { |
| 2 | "chmod": "0755", |
| 3 | "compactors": [ |
| 4 | "KevinGH\\Box\\Compactor\\Php", |
| 5 | "KevinGH\\Box\\Compactor\\Json" |
| 6 | ], |
| 7 | "compression": "GZ", |
| 8 | "main": "test_send.php", |
| 9 | "output": "mailer.phar", |
| 10 | "finder": [ |
KarelWintersky / vhostpwgen.sh
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | #!/bin/bash |
| 2 | VERSION='1.0' |
| 3 | |
| 4 | generate_password() { |
| 5 | openssl rand -base64 12 | tr -d '/+' | cut -c1-16 |
| 6 | } |
| 7 | |
| 8 | user_exists() { |
| 9 | grep -q "^$1:" .htpasswd 2>/dev/null || grep -q "^$1 / " .htpasswd.txt 2>/dev/null |
| 10 | } |
Newer
Older