You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
Lorenzo
Mec-iS
Python. Rust. Geospatial. Satellite Imaging. RegTech. HealthTech. FinTech. Graph Thinking. ML @smartcorelib@HTTP-APIs Free as in Free Software
This file contains 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
Read the Instance.rs documentation to understand how WASM binaries are ported to Python modules via pyo3 Rust crate.
Simply put the workflow looks something like:
Developer defines Rust functions and compile them via wasm32-unknown-unknown target
WASM binary (.wasm) is placed in a Python project
With the tools imported via pip install wasmer, developer can load the WASM binary and use the exported functions. This way Rust-defined functions can be called transparently from Python. Great Wasmer!
How about defining "truth" with "stability" of the coupling loop between "the object" and the cognitive system coupling with the "object"? If the process stabilizes and an eigenvalue of the loop emerges, we say "a truth" is found. This would refocus our attention from the "object" itself to the nature of the cognitive system, which may include animals and robots in addition to humans. My tentative way to upgrade from first-order thinking to the second-order thinking. Then, instead of searching for "truth", we search for the "Lyapunov potential function" for the situation if we could find one...
Eigenform is important way to formalize a kind of stability. Truth is a special kind of eigenform, not just any eigenform. Truth means the truth of a PROPOSITION about something. So we need to have a language involved and the notion that the propositions are talking about some domain where it is possible to c
This file contains 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
This file contains 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
This file contains 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
how to solve missing dll for clang when trying to compile Rust code on windows
Resolving Missing DLL Errors for Clang During Rust Compilation on Windows
When compiling Rust projects that depend on Clang tooling (e.g., via bindgen), Windows users frequently encounter errors related to missing DLLs such as libclang.dll, libLLVMX86Desc.dll, or similar. These issues stem from environmental misconfigurations, security software interference, or architectural incompatibilities. This report synthesizes solutions from empirical developer experiences and toolchain documentation to provide a systematic approach to diagnosing and resolving these errors.
Common Causes of Missing DLL Errors
1. Antivirus or Windows Security Quarantining DLLs
Windows Defender and third-party antivirus tools may falsely flag Clang/LLVM DLLs as malicious and quarantine or delete them. For example, libLLVMX86Desc.dll has been reported as erroneously detected as a Trojan[1]. This results in immediate errors when