- local: use
fastmcpdirectly - production: use
fastmcpas a gateway andcloudflarefor ssl/dns
https://***.ngrok-free.dev/mcp
| // list voices | |
| speechSynthesis.getVoices().forEach(speech => { console.log(speech); }); | |
| // speak | |
| let message = new SpeechSynthesisUtterance('Verteidigungsminister Boris Pistorius hat die Berliner Ukraine-Gespräche mit Europäern und den USA gelobt.'); | |
| message.lang = 'de-DE'; | |
| message.voice = speechSynthesis.getVoices().filter(voice => voice.name === 'Google Deutsch')[0]; | |
| window.speechSynthesis.speak(message); | |
| // stop |
| <!doctype html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, minimum-scale=1" /> | |
| <title>Web Speech API</title> | |
| <script> | |
| class STT { | |
| static instances = []; |
| // Check all IMAP folders for new messages | |
| mail.server.default.check_all_folders_for_new = true | |
| // Automatic compaction without confirmation | |
| mail.purge.ask = false | |
| // Minimum delay between compactions (minutes) | |
| mail.purge.min_delay = 1 | |
| // Check interval for compaction (minutes) |
| Get-ScheduledTask -TaskPath '\' | ForEach-Object { | |
| $xml = [xml](Export-ScheduledTask -TaskName $_.TaskName -TaskPath $_.TaskPath -ErrorAction SilentlyContinue) | |
| $node = $xml.SelectSingleNode("/*[local-name()='Task']/*[local-name()='Settings']/*[local-name()='Priority']") | |
| $p = 7 | |
| if ($node -and $node.InnerText) { $p = [int]$node.InnerText } | |
| [pscustomobject]@{ | |
| Task = "$($_.TaskPath)$($_.TaskName)".TrimStart('\') | |
| Priority = $p | |
| } | |
| } | Format-Table -Auto |
| SET SESSION group_concat_max_len = 1000000; |
| <script type="speculationrules"> | |
| { | |
| "prerender": [ | |
| { | |
| "where": { "href_matches": "/*" }, | |
| "eagerness": "eager" | |
| } | |
| ] | |
| } | |
| </script> |
sudo apt install python3-lxml
python -m venv venv
source venv/bin/activate
pip install pykeepass
python script.py /path/to/file.kdbx