You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

141 lines
5.8 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="description" content="[blogo-summary]" />
  5. <meta charset="utf-8">
  6. <title>Notes</title>
  7. <meta name="title" content="Notes">
  8. <meta name="description" content="Notes">
  9. <meta name="author" content="arnaucube">
  10. <link rel="icon" type="image/png" href="img/logoArnauCubeFavicon.png">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <link href="css/bootstrap.min.css" rel="stylesheet">
  13. <link rel="stylesheet" href="css/style.css">
  14. </head>
  15. <body>
  16. <!-- o_gradient_background" -->
  17. <nav id="mainNav" class="navbar navbar-default navbar-fixed-top"
  18. style="height:50px;font-size:130%;">
  19. <div class="container">
  20. <div style="float:left;">
  21. <a href="/blog" style="color:#000;display:inline-block;">Blog index</a>
  22. <span style="margin-right:20px; margin-left:20px;">|</span>
  23. <a href="/blog/notes.html" style="font-size:90%;color:#000;display:inline-block;">other-notes</a>
  24. </div>
  25. <div style="float:right;">
  26. <a href="/" style="color:#000;display:inline-block;">arnaucube.com</a>
  27. <div class="onoffswitch" style="margin:10px;display:inline-block;" title="change theme">
  28. <input onclick="switchTheme()" type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
  29. id="themeSwitcher">
  30. <label class="onoffswitch-label" for="themeSwitcher"></label>
  31. </div>
  32. </div>
  33. </div>
  34. <img style="height:5px; width:100%; margin-top:8px;" src="img/gradient-line.jpg" />
  35. </nav>
  36. <!-- in markdown which later is converted to html -->
  37. <div id="markdown" class="container" style="margin-top:40px;max-width:800px;">
  38. ### Notes:
  39. Usually while reading papers I take handwritten notes, this section contains some of them re-written to LaTeX.
  40. The notes are not complete, don’t include all the steps neither the explanations neither most of the proofs.
  41. I use these notes to revisit the concepts after some time of reading the paper.
  42. - [Notes on Caulk & Caulk+ papers](https://raw.githubusercontent.com/arnaucube/math/master/notes_caulk.pdf)
  43. - [Notes on the DFT & FFT](https://raw.githubusercontent.com/arnaucube/math/master/fft-notes.pdf)
  44. - [Notes on BLS signatures](https://raw.githubusercontent.com/arnaucube/math/master/notes_bls-sig.pdf)
  45. - [Notes on IPA from Halo paper](https://raw.githubusercontent.com/arnaucube/math/master/notes_halo.pdf)
  46. - [Notes on Sonic](https://raw.githubusercontent.com/arnaucube/math/master/notes_sonic.pdf)
  47. - [Notes on Weil Pairing](https://raw.githubusercontent.com/arnaucube/math/master/weil-pairing.pdf)
  48. - [Notes on Sigma protocol and OR proofs](https://raw.githubusercontent.com/arnaucube/math/master/sigma-or-notes.pdf)
  49. - [Notes on Reed-Solomon codes](https://raw.githubusercontent.com/arnaucube/math/master/notes_reed-solomon.pdf)
  50. - [Notes on FRI](https://raw.githubusercontent.com/arnaucube/math/master/notes_fri.pdf)
  51. - [Notes on Spartan](https://raw.githubusercontent.com/arnaucube/math/master/notes_spartan.pdf)
  52. - [Notes on Nova](https://raw.githubusercontent.com/arnaucube/math/master/notes_nova.pdf)
  53. - [Notes on HyperNova](https://raw.githubusercontent.com/arnaucube/math/master/notes_hypernova.pdf)
  54. </div>
  55. <footer style="text-align:center; margin-top:100px;margin-bottom:50px;">
  56. <div class="container">
  57. <br>
  58. <a href="/blog">Back to the blog</a>
  59. <br><br>
  60. <div class="row">
  61. <ul class="list-inline">
  62. <li><a href="https://twitter.com/arnaucube"
  63. style="color:gray;text-decoration:none;"
  64. target="_blank">twitter.com/arnaucube</a>
  65. </li>
  66. <li><a href="https://github.com/arnaucube"
  67. style="color:gray;text-decoration:none;"
  68. target="_blank">github.com/arnaucube</a>
  69. </li>
  70. </ul>
  71. </div>
  72. </div>
  73. </footer>
  74. <script>
  75. document.addEventListener("DOMContentLoaded", function() {
  76. renderMathInElement(document.body, {
  77. displayMode: false,
  78. // customised options
  79. // • auto-render specific keys, e.g.:
  80. delimiters: [
  81. {left: '$$', right: '$$', display: true},
  82. {left: '$', right: '$', display: false},
  83. {left: "\\[", right: "\\]", display: true},
  84. {left: "\\(", right: "\\)", display: false},
  85. ],
  86. // • rendering keys, e.g.:
  87. throwOnError : true
  88. });
  89. });
  90. ///
  91. let theme = localStorage.getItem("theme");
  92. if ((theme === "light-theme")||(theme==null)) {
  93. theme = "light-theme";
  94. document.getElementById("themeSwitcher").checked = false;
  95. } else if (theme === "dark-theme") {
  96. theme = "dark-theme";
  97. document.getElementById("themeSwitcher").checked = true;
  98. }
  99. document.body.className = theme;
  100. localStorage.setItem("theme", theme);
  101. function switchTheme() {
  102. theme = localStorage.getItem("theme");
  103. if (theme === "light-theme") {
  104. theme = "dark-theme";
  105. document.getElementById("themeSwitcher").checked = true;
  106. } else {
  107. theme = "light-theme";
  108. document.getElementById("themeSwitcher").checked = false;
  109. }
  110. document.body.className = theme;
  111. localStorage.setItem("theme", theme);
  112. console.log(theme);
  113. }
  114. </script>
  115. <script src="js/drawdown.js"></script>
  116. <script>
  117. let content = document.getElementById("markdown").innerHTML;
  118. let md = markdown(content);
  119. document.getElementById("markdown").innerHTML = md;
  120. </script>
  121. <script src="js/external-links.js"></script>
  122. </body>
  123. </html>