From b1f76ea37e6d8d6dc949ecc4899e3a1bc6d7ef65 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 22:49:15 -0600 Subject: use new theme --- sass/c-hyde.scss | 825 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 825 insertions(+) create mode 100644 sass/c-hyde.scss (limited to 'sass') diff --git a/sass/c-hyde.scss b/sass/c-hyde.scss new file mode 100644 index 0000000..26cd3b7 --- /dev/null +++ b/sass/c-hyde.scss @@ -0,0 +1,825 @@ +/* +Latex CSS +*/ + +@font-face { + font-family: 'Latin Modern'; + font-style: normal; + font-weight: normal; + font-display: swap; + src: url('/assets/fonts/LM-regular.woff2') format('woff2'), + url('/assets/fonts/LM-regular.woff') format('woff'), + url('/assets/fonts/LM-regular.ttf') format('truetype'); +} + +@font-face { + font-family: 'Latin Modern'; + font-style: italic; + font-weight: normal; + font-display: swap; + src: url('/assets/LM-italic.woff2') format('woff2'), + url('LM-italic.woff') format('woff'), + url('/assets/fonts/LM-italic.ttf') format('truetype'); +} + +@font-face { + font-family: 'Latin Modern'; + font-style: normal; + font-weight: bold; + font-display: swap; + src: url('/assets/fonts/LM-bold.woff2') format('woff2'), + url('/assets/fonts/LM-bold.woff') format('woff'), + url('/assets/fonts/LM-bold.ttf') format('truetype'); +} + +@font-face { + font-family: 'Latin Modern'; + font-style: italic; + font-weight: bold; + font-display: swap; + src: url('/assets/fonts/LM-bold-italic.woff2') format('woff2'), + url('/assets/fonts/LM-bold-italic.woff') format('woff'), + url('/assets/fonts/LM-bold-italic.ttf') format('truetype'); +} + +@font-face { + font-family: 'Libertinus'; + font-style: normal; + font-weight: normal; + font-display: swap; + src: url('/assets/fonts/Libertinus-regular.woff2') format('woff2'); +} + +@font-face { + font-family: 'Libertinus'; + font-style: italic; + font-weight: normal; + font-display: swap; + src: url('/assets/fonts/Libertinus-italic.woff2') format('woff2'); +} + +@font-face { + font-family: 'Libertinus'; + font-style: normal; + font-weight: bold; + font-display: swap; + src: url('/assets/fonts/Libertinus-bold.woff2') format('woff2'); +} + +@font-face { + font-family: 'Libertinus'; + font-style: italic; + font-weight: bold; + font-display: swap; + src: url('/assets/fonts/Libertinus-bold-italic.woff2') format('woff2'); +} + +@font-face { + font-family: 'Libertinus'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url('/assets/fonts/Libertinus-semibold.woff2') format('woff2'); +} + +@font-face { + font-family: 'Libertinus'; + font-style: italic; + font-weight: 600; + font-display: swap; + src: url('/assets/fonts/Libertinus-semibold-italic.woff2') format('woff2'); +} + + +/* +Port of @mdo's Hyde Theme by Zola + +MIT License + +Copyright (c) 2017 Vincent Prouillet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ + + +/* + * ___ + * /\_ \ + * _____ ___ ___\//\ \ __ + * /\ '__`\ / __`\ / __`\\ \ \ /'__`\ + * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/ + * \ \ ,__/\ \____/\ \____//\____\ \____\ + * \ \ \/ \/___/ \/___/ \/____/\/____/ + * \ \_\ + * \/_/ + * + * Designed, built, and released under MIT license by @mdo. Learn more at + * https://github.com/poole/poole. + */ + + +/* + * Contents + * + * Body resets + * Custom type + * Messages + * Container + * Masthead + * Posts and pages + * Footnotes + * Pagination + * Reverse layout + * Themes + */ + + +/* + * Body resets + * + * Update the foundational and global aspects of the page. + */ + +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +html, +body { + margin: 0; + padding: 0; +} + +html { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 1.5; +} +@media (min-width: 38em) { + html { + font-size: 20px; + } +} + +body { + color: #515151; + background-color: #fff; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +/* No `:visited` state is required by default (browsers will use `a`) */ +a { + color: #268bd2; + text-decoration: none; +} +/* `:focus` is linked to `:hover` for basic accessibility */ +a:hover, +a:focus { + text-decoration: underline; +} + +/* Headings */ +h1, h2, h3, h4, h5, h6 { + margin-bottom: .5rem; + font-weight: bold; + line-height: 1.25; + color: #313131; + text-rendering: optimizeLegibility; +} +h1 { + font-size: 2rem; +} +h2 { + margin-top: 1rem; + font-size: 1.5rem; +} +h3 { + margin-top: 1.5rem; + font-size: 1.25rem; +} +h4, h5, h6 { + margin-top: 1rem; + font-size: 1rem; +} + +/* Body text */ +p { + margin-top: 0; + margin-bottom: 1rem; +} + +strong { + color: #303030; +} + + +/* Lists */ +ul, ol, dl { + margin-top: 0; + margin-bottom: 1rem; +} + +dt { + font-weight: bold; +} +dd { + margin-bottom: .5rem; +} + +/* Misc */ +hr { + position: relative; + margin: 1.5rem 0; + border: 0; + border-top: 1px solid #eee; + border-bottom: 1px solid #fff; +} + +abbr { + font-size: 85%; + font-weight: bold; + color: #555; + text-transform: uppercase; +} +abbr[title] { + cursor: help; + border-bottom: 1px dotted #e5e5e5; +} + +/* Code */ +code, +pre { + font-family: Menlo, Monaco, "Courier New", monospace; +} +code { + padding: .25em .5em; + font-size: 85%; + color: #bf616a; + background-color: #f9f9f9; + border-radius: 3px; +} +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + padding: 1rem; + font-size: .8rem; + line-height: 1.4; + overflow-x: scroll; + background-color: #f9f9f9; +} +pre code { + padding: 0; + font-size: 100%; + color: inherit; + background-color: transparent; +} +.highlight { + margin-bottom: 1rem; + border-radius: 4px; +} +.highlight pre { + margin-bottom: 0; +} + +/* Quotes */ +blockquote { + padding: .5rem 1rem; + margin: .8rem 0; + color: #7a7a7a; + border-left: .25rem solid #e5e5e5; +} +blockquote p:last-child { + margin-bottom: 0; +} +@media (min-width: 30em) { + blockquote { + padding-right: 5rem; + padding-left: 1.25rem; + } +} + +img { + display: block; + margin: 0 0 1rem; + border-radius: 5px; + max-width: 100%; +} + +/* Tables */ +table { + margin-bottom: 1rem; + width: 100%; + border: 1px solid #e5e5e5; + border-collapse: collapse; +} +td, +th { + padding: .25rem .5rem; + border: 1px solid #e5e5e5; +} +tbody tr:nth-child(odd) td, +tbody tr:nth-child(odd) th { + background-color: #f9f9f9; +} + + +/* + * Custom type + * + * Extend paragraphs with `.lead` for larger introductory text. + */ + +.lead { + font-size: 1.25rem; + font-weight: 300; +} + + +/* + * Messages + * + * Show alert messages to users. You may add it to single elements like a `

`, + * or to a parent if there are multiple elements to show. + */ + +.message { + margin-bottom: 1rem; + padding: 1rem; + color: #717171; + background-color: #f9f9f9; +} + + +/* + * Container + * + * Center the page content. + */ + +.container { + max-width: 38rem; + padding-left: 1rem; + padding-right: 1rem; + margin-left: auto; + margin-right: auto; +} + + +/* + * Masthead + * + * Super small header above the content for site name and short description. + */ + +.masthead { + padding-top: 1rem; + padding-bottom: 1rem; + margin-bottom: 3rem; +} +.masthead-title { + margin-top: 0; + margin-bottom: 0; + color: #505050; +} +.masthead-title a { + color: #505050; +} +.masthead-title small { + font-size: 75%; + font-weight: 400; + color: #c0c0c0; + letter-spacing: 0; +} + + +/* + * Posts and pages + * + * Each post is wrapped in `.post` and is used on default and post layouts. Each + * page is wrapped in `.page` and is only used on the page layout. + */ + +.page, +.post { + margin-bottom: 4em; +} + +/* Blog post or page title */ +.page-title, +.post-title, +.post-title a { + color: #303030; +} +.page-title, +.post-title { + margin-top: 0; +} + +/* Meta data line below post title */ +.post-date { + display: block; + margin-top: -.5rem; + margin-bottom: 1rem; + color: #9a9a9a; +} + +/* Related posts */ +.related { + padding-top: 2rem; + padding-bottom: 2rem; + border-top: 1px solid #eee; +} +.related-posts { + padding-left: 0; + list-style: none; +} +.related-posts h3 { + margin-top: 0; +} +.related-posts li small { + font-size: 75%; + color: #999; +} +.related-posts li a:hover { + color: #268bd2; + text-decoration: none; +} +.related-posts li a:hover small { + color: inherit; +} + + +/* Footnotes */ +.footnote-definition:first-of-type { + border-top: 1px solid; + padding-top: 1rem; +} +.footnote-definition { + margin-top: 1rem; +} +.footnote-definition sup { + margin-left: -1rem; + float: left; +} + + +/* + * Pagination + * + * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when + * there are no more previous or next posts to show. + */ + +.pagination { + overflow: hidden; /* clearfix */ + margin-left: -1rem; + margin-right: -1rem; + font-family: "PT Sans", Helvetica, Arial, sans-serif; + color: #ccc; + text-align: center; +} + +/* Pagination items can be `span`s or `a`s */ +.pagination-item { + display: block; + padding: 1rem; + border: 1px solid #eee; +} +.pagination-item:first-child { + margin-bottom: -1px; +} + +/* Only provide a hover state for linked pagination items */ +a.pagination-item:hover { + background-color: #f5f5f5; +} + +@media (min-width: 30em) { + .pagination { + margin: 3rem 0; + } + .pagination-item { + float: left; + width: 50%; + } + .pagination-item:first-child { + margin-bottom: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + } + .pagination-item:last-child { + margin-left: -1px; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + } +} + +/* + * __ __ + * /\ \ /\ \ + * \ \ \___ __ __ \_\ \ __ + * \ \ _ `\/\ \/\ \ /'_` \ /'__`\ + * \ \ \ \ \ \ \_\ \/\ \_\ \/\ __/ + * \ \_\ \_\/`____ \ \___,_\ \____\ + * \/_/\/_/`/___/> \/__,_ /\/____/ + * /\___/ + * \/__/ + * + * Designed, built, and released under MIT license by @mdo. Learn more at + * https://github.com/poole/hyde. + */ + + +/* + * Contents + * + * Global resets + * Sidebar + * Container + * Reverse layout + * Themes + */ + + +/* + * Global resets + * + * Update the foundational and global aspects of the page. + */ + +html { + font-family: "PT Sans", Helvetica, Arial, sans-serif; +} +@media (min-width: 48em) { + html { + font-size: 16px; + } +} +@media (min-width: 58em) { + html { + font-size: 20px; + } +} + + +/* + * Sidebar + * + * Flexible banner for housing site name, intro, and "footer" content. Starts + * out above content in mobile and later moves to the side with wider viewports. + */ + +.sidebar { + text-align: center; + padding: 2rem 1rem; + color: rgba(255,255,255,.5); + background-color: #202020; +} +@media (min-width: 48em) { + .sidebar { + position: fixed; + top: 0; + left: 0; + bottom: 0; + width: 18rem; + text-align: left; + } +} + +/* Sidebar links */ +.sidebar a { + color: #fff; +} + +/* About section */ +.sidebar-about h1 { + color: #fff; + margin-top: 0; + font-family: "Abril Fatface", serif; + font-size: 3.25rem; +} + +/* Sidebar nav */ +.sidebar-nav { + padding-left: 0; + list-style: none; +} +.sidebar-nav-item { + display: block; +} +a.sidebar-nav-item:hover, +a.sidebar-nav-item:focus { + text-decoration: underline; +} +.sidebar-nav-item.active { + font-weight: bold; +} + +/* Sticky sidebar + * + * Add the `sidebar-sticky` class to the sidebar's container to affix it the + * contents to the bottom of the sidebar in tablets and up. + */ + +@media (min-width: 48em) { + .sidebar-sticky { + position: absolute; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + // The #{} stuff is needed because of https://github.com/sass/sass/issues/2378 + @supports(padding: m#{a}x(0px)) { + body:not(.layout-reverse) .sidebar-sticky { + // Notch is to left of sidebar; pad appropriately + padding-left: m#{a}x(1rem, env(safe-area-inset-left)); + } + + .layout-reverse .sidebar-sticky { + // Support iPhone X rounded corners and notch in landscape + // Notch is to right of sidebar; pad appropriately + padding-right: m#{a}x(1rem, env(safe-area-inset-right)); + } + } +} + + +/* Container + * + * Align the contents of the site above the proper threshold with some margin-fu + * with a 25%-wide `.sidebar`. + */ + +.content { + padding-top: 4rem; + padding-bottom: 4rem; +} + +@supports(padding: m#{a}x(0px)) { + body:not(.layout-reverse) .content { + // Notch is to right of content text; pad it appropriately + padding-right: m#{a}x(1rem, env(safe-area-inset-right)); + } + + .layout-reverse .content { + // Notch is to left of content text; pad it appropriately + padding-left: m#{a}x(1rem, env(safe-area-inset-left)); + } +} + + +@media (min-width: 48em) { + .content { + max-width: 38rem; + margin-left: 20rem; + margin-right: 2rem; + } +} + +@media (min-width: 64em) { + .content { + margin-left: 22rem; + margin-right: 4rem; + } +} + + +/* + * Reverse layout + * + * Flip the orientation of the page by placing the `.sidebar` on the right. + */ + +@media (min-width: 48em) { + .layout-reverse .sidebar { + left: auto; + right: 0; + } + .layout-reverse .content { + margin-left: 2rem; + margin-right: 20rem; + } +} + +@media (min-width: 64em) { + .layout-reverse .content { + margin-left: 4rem; + margin-right: 22rem; + } +} + + + +/* + * Themes + * + * As of v1.1, Hyde includes optional themes to color the sidebar and links + * within blog posts. To use, add the class of your choosing to the `body`. + */ + +/* Base16 (http://chriskempson.github.io/base16/#default) */ + +/* Red */ +.theme-base-08 .sidebar { + background-color: #ac4142; +} +.theme-base-08 .content a, +.theme-base-08 .related-posts li a:hover { + color: #ac4142; +} + +/* Orange */ +.theme-base-09 .sidebar { + background-color: #d28445; +} +.theme-base-09 .content a, +.theme-base-09 .related-posts li a:hover { + color: #d28445; +} + +/* Yellow */ +.theme-base-0a .sidebar { + background-color: #f4bf75; +} +.theme-base-0a .content a, +.theme-base-0a .related-posts li a:hover { + color: #f4bf75; +} + +/* Green */ +.theme-base-0b .sidebar { + background-color: #90a959; +} +.theme-base-0b .content a, +.theme-base-0b .related-posts li a:hover { + color: #90a959; +} + +/* Cyan */ +.theme-base-0c .sidebar { + background-color: #75b5aa; +} +.theme-base-0c .content a, +.theme-base-0c .related-posts li a:hover { + color: #75b5aa; +} + +/* Blue */ +.theme-base-0d .sidebar { + background-color: #6a9fb5; +} +.theme-base-0d .content a, +.theme-base-0d .related-posts li a:hover { + color: #6a9fb5; +} + +/* Magenta */ +.theme-base-0e .sidebar { + background-color: #aa759f; +} +.theme-base-0e .content a, +.theme-base-0e .related-posts li a:hover { + color: #aa759f; +} + +/* Brown */ +.theme-base-0f .sidebar { + background-color: #8f5536; +} +.theme-base-0f .content a, +.theme-base-0f .related-posts li a:hover { + color: #8f5536; +} + + +/* LaTeX Style Reset */ + +body.libertinus { + font-family: 'Libertinus', Georgia, Cambria, 'Times New Roman', Times, serif; +} + +body { + font-family: 'Latin Modern', Georgia, Cambria, 'Times New Roman', Times, serif; + text-rendering: optimizeLegibility; +} -- cgit v1.2.3 From cc60ec40e4b90e6041ed824c892a0319fad392ad Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 23:36:39 -0600 Subject: random lead text --- sass/c-hyde.scss | 25 ++++++++++++++++++++++++- templates/sidebar.html | 16 ++++++++++++++-- 2 files changed, 38 insertions(+), 3 deletions(-) (limited to 'sass') diff --git a/sass/c-hyde.scss b/sass/c-hyde.scss index 26cd3b7..1c2ba70 100644 --- a/sass/c-hyde.scss +++ b/sass/c-hyde.scss @@ -619,11 +619,22 @@ html { font-size: 3.25rem; } -/* Sidebar nav */ .sidebar-nav { padding-left: 0; list-style: none; + font-size: 80%; + display: flex; + flex-direction: row; + justify-content: space-evenly; } + +/* Sidebar nav */ +@media (min-width: 48em) { + .sidebar-nav { + flex-direction: column; + } +} + .sidebar-nav-item { display: block; } @@ -823,3 +834,15 @@ body { font-family: 'Latin Modern', Georgia, Cambria, 'Times New Roman', Times, serif; text-rendering: optimizeLegibility; } + + +/* Additional */ + +.copyright { + font-size: 60%; + font-family: "PT Sans",Helvetica,Arial,sans-serif; +} + +.lead { + font-family: "PT Sans",Helvetica,Arial,sans-serif; +} \ No newline at end of file diff --git a/templates/sidebar.html b/templates/sidebar.html index 57066ae..7b1f82e 100644 --- a/templates/sidebar.html +++ b/templates/sidebar.html @@ -2,7 +2,7 @@

+ + -- cgit v1.2.3 From a982ceab0b45609991179b3020a00260eed6f798 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 23:45:59 -0600 Subject: css --- docs/3D-Designs/2024-02-17-Can-Holder-Mountain-Bike.html | 1 + docs/3D-Designs/index.html | 1 + docs/about/index.html | 1 + docs/assets/c-hyde.css | 2 +- docs/colophon/index.html | 1 + docs/feed.rss | 4 ++-- docs/ideas/2022-12-17-ar-mr-xr.html | 1 + docs/ideas/index.html | 1 + docs/index.html | 1 + docs/posts/2010-01-24-experiments.html | 1 + docs/posts/2019-05-05-Custom-Snowboard-Anemone-Theme.html | 1 + docs/posts/2019-12-04-Google-Teachable-Machines.html | 1 + docs/posts/2019-12-08-Image-Classifier-Tensorflow.html | 1 + docs/posts/2019-12-08-Splitting-Zips.html | 1 + docs/posts/2019-12-10-TensorFlow-Model-Prediction.html | 1 + docs/posts/2019-12-16-TensorFlow-Polynomial-Regression.html | 1 + docs/posts/2019-12-22-Fake-News-Detector.html | 1 + docs/posts/2020-01-14-Converting-between-PIL-NumPy.html | 1 + docs/posts/2020-01-15-Setting-up-Kaggle-to-use-with-Colab.html | 1 + docs/posts/2020-01-16-Image-Classifier-Using-Turicreate.html | 1 + .../posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-Terminal.html | 1 + docs/posts/2020-03-03-Playing-With-Android-TV.html | 1 + docs/posts/2020-03-08-Making-Vaporwave-Track.html | 1 + docs/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOS.html | 1 + docs/posts/2020-05-31-compiling-open-babel-on-ios.html | 1 + ...peeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOL.html | 1 + docs/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOS.html | 1 + docs/posts/2020-07-01-Install-rdkit-colab.html | 1 + docs/posts/2020-08-01-Natural-Feature-Tracking-ARJS.html | 1 + docs/posts/2020-10-11-macOS-Virtual-Cam-OBS.html | 1 + docs/posts/2020-11-17-Lets-Encrypt-DuckDns.html | 1 + docs/posts/2020-12-1-HTML-JS-RSS-Feed.html | 1 + docs/posts/2021-06-25-Blog2Twitter-P1.html | 1 + docs/posts/2021-06-25-NFC-Music-Cards-Basic-iOS.html | 1 + docs/posts/2021-06-26-Cheminformatics-On-The-Web-2021.html | 1 + docs/posts/2021-06-27-Crude-ML-AI-Powered-Chatbot-Swift.html | 1 + docs/posts/2022-05-21-Similar-Movies-Recommender.html | 1 + docs/posts/2022-08-05-Why-You-No-Host.html | 1 + docs/posts/2022-11-07-a-new-method-to-blog.html | 1 + docs/posts/2022-12-25-blog-to-toot.html | 1 + docs/posts/2023-02-08-Interact-with-siri-from-the-terminal.html | 1 + docs/posts/2023-04-30-n-body-simulation.html | 1 + docs/posts/2023-10-04-bomb-lab.html | 1 + docs/posts/2023-10-05-attack-lab.html | 1 + docs/posts/2023-10-22-search-by-flair-reddit.html | 1 + docs/posts/2024-01-05-hello-20224.html | 1 + .../2024-02-26-control-element-under-another-element-html-css.html | 1 + docs/posts/2024-03-15-setting-up-macos-for-8088-dos-dev.html | 1 + docs/posts/2024-03-21-Polynomial-Regression-in-TensorFlow-2.html | 1 + docs/posts/2024-03-26-Derivation-of-the-Quadratic-Equation.html | 1 + docs/posts/hello-world.html | 1 + docs/posts/index.html | 1 + ...-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-Response.html | 1 + docs/publications/2020-03-14-generating-vaporwave.html | 1 + docs/publications/2020-03-17-Possible-Drug-Candidates-COVID-19.html | 1 + docs/publications/index.html | 1 + docs/tags/AR.html | 1 + docs/tags/AR.js.html | 1 + docs/tags/Android-TV.html | 1 + docs/tags/Android.html | 1 + docs/tags/Anemone.html | 1 + docs/tags/AppleScript.html | 1 + docs/tags/Augmented-Reality.html | 1 + docs/tags/AutoDock Vina.html | 1 + docs/tags/CSS.html | 1 + docs/tags/Cheminformatics.html | 1 + docs/tags/Code-Snippet.html | 1 + docs/tags/Colab.html | 1 + docs/tags/CoreML.html | 1 + docs/tags/DOS.html | 1 + docs/tags/Designing.html | 1 + docs/tags/Eh.html | 1 + docs/tags/Experiment.html | 1 + docs/tags/Fun.html | 1 + docs/tags/General.html | 1 + docs/tags/HTML.html | 1 + docs/tags/Jailbreak.html | 1 + docs/tags/JavaScript.html | 1 + docs/tags/Kaggle.html | 1 + docs/tags/Linux.html | 1 + docs/tags/MR.html | 1 + docs/tags/Mastodon.html | 1 + docs/tags/Microsoft Azure.html | 1 + docs/tags/Molecular-Docking.html | 1 + docs/tags/Molecular-Dynamics.html | 1 + docs/tags/Mountain Biking.html | 1 + docs/tags/Music.html | 1 + docs/tags/NLP.html | 1 + docs/tags/OCR.html | 1 + docs/tags/Open-Babel.html | 1 + docs/tags/OpenSCAD.html | 1 + docs/tags/Python.html | 1 + docs/tags/Raspberry-Pi.html | 1 + docs/tags/Recommendation-System.html | 1 + docs/tags/Reddit.html | 1 + docs/tags/Review.html | 1 + docs/tags/Self-Hosted.html | 1 + docs/tags/Shortcuts.html | 1 + docs/tags/Siri.html | 1 + docs/tags/Snowboard.html | 1 + docs/tags/Swift.html | 1 + docs/tags/SwiftUI.html | 1 + docs/tags/Tech Tip.html | 1 + docs/tags/Tensorflow.html | 1 + docs/tags/Transformers.html | 1 + docs/tags/Turicreate.html | 1 + docs/tags/Tutorial.html | 1 + docs/tags/Twitter.html | 1 + docs/tags/Vaporwave.html | 1 + docs/tags/Web-Development.html | 1 + docs/tags/Webcam.html | 1 + docs/tags/XR.html | 1 + docs/tags/YunoHost.html | 1 + docs/tags/assembly.html | 1 + docs/tags/astrophysics.html | 1 + docs/tags/c++.html | 1 + docs/tags/csci2400.html | 1 + docs/tags/gdb.html | 1 + docs/tags/hello-world.html | 1 + docs/tags/iOS.html | 1 + docs/tags/macOS.html | 1 + docs/tags/mathematics.html | 1 + docs/tags/pre-print.html | 1 + docs/tags/publication.html | 1 + docs/tags/ramblings.html | 1 + docs/tags/reverse-engineering.html | 1 + docs/tags/x86.html | 1 + sass/c-hyde.scss | 2 +- templates/base.html | 1 + 129 files changed, 130 insertions(+), 4 deletions(-) (limited to 'sass') diff --git a/docs/3D-Designs/2024-02-17-Can-Holder-Mountain-Bike.html b/docs/3D-Designs/2024-02-17-Can-Holder-Mountain-Bike.html index b227585..9f73b61 100644 --- a/docs/3D-Designs/2024-02-17-Can-Holder-Mountain-Bike.html +++ b/docs/3D-Designs/2024-02-17-Can-Holder-Mountain-Bike.html @@ -5,6 +5,7 @@ + Bike Soda Can Holder diff --git a/docs/3D-Designs/index.html b/docs/3D-Designs/index.html index af8f7ab..4bb8515 100644 --- a/docs/3D-Designs/index.html +++ b/docs/3D-Designs/index.html @@ -5,6 +5,7 @@ + 3D-Designs diff --git a/docs/about/index.html b/docs/about/index.html index 46e03b3..92d6e5d 100644 --- a/docs/about/index.html +++ b/docs/about/index.html @@ -5,6 +5,7 @@ + About diff --git a/docs/assets/c-hyde.css b/docs/assets/c-hyde.css index 0f374b1..6f82afd 100644 --- a/docs/assets/c-hyde.css +++ b/docs/assets/c-hyde.css @@ -569,7 +569,7 @@ html { */ .sidebar { text-align: center; - padding: 2rem 1rem; + padding: 0.5rem 1rem; color: rgba(255, 255, 255, 0.5); background-color: #202020; } diff --git a/docs/colophon/index.html b/docs/colophon/index.html index 214292f..9776ba4 100644 --- a/docs/colophon/index.html +++ b/docs/colophon/index.html @@ -5,6 +5,7 @@ + Colophon diff --git a/docs/feed.rss b/docs/feed.rss index 385dcf1..2cb2370 100644 --- a/docs/feed.rss +++ b/docs/feed.rss @@ -4,8 +4,8 @@ Navan's Archive Rare Tips, Tricks and Posts https://web.navan.dev/en - Wed, 27 Mar 2024 23:34:58 -0000 - Wed, 27 Mar 2024 23:34:58 -0000 + Wed, 27 Mar 2024 23:45:05 -0000 + Wed, 27 Mar 2024 23:45:05 -0000 250 diff --git a/docs/ideas/2022-12-17-ar-mr-xr.html b/docs/ideas/2022-12-17-ar-mr-xr.html index 42d6fc3..93a57e3 100644 --- a/docs/ideas/2022-12-17-ar-mr-xr.html +++ b/docs/ideas/2022-12-17-ar-mr-xr.html @@ -5,6 +5,7 @@ + AR XR MR diff --git a/docs/ideas/index.html b/docs/ideas/index.html index d97fa55..3e5b000 100644 --- a/docs/ideas/index.html +++ b/docs/ideas/index.html @@ -5,6 +5,7 @@ + Ideas diff --git a/docs/index.html b/docs/index.html index 637f141..da5e542 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,6 +5,7 @@ + Home diff --git a/docs/posts/2010-01-24-experiments.html b/docs/posts/2010-01-24-experiments.html index af76434..74ef00c 100644 --- a/docs/posts/2010-01-24-experiments.html +++ b/docs/posts/2010-01-24-experiments.html @@ -5,6 +5,7 @@ + Experiments diff --git a/docs/posts/2019-05-05-Custom-Snowboard-Anemone-Theme.html b/docs/posts/2019-05-05-Custom-Snowboard-Anemone-Theme.html index 2072335..54b7f98 100644 --- a/docs/posts/2019-05-05-Custom-Snowboard-Anemone-Theme.html +++ b/docs/posts/2019-05-05-Custom-Snowboard-Anemone-Theme.html @@ -5,6 +5,7 @@ + Creating your own custom theme for Snowboard or Anemone diff --git a/docs/posts/2019-12-04-Google-Teachable-Machines.html b/docs/posts/2019-12-04-Google-Teachable-Machines.html index 2fc19a0..9a168b0 100644 --- a/docs/posts/2019-12-04-Google-Teachable-Machines.html +++ b/docs/posts/2019-12-04-Google-Teachable-Machines.html @@ -5,6 +5,7 @@ + Image Classifier With Teachable Machines diff --git a/docs/posts/2019-12-08-Image-Classifier-Tensorflow.html b/docs/posts/2019-12-08-Image-Classifier-Tensorflow.html index f31915f..c9ee1e0 100644 --- a/docs/posts/2019-12-08-Image-Classifier-Tensorflow.html +++ b/docs/posts/2019-12-08-Image-Classifier-Tensorflow.html @@ -5,6 +5,7 @@ + Creating a Custom Image Classifier using Tensorflow 2.x and Keras for Detecting Malaria diff --git a/docs/posts/2019-12-08-Splitting-Zips.html b/docs/posts/2019-12-08-Splitting-Zips.html index 8581146..ea7a276 100644 --- a/docs/posts/2019-12-08-Splitting-Zips.html +++ b/docs/posts/2019-12-08-Splitting-Zips.html @@ -5,6 +5,7 @@ + Splitting ZIPs into Multiple Parts diff --git a/docs/posts/2019-12-10-TensorFlow-Model-Prediction.html b/docs/posts/2019-12-10-TensorFlow-Model-Prediction.html index e353ac5..226e0d4 100644 --- a/docs/posts/2019-12-10-TensorFlow-Model-Prediction.html +++ b/docs/posts/2019-12-10-TensorFlow-Model-Prediction.html @@ -5,6 +5,7 @@ + Making Predictions using Image Classifier (TensorFlow) diff --git a/docs/posts/2019-12-16-TensorFlow-Polynomial-Regression.html b/docs/posts/2019-12-16-TensorFlow-Polynomial-Regression.html index 15c0cc4..86a1954 100644 --- a/docs/posts/2019-12-16-TensorFlow-Polynomial-Regression.html +++ b/docs/posts/2019-12-16-TensorFlow-Polynomial-Regression.html @@ -5,6 +5,7 @@ + Polynomial Regression Using TensorFlow diff --git a/docs/posts/2019-12-22-Fake-News-Detector.html b/docs/posts/2019-12-22-Fake-News-Detector.html index bb22f48..3a7a843 100644 --- a/docs/posts/2019-12-22-Fake-News-Detector.html +++ b/docs/posts/2019-12-22-Fake-News-Detector.html @@ -5,6 +5,7 @@ + Building a Fake News Detector with Turicreate diff --git a/docs/posts/2020-01-14-Converting-between-PIL-NumPy.html b/docs/posts/2020-01-14-Converting-between-PIL-NumPy.html index 5701de3..31e4ed9 100644 --- a/docs/posts/2020-01-14-Converting-between-PIL-NumPy.html +++ b/docs/posts/2020-01-14-Converting-between-PIL-NumPy.html @@ -5,6 +5,7 @@ + Converting between image and NumPy array diff --git a/docs/posts/2020-01-15-Setting-up-Kaggle-to-use-with-Colab.html b/docs/posts/2020-01-15-Setting-up-Kaggle-to-use-with-Colab.html index 93b35aa..1285934 100644 --- a/docs/posts/2020-01-15-Setting-up-Kaggle-to-use-with-Colab.html +++ b/docs/posts/2020-01-15-Setting-up-Kaggle-to-use-with-Colab.html @@ -5,6 +5,7 @@ + Setting up Kaggle to use with Google Colab diff --git a/docs/posts/2020-01-16-Image-Classifier-Using-Turicreate.html b/docs/posts/2020-01-16-Image-Classifier-Using-Turicreate.html index 296f4d8..56d9c8d 100644 --- a/docs/posts/2020-01-16-Image-Classifier-Using-Turicreate.html +++ b/docs/posts/2020-01-16-Image-Classifier-Using-Turicreate.html @@ -5,6 +5,7 @@ + Creating a Custom Image Classifier using Turicreate to detect Smoke and Fire diff --git a/docs/posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-Terminal.html b/docs/posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-Terminal.html index 8091f7f..b156559 100644 --- a/docs/posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-Terminal.html +++ b/docs/posts/2020-01-19-Connect-To-Bluetooth-Devices-Linux-Terminal.html @@ -5,6 +5,7 @@ + How to setup Bluetooth on a Raspberry Pi diff --git a/docs/posts/2020-03-03-Playing-With-Android-TV.html b/docs/posts/2020-03-03-Playing-With-Android-TV.html index d2ff02e..c3058fb 100644 --- a/docs/posts/2020-03-03-Playing-With-Android-TV.html +++ b/docs/posts/2020-03-03-Playing-With-Android-TV.html @@ -5,6 +5,7 @@ + Tinkering with an Android TV diff --git a/docs/posts/2020-03-08-Making-Vaporwave-Track.html b/docs/posts/2020-03-08-Making-Vaporwave-Track.html index 5932108..4d2cf2a 100644 --- a/docs/posts/2020-03-08-Making-Vaporwave-Track.html +++ b/docs/posts/2020-03-08-Making-Vaporwave-Track.html @@ -5,6 +5,7 @@ + Making My First Vaporwave Track (Remix) diff --git a/docs/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOS.html b/docs/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOS.html index 4fb7a6a..cae1f68 100644 --- a/docs/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOS.html +++ b/docs/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOS.html @@ -5,6 +5,7 @@ + Fixing X11 Error on macOS Catalina for AmberTools 18/19 diff --git a/docs/posts/2020-05-31-compiling-open-babel-on-ios.html b/docs/posts/2020-05-31-compiling-open-babel-on-ios.html index 873f7b8..056e7e9 100644 --- a/docs/posts/2020-05-31-compiling-open-babel-on-ios.html +++ b/docs/posts/2020-05-31-compiling-open-babel-on-ios.html @@ -5,6 +5,7 @@ + Compiling Open Babel on iOS diff --git a/docs/posts/2020-06-01-Speeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOL.html b/docs/posts/2020-06-01-Speeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOL.html index 1bde992..32abeda 100644 --- a/docs/posts/2020-06-01-Speeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOL.html +++ b/docs/posts/2020-06-01-Speeding-Up-Molecular-Docking-Workflow-AutoDock-Vina-and-PyMOL.html @@ -5,6 +5,7 @@ + Workflow for Lightning Fast Molecular Docking Part One diff --git a/docs/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOS.html b/docs/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOS.html index a8e55cb..814ce86 100644 --- a/docs/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOS.html +++ b/docs/posts/2020-06-02-Compiling-AutoDock-Vina-on-iOS.html @@ -5,6 +5,7 @@ + Compiling AutoDock Vina on iOS diff --git a/docs/posts/2020-07-01-Install-rdkit-colab.html b/docs/posts/2020-07-01-Install-rdkit-colab.html index 4ab823d..9f5c507 100644 --- a/docs/posts/2020-07-01-Install-rdkit-colab.html +++ b/docs/posts/2020-07-01-Install-rdkit-colab.html @@ -5,6 +5,7 @@ + Installing RDKit on Google Colab diff --git a/docs/posts/2020-08-01-Natural-Feature-Tracking-ARJS.html b/docs/posts/2020-08-01-Natural-Feature-Tracking-ARJS.html index d276831..402f17e 100644 --- a/docs/posts/2020-08-01-Natural-Feature-Tracking-ARJS.html +++ b/docs/posts/2020-08-01-Natural-Feature-Tracking-ARJS.html @@ -5,6 +5,7 @@ + Introduction to AR.js and Natural Feature Tracking diff --git a/docs/posts/2020-10-11-macOS-Virtual-Cam-OBS.html b/docs/posts/2020-10-11-macOS-Virtual-Cam-OBS.html index ae1f8f1..0a456ef 100644 --- a/docs/posts/2020-10-11-macOS-Virtual-Cam-OBS.html +++ b/docs/posts/2020-10-11-macOS-Virtual-Cam-OBS.html @@ -5,6 +5,7 @@ + Trying Different Camera Setups diff --git a/docs/posts/2020-11-17-Lets-Encrypt-DuckDns.html b/docs/posts/2020-11-17-Lets-Encrypt-DuckDns.html index c0cfd69..5d5a40f 100644 --- a/docs/posts/2020-11-17-Lets-Encrypt-DuckDns.html +++ b/docs/posts/2020-11-17-Lets-Encrypt-DuckDns.html @@ -5,6 +5,7 @@ + Generating HTTPS Certificate using DNS a Challenge through Let's Encrypt diff --git a/docs/posts/2020-12-1-HTML-JS-RSS-Feed.html b/docs/posts/2020-12-1-HTML-JS-RSS-Feed.html index 12f7e72..f55f602 100644 --- a/docs/posts/2020-12-1-HTML-JS-RSS-Feed.html +++ b/docs/posts/2020-12-1-HTML-JS-RSS-Feed.html @@ -5,6 +5,7 @@ + RSS Feed written in HTML + JavaScript diff --git a/docs/posts/2021-06-25-Blog2Twitter-P1.html b/docs/posts/2021-06-25-Blog2Twitter-P1.html index 2c79860..faccf64 100644 --- a/docs/posts/2021-06-25-Blog2Twitter-P1.html +++ b/docs/posts/2021-06-25-Blog2Twitter-P1.html @@ -5,6 +5,7 @@ + Posting Blog Posts as Twitter Threads Part 1/n diff --git a/docs/posts/2021-06-25-NFC-Music-Cards-Basic-iOS.html b/docs/posts/2021-06-25-NFC-Music-Cards-Basic-iOS.html index f7692a9..8917e7c 100644 --- a/docs/posts/2021-06-25-NFC-Music-Cards-Basic-iOS.html +++ b/docs/posts/2021-06-25-NFC-Music-Cards-Basic-iOS.html @@ -5,6 +5,7 @@ + Basic NFC Music Cards for iOS diff --git a/docs/posts/2021-06-26-Cheminformatics-On-The-Web-2021.html b/docs/posts/2021-06-26-Cheminformatics-On-The-Web-2021.html index a889cb1..68a4c25 100644 --- a/docs/posts/2021-06-26-Cheminformatics-On-The-Web-2021.html +++ b/docs/posts/2021-06-26-Cheminformatics-On-The-Web-2021.html @@ -5,6 +5,7 @@ + Cheminformatics on the Web (2021) diff --git a/docs/posts/2021-06-27-Crude-ML-AI-Powered-Chatbot-Swift.html b/docs/posts/2021-06-27-Crude-ML-AI-Powered-Chatbot-Swift.html index 25bb83c..de25fe8 100644 --- a/docs/posts/2021-06-27-Crude-ML-AI-Powered-Chatbot-Swift.html +++ b/docs/posts/2021-06-27-Crude-ML-AI-Powered-Chatbot-Swift.html @@ -5,6 +5,7 @@ + Making a Crude ML Powered Chatbot in Swift using CoreML diff --git a/docs/posts/2022-05-21-Similar-Movies-Recommender.html b/docs/posts/2022-05-21-Similar-Movies-Recommender.html index e592257..bc1ab08 100644 --- a/docs/posts/2022-05-21-Similar-Movies-Recommender.html +++ b/docs/posts/2022-05-21-Similar-Movies-Recommender.html @@ -5,6 +5,7 @@ + Building a Similar Movies Recommendation System diff --git a/docs/posts/2022-08-05-Why-You-No-Host.html b/docs/posts/2022-08-05-Why-You-No-Host.html index e858c28..f7f074b 100644 --- a/docs/posts/2022-08-05-Why-You-No-Host.html +++ b/docs/posts/2022-08-05-Why-You-No-Host.html @@ -5,6 +5,7 @@ + Why You No Host? diff --git a/docs/posts/2022-11-07-a-new-method-to-blog.html b/docs/posts/2022-11-07-a-new-method-to-blog.html index 36aa737..1f477bd 100644 --- a/docs/posts/2022-11-07-a-new-method-to-blog.html +++ b/docs/posts/2022-11-07-a-new-method-to-blog.html @@ -5,6 +5,7 @@ + A new method to blog diff --git a/docs/posts/2022-12-25-blog-to-toot.html b/docs/posts/2022-12-25-blog-to-toot.html index 6095d30..ad2e7d5 100644 --- a/docs/posts/2022-12-25-blog-to-toot.html +++ b/docs/posts/2022-12-25-blog-to-toot.html @@ -5,6 +5,7 @@ + Posting blogs as Mastodon Toots diff --git a/docs/posts/2023-02-08-Interact-with-siri-from-the-terminal.html b/docs/posts/2023-02-08-Interact-with-siri-from-the-terminal.html index 86c017a..7f99f0d 100644 --- a/docs/posts/2023-02-08-Interact-with-siri-from-the-terminal.html +++ b/docs/posts/2023-02-08-Interact-with-siri-from-the-terminal.html @@ -5,6 +5,7 @@ + Interacting with Siri using the command line diff --git a/docs/posts/2023-04-30-n-body-simulation.html b/docs/posts/2023-04-30-n-body-simulation.html index 878624a..1d65a07 100644 --- a/docs/posts/2023-04-30-n-body-simulation.html +++ b/docs/posts/2023-04-30-n-body-simulation.html @@ -5,6 +5,7 @@ + n-body solution generator diff --git a/docs/posts/2023-10-04-bomb-lab.html b/docs/posts/2023-10-04-bomb-lab.html index b1fb86e..8bb7dcd 100644 --- a/docs/posts/2023-10-04-bomb-lab.html +++ b/docs/posts/2023-10-04-bomb-lab.html @@ -5,6 +5,7 @@ + Bomb Lab diff --git a/docs/posts/2023-10-05-attack-lab.html b/docs/posts/2023-10-05-attack-lab.html index 414bc76..5344ca6 100644 --- a/docs/posts/2023-10-05-attack-lab.html +++ b/docs/posts/2023-10-05-attack-lab.html @@ -5,6 +5,7 @@ + Attack Lab diff --git a/docs/posts/2023-10-22-search-by-flair-reddit.html b/docs/posts/2023-10-22-search-by-flair-reddit.html index 1bc6e7b..d3f9bf1 100644 --- a/docs/posts/2023-10-22-search-by-flair-reddit.html +++ b/docs/posts/2023-10-22-search-by-flair-reddit.html @@ -5,6 +5,7 @@ + Search / Filter posts by flair on Reddit diff --git a/docs/posts/2024-01-05-hello-20224.html b/docs/posts/2024-01-05-hello-20224.html index 2fe9972..e241393 100644 --- a/docs/posts/2024-01-05-hello-20224.html +++ b/docs/posts/2024-01-05-hello-20224.html @@ -5,6 +5,7 @@ + Hello 2024 diff --git a/docs/posts/2024-02-26-control-element-under-another-element-html-css.html b/docs/posts/2024-02-26-control-element-under-another-element-html-css.html index c088f19..6595331 100644 --- a/docs/posts/2024-02-26-control-element-under-another-element-html-css.html +++ b/docs/posts/2024-02-26-control-element-under-another-element-html-css.html @@ -5,6 +5,7 @@ + Interacting with underlying element in HTML diff --git a/docs/posts/2024-03-15-setting-up-macos-for-8088-dos-dev.html b/docs/posts/2024-03-15-setting-up-macos-for-8088-dos-dev.html index 0816934..9041a1e 100644 --- a/docs/posts/2024-03-15-setting-up-macos-for-8088-dos-dev.html +++ b/docs/posts/2024-03-15-setting-up-macos-for-8088-dos-dev.html @@ -5,6 +5,7 @@ + Cross-Compiling Hello World for DOS on macOS diff --git a/docs/posts/2024-03-21-Polynomial-Regression-in-TensorFlow-2.html b/docs/posts/2024-03-21-Polynomial-Regression-in-TensorFlow-2.html index 20cce37..80ccad2 100644 --- a/docs/posts/2024-03-21-Polynomial-Regression-in-TensorFlow-2.html +++ b/docs/posts/2024-03-21-Polynomial-Regression-in-TensorFlow-2.html @@ -5,6 +5,7 @@ + Polynomial Regression Using TensorFlow 2.x diff --git a/docs/posts/2024-03-26-Derivation-of-the-Quadratic-Equation.html b/docs/posts/2024-03-26-Derivation-of-the-Quadratic-Equation.html index 27ad846..33d09ec 100644 --- a/docs/posts/2024-03-26-Derivation-of-the-Quadratic-Equation.html +++ b/docs/posts/2024-03-26-Derivation-of-the-Quadratic-Equation.html @@ -5,6 +5,7 @@ + Quadratic Formula Derivation diff --git a/docs/posts/hello-world.html b/docs/posts/hello-world.html index 6a4f678..f9a1110 100644 --- a/docs/posts/hello-world.html +++ b/docs/posts/hello-world.html @@ -5,6 +5,7 @@ + Hello World diff --git a/docs/posts/index.html b/docs/posts/index.html index e8cab65..a64a79a 100644 --- a/docs/posts/index.html +++ b/docs/posts/index.html @@ -5,6 +5,7 @@ + Posts diff --git a/docs/publications/2019-05-14-Detecting-Driver-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-Response.html b/docs/publications/2019-05-14-Detecting-Driver-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-Response.html index 18b6df7..fe5568b 100644 --- a/docs/publications/2019-05-14-Detecting-Driver-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-Response.html +++ b/docs/publications/2019-05-14-Detecting-Driver-Fatigue-Over-Speeding-and-Speeding-up-Post-Accident-Response.html @@ -5,6 +5,7 @@ + Detecting Driver Fatigue, Over-Speeding, and Speeding up Post-Accident Response diff --git a/docs/publications/2020-03-14-generating-vaporwave.html b/docs/publications/2020-03-14-generating-vaporwave.html index 8828d4e..d01b660 100644 --- a/docs/publications/2020-03-14-generating-vaporwave.html +++ b/docs/publications/2020-03-14-generating-vaporwave.html @@ -5,6 +5,7 @@ + Is it possible to programmatically generate Vaporwave? diff --git a/docs/publications/2020-03-17-Possible-Drug-Candidates-COVID-19.html b/docs/publications/2020-03-17-Possible-Drug-Candidates-COVID-19.html index eea7d62..ed04322 100644 --- a/docs/publications/2020-03-17-Possible-Drug-Candidates-COVID-19.html +++ b/docs/publications/2020-03-17-Possible-Drug-Candidates-COVID-19.html @@ -5,6 +5,7 @@ + Possible Drug Candidates for COVID-19 diff --git a/docs/publications/index.html b/docs/publications/index.html index fa0aa25..6882a4c 100644 --- a/docs/publications/index.html +++ b/docs/publications/index.html @@ -5,6 +5,7 @@ + Publications diff --git a/docs/tags/AR.html b/docs/tags/AR.html index 66d3408..f8a2b72 100644 --- a/docs/tags/AR.html +++ b/docs/tags/AR.html @@ -5,6 +5,7 @@ + "AR" diff --git a/docs/tags/AR.js.html b/docs/tags/AR.js.html index 950714f..a9c6995 100644 --- a/docs/tags/AR.js.html +++ b/docs/tags/AR.js.html @@ -5,6 +5,7 @@ + "AR.js" diff --git a/docs/tags/Android-TV.html b/docs/tags/Android-TV.html index 42f371a..a5b6e58 100644 --- a/docs/tags/Android-TV.html +++ b/docs/tags/Android-TV.html @@ -5,6 +5,7 @@ + "Android-TV" diff --git a/docs/tags/Android.html b/docs/tags/Android.html index 168edef..0d454ba 100644 --- a/docs/tags/Android.html +++ b/docs/tags/Android.html @@ -5,6 +5,7 @@ + "Android" diff --git a/docs/tags/Anemone.html b/docs/tags/Anemone.html index d57eb84..955c345 100644 --- a/docs/tags/Anemone.html +++ b/docs/tags/Anemone.html @@ -5,6 +5,7 @@ + "Anemone" diff --git a/docs/tags/AppleScript.html b/docs/tags/AppleScript.html index e12e3d3..53775dd 100644 --- a/docs/tags/AppleScript.html +++ b/docs/tags/AppleScript.html @@ -5,6 +5,7 @@ + "AppleScript" diff --git a/docs/tags/Augmented-Reality.html b/docs/tags/Augmented-Reality.html index f6648b1..c1049c4 100644 --- a/docs/tags/Augmented-Reality.html +++ b/docs/tags/Augmented-Reality.html @@ -5,6 +5,7 @@ + "Augmented-Reality" diff --git a/docs/tags/AutoDock Vina.html b/docs/tags/AutoDock Vina.html index ff4340f..cb86f69 100644 --- a/docs/tags/AutoDock Vina.html +++ b/docs/tags/AutoDock Vina.html @@ -5,6 +5,7 @@ + "AutoDock Vina" diff --git a/docs/tags/CSS.html b/docs/tags/CSS.html index 6d3b994..7e830e9 100644 --- a/docs/tags/CSS.html +++ b/docs/tags/CSS.html @@ -5,6 +5,7 @@ + "CSS" diff --git a/docs/tags/Cheminformatics.html b/docs/tags/Cheminformatics.html index 940eb76..c686c20 100644 --- a/docs/tags/Cheminformatics.html +++ b/docs/tags/Cheminformatics.html @@ -5,6 +5,7 @@ + "Cheminformatics" diff --git a/docs/tags/Code-Snippet.html b/docs/tags/Code-Snippet.html index 440048c..4e72087 100644 --- a/docs/tags/Code-Snippet.html +++ b/docs/tags/Code-Snippet.html @@ -5,6 +5,7 @@ + "Code-Snippet" diff --git a/docs/tags/Colab.html b/docs/tags/Colab.html index 0e694f7..bcc57c9 100644 --- a/docs/tags/Colab.html +++ b/docs/tags/Colab.html @@ -5,6 +5,7 @@ + "Colab" diff --git a/docs/tags/CoreML.html b/docs/tags/CoreML.html index c586308..dc27878 100644 --- a/docs/tags/CoreML.html +++ b/docs/tags/CoreML.html @@ -5,6 +5,7 @@ + "CoreML" diff --git a/docs/tags/DOS.html b/docs/tags/DOS.html index 9f6ec82..646ab8b 100644 --- a/docs/tags/DOS.html +++ b/docs/tags/DOS.html @@ -5,6 +5,7 @@ + "DOS" diff --git a/docs/tags/Designing.html b/docs/tags/Designing.html index f4c8bc9..06b1602 100644 --- a/docs/tags/Designing.html +++ b/docs/tags/Designing.html @@ -5,6 +5,7 @@ + "Designing" diff --git a/docs/tags/Eh.html b/docs/tags/Eh.html index cfa89e8..39c7850 100644 --- a/docs/tags/Eh.html +++ b/docs/tags/Eh.html @@ -5,6 +5,7 @@ + "Eh" diff --git a/docs/tags/Experiment.html b/docs/tags/Experiment.html index be5d5bd..04b8117 100644 --- a/docs/tags/Experiment.html +++ b/docs/tags/Experiment.html @@ -5,6 +5,7 @@ + "Experiment" diff --git a/docs/tags/Fun.html b/docs/tags/Fun.html index 70cb7da..596f61c 100644 --- a/docs/tags/Fun.html +++ b/docs/tags/Fun.html @@ -5,6 +5,7 @@ + "Fun" diff --git a/docs/tags/General.html b/docs/tags/General.html index 8497d56..8d81e3d 100644 --- a/docs/tags/General.html +++ b/docs/tags/General.html @@ -5,6 +5,7 @@ + "General" diff --git a/docs/tags/HTML.html b/docs/tags/HTML.html index bf6e9d5..03998ae 100644 --- a/docs/tags/HTML.html +++ b/docs/tags/HTML.html @@ -5,6 +5,7 @@ + "HTML" diff --git a/docs/tags/Jailbreak.html b/docs/tags/Jailbreak.html index f8d8a7a..9aca224 100644 --- a/docs/tags/Jailbreak.html +++ b/docs/tags/Jailbreak.html @@ -5,6 +5,7 @@ + "Jailbreak" diff --git a/docs/tags/JavaScript.html b/docs/tags/JavaScript.html index 085cd2a..cf99eb4 100644 --- a/docs/tags/JavaScript.html +++ b/docs/tags/JavaScript.html @@ -5,6 +5,7 @@ + "JavaScript" diff --git a/docs/tags/Kaggle.html b/docs/tags/Kaggle.html index 85cdd35..cad0da0 100644 --- a/docs/tags/Kaggle.html +++ b/docs/tags/Kaggle.html @@ -5,6 +5,7 @@ + "Kaggle" diff --git a/docs/tags/Linux.html b/docs/tags/Linux.html index 8b4da90..a1e2628 100644 --- a/docs/tags/Linux.html +++ b/docs/tags/Linux.html @@ -5,6 +5,7 @@ + "Linux" diff --git a/docs/tags/MR.html b/docs/tags/MR.html index 6a8d3e3..dd5d491 100644 --- a/docs/tags/MR.html +++ b/docs/tags/MR.html @@ -5,6 +5,7 @@ + "MR" diff --git a/docs/tags/Mastodon.html b/docs/tags/Mastodon.html index 5871a92..f3fabc6 100644 --- a/docs/tags/Mastodon.html +++ b/docs/tags/Mastodon.html @@ -5,6 +5,7 @@ + "Mastodon" diff --git a/docs/tags/Microsoft Azure.html b/docs/tags/Microsoft Azure.html index 8051c31..d303b76 100644 --- a/docs/tags/Microsoft Azure.html +++ b/docs/tags/Microsoft Azure.html @@ -5,6 +5,7 @@ + "Microsoft Azure" diff --git a/docs/tags/Molecular-Docking.html b/docs/tags/Molecular-Docking.html index b971040..03cb198 100644 --- a/docs/tags/Molecular-Docking.html +++ b/docs/tags/Molecular-Docking.html @@ -5,6 +5,7 @@ + "Molecular-Docking" diff --git a/docs/tags/Molecular-Dynamics.html b/docs/tags/Molecular-Dynamics.html index bacf0b6..a56deb8 100644 --- a/docs/tags/Molecular-Dynamics.html +++ b/docs/tags/Molecular-Dynamics.html @@ -5,6 +5,7 @@ + "Molecular-Dynamics" diff --git a/docs/tags/Mountain Biking.html b/docs/tags/Mountain Biking.html index 999054c..a9d013c 100644 --- a/docs/tags/Mountain Biking.html +++ b/docs/tags/Mountain Biking.html @@ -5,6 +5,7 @@ + "Mountain Biking" diff --git a/docs/tags/Music.html b/docs/tags/Music.html index 599a5ce..1d97817 100644 --- a/docs/tags/Music.html +++ b/docs/tags/Music.html @@ -5,6 +5,7 @@ + "Music" diff --git a/docs/tags/NLP.html b/docs/tags/NLP.html index b3134ee..2551e20 100644 --- a/docs/tags/NLP.html +++ b/docs/tags/NLP.html @@ -5,6 +5,7 @@ + "NLP" diff --git a/docs/tags/OCR.html b/docs/tags/OCR.html index bc14e07..525c40c 100644 --- a/docs/tags/OCR.html +++ b/docs/tags/OCR.html @@ -5,6 +5,7 @@ + "OCR" diff --git a/docs/tags/Open-Babel.html b/docs/tags/Open-Babel.html index 793e82d..c026b4b 100644 --- a/docs/tags/Open-Babel.html +++ b/docs/tags/Open-Babel.html @@ -5,6 +5,7 @@ + "Open-Babel" diff --git a/docs/tags/OpenSCAD.html b/docs/tags/OpenSCAD.html index 8d045b9..014f4a9 100644 --- a/docs/tags/OpenSCAD.html +++ b/docs/tags/OpenSCAD.html @@ -5,6 +5,7 @@ + "OpenSCAD" diff --git a/docs/tags/Python.html b/docs/tags/Python.html index f2051a1..39d62df 100644 --- a/docs/tags/Python.html +++ b/docs/tags/Python.html @@ -5,6 +5,7 @@ + "Python" diff --git a/docs/tags/Raspberry-Pi.html b/docs/tags/Raspberry-Pi.html index cb567a3..c913de5 100644 --- a/docs/tags/Raspberry-Pi.html +++ b/docs/tags/Raspberry-Pi.html @@ -5,6 +5,7 @@ + "Raspberry-Pi" diff --git a/docs/tags/Recommendation-System.html b/docs/tags/Recommendation-System.html index 1906372..3aadbf7 100644 --- a/docs/tags/Recommendation-System.html +++ b/docs/tags/Recommendation-System.html @@ -5,6 +5,7 @@ + "Recommendation-System" diff --git a/docs/tags/Reddit.html b/docs/tags/Reddit.html index 88fb0a0..bc97115 100644 --- a/docs/tags/Reddit.html +++ b/docs/tags/Reddit.html @@ -5,6 +5,7 @@ + "Reddit" diff --git a/docs/tags/Review.html b/docs/tags/Review.html index 557efe7..6b3736f 100644 --- a/docs/tags/Review.html +++ b/docs/tags/Review.html @@ -5,6 +5,7 @@ + "Review" diff --git a/docs/tags/Self-Hosted.html b/docs/tags/Self-Hosted.html index 0b4107c..122ceb2 100644 --- a/docs/tags/Self-Hosted.html +++ b/docs/tags/Self-Hosted.html @@ -5,6 +5,7 @@ + "Self-Hosted" diff --git a/docs/tags/Shortcuts.html b/docs/tags/Shortcuts.html index 64c1d39..6dc9275 100644 --- a/docs/tags/Shortcuts.html +++ b/docs/tags/Shortcuts.html @@ -5,6 +5,7 @@ + "Shortcuts" diff --git a/docs/tags/Siri.html b/docs/tags/Siri.html index f574a3f..8130269 100644 --- a/docs/tags/Siri.html +++ b/docs/tags/Siri.html @@ -5,6 +5,7 @@ + "Siri" diff --git a/docs/tags/Snowboard.html b/docs/tags/Snowboard.html index 3a44736..c4eecac 100644 --- a/docs/tags/Snowboard.html +++ b/docs/tags/Snowboard.html @@ -5,6 +5,7 @@ + "Snowboard" diff --git a/docs/tags/Swift.html b/docs/tags/Swift.html index ba0ef93..a78b176 100644 --- a/docs/tags/Swift.html +++ b/docs/tags/Swift.html @@ -5,6 +5,7 @@ + "Swift" diff --git a/docs/tags/SwiftUI.html b/docs/tags/SwiftUI.html index c3c4e67..fb4f331 100644 --- a/docs/tags/SwiftUI.html +++ b/docs/tags/SwiftUI.html @@ -5,6 +5,7 @@ + "SwiftUI" diff --git a/docs/tags/Tech Tip.html b/docs/tags/Tech Tip.html index e910037..7c0d8d3 100644 --- a/docs/tags/Tech Tip.html +++ b/docs/tags/Tech Tip.html @@ -5,6 +5,7 @@ + "Tech Tip" diff --git a/docs/tags/Tensorflow.html b/docs/tags/Tensorflow.html index 43e9f13..9f3d9ca 100644 --- a/docs/tags/Tensorflow.html +++ b/docs/tags/Tensorflow.html @@ -5,6 +5,7 @@ + "Tensorflow" diff --git a/docs/tags/Transformers.html b/docs/tags/Transformers.html index 8a0bdb4..683c0b5 100644 --- a/docs/tags/Transformers.html +++ b/docs/tags/Transformers.html @@ -5,6 +5,7 @@ + "Transformers" diff --git a/docs/tags/Turicreate.html b/docs/tags/Turicreate.html index ab0c8a9..0fb841c 100644 --- a/docs/tags/Turicreate.html +++ b/docs/tags/Turicreate.html @@ -5,6 +5,7 @@ + "Turicreate" diff --git a/docs/tags/Tutorial.html b/docs/tags/Tutorial.html index d095aaf..2e3d950 100644 --- a/docs/tags/Tutorial.html +++ b/docs/tags/Tutorial.html @@ -5,6 +5,7 @@ + "tutorial" diff --git a/docs/tags/Twitter.html b/docs/tags/Twitter.html index 26ad8b1..3b94043 100644 --- a/docs/tags/Twitter.html +++ b/docs/tags/Twitter.html @@ -5,6 +5,7 @@ + "Twitter" diff --git a/docs/tags/Vaporwave.html b/docs/tags/Vaporwave.html index 5013300..1fcf6b8 100644 --- a/docs/tags/Vaporwave.html +++ b/docs/tags/Vaporwave.html @@ -5,6 +5,7 @@ + "Vaporwave" diff --git a/docs/tags/Web-Development.html b/docs/tags/Web-Development.html index 1440a47..0da1e9d 100644 --- a/docs/tags/Web-Development.html +++ b/docs/tags/Web-Development.html @@ -5,6 +5,7 @@ + "Web-Development" diff --git a/docs/tags/Webcam.html b/docs/tags/Webcam.html index 0854fb4..636ddce 100644 --- a/docs/tags/Webcam.html +++ b/docs/tags/Webcam.html @@ -5,6 +5,7 @@ + "Webcam" diff --git a/docs/tags/XR.html b/docs/tags/XR.html index 51ea646..e985ac9 100644 --- a/docs/tags/XR.html +++ b/docs/tags/XR.html @@ -5,6 +5,7 @@ + "XR" diff --git a/docs/tags/YunoHost.html b/docs/tags/YunoHost.html index 146feee..95454a4 100644 --- a/docs/tags/YunoHost.html +++ b/docs/tags/YunoHost.html @@ -5,6 +5,7 @@ + "YunoHost" diff --git a/docs/tags/assembly.html b/docs/tags/assembly.html index ceca240..9b33866 100644 --- a/docs/tags/assembly.html +++ b/docs/tags/assembly.html @@ -5,6 +5,7 @@ + "Assembly" diff --git a/docs/tags/astrophysics.html b/docs/tags/astrophysics.html index 3b29eeb..80c381a 100644 --- a/docs/tags/astrophysics.html +++ b/docs/tags/astrophysics.html @@ -5,6 +5,7 @@ + "astrophysics" diff --git a/docs/tags/c++.html b/docs/tags/c++.html index 4ef1a23..9b4cca6 100644 --- a/docs/tags/c++.html +++ b/docs/tags/c++.html @@ -5,6 +5,7 @@ + "C++" diff --git a/docs/tags/csci2400.html b/docs/tags/csci2400.html index 5662888..cb705d4 100644 --- a/docs/tags/csci2400.html +++ b/docs/tags/csci2400.html @@ -5,6 +5,7 @@ + "CSCI2400" diff --git a/docs/tags/gdb.html b/docs/tags/gdb.html index 6074ecc..8d1b893 100644 --- a/docs/tags/gdb.html +++ b/docs/tags/gdb.html @@ -5,6 +5,7 @@ + "gdb" diff --git a/docs/tags/hello-world.html b/docs/tags/hello-world.html index 43fc3f0..d3fb664 100644 --- a/docs/tags/hello-world.html +++ b/docs/tags/hello-world.html @@ -5,6 +5,7 @@ + "hello-world" diff --git a/docs/tags/iOS.html b/docs/tags/iOS.html index c40d97a..5c8335d 100644 --- a/docs/tags/iOS.html +++ b/docs/tags/iOS.html @@ -5,6 +5,7 @@ + "iOS" diff --git a/docs/tags/macOS.html b/docs/tags/macOS.html index f43d282..1fa2569 100644 --- a/docs/tags/macOS.html +++ b/docs/tags/macOS.html @@ -5,6 +5,7 @@ + "macOS" diff --git a/docs/tags/mathematics.html b/docs/tags/mathematics.html index 312a439..d12fb18 100644 --- a/docs/tags/mathematics.html +++ b/docs/tags/mathematics.html @@ -5,6 +5,7 @@ + "mathematics" diff --git a/docs/tags/pre-print.html b/docs/tags/pre-print.html index 6bc935f..db2cc6f 100644 --- a/docs/tags/pre-print.html +++ b/docs/tags/pre-print.html @@ -5,6 +5,7 @@ + "pre-print" diff --git a/docs/tags/publication.html b/docs/tags/publication.html index 62047c8..6f9153f 100644 --- a/docs/tags/publication.html +++ b/docs/tags/publication.html @@ -5,6 +5,7 @@ + "publication" diff --git a/docs/tags/ramblings.html b/docs/tags/ramblings.html index c61e5ea..2ddfa67 100644 --- a/docs/tags/ramblings.html +++ b/docs/tags/ramblings.html @@ -5,6 +5,7 @@ + "Ramblings" diff --git a/docs/tags/reverse-engineering.html b/docs/tags/reverse-engineering.html index 8404abf..9770d3d 100644 --- a/docs/tags/reverse-engineering.html +++ b/docs/tags/reverse-engineering.html @@ -5,6 +5,7 @@ + "Reverse-Engineering" diff --git a/docs/tags/x86.html b/docs/tags/x86.html index 7654163..d1e1d27 100644 --- a/docs/tags/x86.html +++ b/docs/tags/x86.html @@ -5,6 +5,7 @@ + "x86" diff --git a/sass/c-hyde.scss b/sass/c-hyde.scss index 1c2ba70..e955d1e 100644 --- a/sass/c-hyde.scss +++ b/sass/c-hyde.scss @@ -591,7 +591,7 @@ html { .sidebar { text-align: center; - padding: 2rem 1rem; + padding: 0.5rem 1rem; color: rgba(255,255,255,.5); background-color: #202020; } diff --git a/templates/base.html b/templates/base.html index 37265f5..d0361ce 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,6 +5,7 @@ + {% block title %}{% endblock %} -- cgit v1.2.3