Skip to content

Commit 9616dc7

Browse files
committed
update
1 parent 1b003f4 commit 9616dc7

2 files changed

Lines changed: 41 additions & 6 deletions

File tree

README.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@
286286

287287
______________________________________________________________________
288288

289-
<details id="🧭 About Me">
289+
<details markdown="1">
290290
<summary><strong>🧭 About Me</strong></summary>
291291

292292
<div align="center">
@@ -342,8 +342,9 @@ ______________________________________________________________________
342342

343343
</div>
344344

345-
<details id="🌌 Research">
346-
<summary><strong>🌌 Research</strong></summary>
345+
<details markdown="1">
346+
<summary><strong>🌌 Research</strong></summary>
347+
347348
[📚 Qompass AI Odyssey: Deep Research on Quantum AI](#Odyssey)
348349

349350
<h3>Qompass AI Odyssey TLDR</h3>
@@ -358,7 +359,7 @@ ______________________________________________________________________
358359
| **Post-Quantum Cryptography** | Implementing quantum-resistant algorithms on-device | Patient data protection, Educational records security, Government communications |
359360
| **Quantum Error Correction** | Optimizing search via quantum amplified search | Sustainably secure learning platforms with resilient cryptography |
360361

361-
<details id="Odyssey">
362+
<details id="Odyssey" markdown="1">
362363
<summary><strong>Qompass AI Odyssey Thesis: The Pursuit of Quality AI Requires a Quantum Scale</strong></summary>
363364

364365
The foundation of quantum computing and impetus for enterprise quantum adoption begins with the Schrödinger equation:
@@ -587,7 +588,7 @@ $$K = \\text{KDF}(Z')$$
587588
</details>
588589
</details>
589590
</details>
590-
<details id="🔥 How Do I Support">
591+
<details markdown="1">
591592
<summary><strong>🔥 How Do I Support</strong></summary>
592593

593594
<div align="center">
@@ -620,7 +621,7 @@ $$K = \\text{KDF}(Z')$$
620621
[![Open Collective](https://img.shields.io/badge/Open%20Collective-Support-7FADF2?style=for-the-badge&logo=opencollective&logoColor=white)](https://opencollective.com/qompassai)
621622
[![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-FFDD00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black)](https://www.buymeacoffee.com/phaedrusflow)
622623

623-
<details>
624+
<details markdown="1">
624625
<summary><strong>🔐 Cryptocurrency Donations</strong></summary>
625626

626627
**Monero (XMR):**
@@ -647,3 +648,21 @@ $$K = \\text{KDF}(Z')$$
647648
</details>
648649

649650
</details>
651+
652+
<script>
653+
function openDetailsNested() {
654+
var listOpen = document.querySelectorAll("details[open]");
655+
if(listOpen.length > 0) {
656+
for(var i=0; i<listOpen.length; i++) {
657+
var elem = listOpen[i];
658+
while (elem) {
659+
if (elem.matches("DETAILS")) {
660+
elem.setAttribute("open","");
661+
}
662+
elem = elem.parentElement;
663+
}
664+
}
665+
}
666+
}
667+
window.addEventListener("load", openDetailsNested, true);
668+
</script>

assets/pqc.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,22 @@
6969
renderer.render(scene, camera);
7070
}
7171
animate();
72+
<script>
73+
function openDetailsNested() {
74+
var listOpen = document.querySelectorAll("details[open]");
75+
if(listOpen.length > 0) {
76+
for(var i=0; i<listOpen.length; i++) {
77+
var elem = listOpen[i];
78+
while (elem) {
79+
if (elem.matches("DETAILS")) {
80+
elem.setAttribute("open","");
81+
}
82+
elem = elem.parentElement;
83+
}
84+
}
85+
}
86+
}
87+
window.addEventListener("load", openDetailsNested, true);
7288
</script>
7389
</body>
7490
</html>

0 commit comments

Comments
 (0)