Posts

#3178 Excel VBA Ollama Script

#3178 Excel VBA Ollama Script #3178 Can my Chrome browser execute a pyhon application on my PC without a server? Short answer—sort-of, but with caveats Chrome (or any modern browser) can interpret Python entirely inside the page, but it cannot launch a “normal” desktop Python script that has unrestricted access to your PC unless you give it help (e.g., via a helper app, local server, or extension). Below are the practical ways to do it, what each can and can’t do, and when they make sense. 1. In-browser Python via WebAssembly Technique How it works What you gain Key limits Pyodide / PyScript CPython 3.x compiled to WebAssembly is downloaded with the page, runs in the browser sandbox. You embed <script type="py"> … </script> or call pyodide.runPython(…) . No installation for the user, runs offline after first load, can call most Python libraries that are pure C/Python (NumPy, pandas, scikit-learn already work). Sandbox: no raw disk, no direct sockets, no shell, ...

#3177 NASA NPR 7150.2D and Generative-AI

#3177 NASA NPR 7150.2D and Generative-AI #3177 Given NASA NPR 7150.2D and Generative-AI, what are the best applications to develop early on for NASA Safety and Mission Assurance? Where early Generative-AI can add the most near-term value for NASA Safety & Mission Assurance (S&MA)   Priority Early-stage application (internal, “human-in-the-loop”) NASA NPR 7150.2D pain-point addressed Why it’s a good first target Key guard-rails / success metrics 1 Standards-aware Q&A / “NPR 7150.2D Copilot” RAG-based chatbot that lets engineers, IV&V analysts and audit teams ask natural-language questions and get exact paragraph + SWE citations, links to the SWE Handbook and OSMA policy memos. Constant need to locate, interpret and justify requirements across >250 SWEs. • Immediate productivity win (search time → seconds). • Low technical risk: read-only on authoritative PDFs/database. ● Model weights kept on NASA network or SCIF. ● Answer always returns explicit citation list. ●...