YouTube: https://youtu.be/6iNdfsbZWHs
Kanal: Logge (@LoggeL)
Genre: Post-Apokalypse / Zombie-Pandemie / Kurzfilm
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
| (async () => { | |
| const fi = window.g_fileInfo; | |
| if (!fi?.EncKey) throw new Error("g_fileInfo.EncKey missing — are you on the recording page?"); | |
| const enc = JSON.parse(fi.EncKey); | |
| const b64 = s => Uint8Array.from(atob(s), c => c.charCodeAt(0)); | |
| const dec = new TextDecoder(); | |
| const key = await crypto.subtle.importKey("raw", b64(enc.Key), { name: "AES-CBC" }, false, ["decrypt"]); | |
| const wantPath = new URL(fi.spItemTranscriptsContentCdnUrl).pathname; | |
| const tryDecrypt = async buf => { |
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>InnovaVento — Session Cost Analysis</title> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script> | |
| <style> | |
| :root { | |
| --bg: #0d1117; |
Video: OpenClaw Use Cases that are actually helpful... Prompts: mberman84/065631c62d6d8f30ecb14748c00fc6d9
| # | Feature | Was genau | Nützlich | Machbar |
|---|---|---|---|---|
| 1 | Personal CRM | Gmail/Calendar auto-scannen, AI-Filtering (Spam/Newsletter raus), Contact Scoring, Embeddings für Semantic Search ("Wer war das von Firma X?") | ⭐⭐⭐⭐⭐ | ✅ Easy — SQLite + Gmail API + Cron |
Alle 38 Thesen beantwortet aus Sicht eines pragmatischen, nicht-ideologischen Bürgers von Rheinland-Pfalz. Fokus: Was bringt dieses Bundesland langfristig voran?
RLP-Kontext: Grenzregion (LU/FR/BE), BASF Ludwigshafen, Ramstein, Weinbau, ländliche Struktur, Fachkräftemangel, Infrastrukturdefizite.
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
| def wer(ref, hyp ,debug=True): | |
| r = ref.split() | |
| h = hyp.split() | |
| #costs will holds the costs, like in the Levenshtein distance algorithm | |
| costs = [[0 for inner in range(len(h)+1)] for outer in range(len(r)+1)] | |
| # backtrace will hold the operations we've done. | |
| # so we could later backtrace, like the WER algorithm requires us to. | |
| backtrace = [[0 for inner in range(len(h)+1)] for outer in range(len(r)+1)] | |
| OP_OK = 0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| [ | |
| [ | |
| [ | |
| "charname", | |
| "AllChampions" | |
| ], | |
| [ | |
| "spell_name", | |
| "SummonerSnowball" | |
| ], |
NewerOlder