diff --git a/technology/applications/development/Ghidra.md b/technology/applications/development/Ghidra.md index dbc4122..b0a93b8 100644 --- a/technology/applications/development/Ghidra.md +++ b/technology/applications/development/Ghidra.md @@ -5,8 +5,6 @@ repo: https://github.com/NationalSecurityAgency/ghidra rev: 2024-04-15 --- -#refactor - # Ghidra Ghidra is a powerful open-source software reverse engineering (SRE) suite developed by the National Security Agency (NSA) that enables users to analyze compiled code to understand its functionality, vulnerabilities, and inner workings. diff --git a/technology/dev/programming/frameworks/Dioxus.md b/technology/dev/programming/frameworks/Dioxus.md index 9f77faf..9ca21c6 100644 --- a/technology/dev/programming/frameworks/Dioxus.md +++ b/technology/dev/programming/frameworks/Dioxus.md @@ -177,11 +177,11 @@ enum Route { } fn Home() -> Element { - todo!() + // HomePage... } fn Blog() -> Element { - todo!() + // BlogPage... } ```