summaryrefslogtreecommitdiff
path: root/docs/tags/Tutorial.html
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2024-04-26 01:40:37 -0600
committerNavan Chauhan <navanchauhan@gmail.com>2024-04-26 01:40:37 -0600
commit0f8da47c5dadb8970cb1283f8d51eda652faf7c4 (patch)
tree762ffa6a57d78340d23d7588eca23e72d7362903 /docs/tags/Tutorial.html
parentd5672384e19f43ea0963a757d3fa569513f87af6 (diff)
re-add
Diffstat (limited to 'docs/tags/Tutorial.html')
-rw-r--r--docs/tags/Tutorial.html601
1 files changed, 601 insertions, 0 deletions
diff --git a/docs/tags/Tutorial.html b/docs/tags/Tutorial.html
new file mode 100644
index 0000000..80ac64f
--- /dev/null
+++ b/docs/tags/Tutorial.html
@@ -0,0 +1,601 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta http-equiv="content-type" content="text/html; charset=utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="theme-color" content="#6a9fb5">
+
+ <title>"Tutorial"</title>
+
+ <!--
+ <link rel="stylesheet" href="https://unpkg.com/latex.css/style.min.css" />
+ -->
+
+ <link rel="stylesheet" href="/assets/c-hyde.css">
+
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abril+Fatface">
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700">
+
+ <link rel="stylesheet" href="/assets/main.css">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="og:site_name" content="Navan Chauhan">
+ <link rel="canonical" href="https://web.navan.dev">
+ <meta name="twitter:url" content="https://web.navan.dev">
+ <meta name="og:url" content="https://web.navan.dev">
+ <meta name="twitter:title" content="Hey - Home">
+ <meta name="og:title" content="Hey - Home">
+ <meta name="description" content="code snippets, long-form rants, and tutorials">
+ <meta name="twitter:description" content="code snippets, long-form rants, and tutorials">
+ <meta name="og:description" content="code snippets, long-form rants, and tutorials">
+ <meta name="twitter:card" content="summary_large_image">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="shortcut icon" href="/images/favicon.png" type="image/png">
+ <link href="/feed.rss" type="application/atom+xml" rel="alternate" title="Sitewide Atom feed">
+ <meta name="twitter:image" content="https://web.navan.dev/images/logo.png">
+ <meta name="og:image" content="https://web.navan.dev/images/logo.png">
+ <meta name="google-site-verification" content="LVeSZxz-QskhbEjHxOi7-BM5dDxTg53x2TwrjFxfL0k">
+ <script data-goatcounter="https://navanchauhan.goatcounter.com/count"
+ async src="//gc.zgo.at/count.js"></script>
+ <script defer data-domain="web.navan.dev" src="https://plausible.io/js/plausible.js"></script>
+ <link rel="manifest" href="/manifest.json">
+
+</head>
+<body class="theme-base-0d">
+ <div class="sidebar">
+ <div class="container sidebar-sticky">
+ <div class="sidebar-about">
+ <h1><a href="/">Navan</a></h1>
+ <p class="lead" id="random-lead">Alea iacta est.</p>
+ </div>
+
+ <ul class="sidebar-nav">
+ <li><a class="sidebar-nav-item" href="/about/">about/links</a></li>
+ <li><a class="sidebar-nav-item" href="/posts/">posts</a></li>
+ <li><a class="sidebar-nav-item" href="/3D-Designs/">3D designs</a></li>
+ <li><a class="sidebar-nav-item" href="/feed.rss">RSS Feed</a></li>
+ <li><a class="sidebar-nav-item" href="/colophon/">colophon</a></li>
+ </ul>
+ <div class="copyright"><p>&copy; 2019-2024. Navan Chauhan <br> <a href="/feed.rss">RSS</a></p></div>
+ </div>
+</div>
+
+<script>
+let phrases = [
+ "Something Funny", "Veni, vidi, vici", "Alea iacta est", "In vino veritas", "Acta, non verba", "Castigat ridendo mores",
+ "Cui bono?", "Memento vivere", "अहम् ब्रह्मास्मि", "अनुगच्छतु प्रवाहं", "चरन्मार्गान्विजानाति", "coq de cheval", "我愛啤酒"
+ ];
+
+let new_phrase = phrases[Math.floor(Math.random()*phrases.length)];
+
+let lead = document.getElementById("random-lead");
+lead.innerText = new_phrase;
+</script>
+ <div class="content container">
+
+
+<main>
+ <h1>Tutorial</h1><p>Posts tagged 'Tutorial'</p>
+</main>
+
+<ul>
+
+ <li><a href="/posts/2024-04-17-implementing-minimax-for-chess-in-swift.html">Implementing Minimax with Alpha-Beta pruning for a simple Chess AI in Swift</a>
+ <ul>
+ <li>Adding a bestMove method to swift-chess-neo by implementing alpha-beta pruning for minimax</li>
+ <li>Published On: 2024-04-17 23:20</li>
+ <li>Tags:
+
+ <a href='/tags/Chess.html'>Chess</a>,
+
+ <a href='/tags/Game-Theory.html'>Game-Theory</a>,
+
+ <a href='/tags/Mathematics.html'>Mathematics</a>,
+
+ <a href='/tags/Swift.html'>Swift</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2024-03-28-Running-ADFRSuite-on-arm64-Macs.html">Fixing ADFRSuite for Apple Silicon</a>
+ <ul>
+ <li>Fixing ADFRsuite on M1/MX chip Macs - CLI Tools</li>
+ <li>Published On: 2024-03-28 20:12</li>
+ <li>Tags:
+
+ <a href='/tags/Cheminformatics.html'>Cheminformatics</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/macOS.html'>macOS</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2024-03-21-Polynomial-Regression-in-TensorFlow-2.html">Polynomial Regression Using TensorFlow 2.x</a>
+ <ul>
+ <li>Predicting n-th degree polynomials using TensorFlow 2.x</li>
+ <li>Published On: 2024-03-21 12:46</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/Tensorflow.html'>Tensorflow</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2024-03-15-setting-up-macos-for-8088-dos-dev.html">Cross-Compiling Hello World for DOS on macOS</a>
+ <ul>
+ <li>This goes through compiling Open Watcom 2 and creating simple hello-world exampls</li>
+ <li>Published On: 2024-03-15 13:16</li>
+ <li>Tags:
+
+ <a href='/tags/DOS.html'>DOS</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/macOS.html'>macOS</a>,
+
+ <a href='/tags/x86.html'>x86</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2024-02-26-control-element-under-another-element-html-css.html">Interacting with underlying element in HTML</a>
+ <ul>
+ <li>With CSS you can disable any interactions with an element and directly control the underlying element</li>
+ <li>Published On: 2024-02-26 11:57</li>
+ <li>Tags:
+
+ <a href='/tags/CSS.html'>CSS</a>,
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/HTML.html'>HTML</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2023-10-05-attack-lab.html">Attack Lab</a>
+ <ul>
+ <li>Walkthrough of Attack Lab Phases 1-4 for CSCI 2400 Computer Systems</li>
+ <li>Published On: 2023-10-05 20:01</li>
+ <li>Tags:
+
+ <a href='/tags/Assembly.html'>Assembly</a>,
+
+ <a href='/tags/C++.html'>C++</a>,
+
+ <a href='/tags/CSCI2400.html'>CSCI2400</a>,
+
+ <a href='/tags/Reverse-Engineering.html'>Reverse-Engineering</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/gdb.html'>gdb</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2023-10-04-bomb-lab.html">Bomb Lab</a>
+ <ul>
+ <li>Walkthrough of Phases 1-6 of Bomb Lab for CSCI 2400 Computer Systems Lab 2</li>
+ <li>Published On: 2023-10-04 13:12</li>
+ <li>Tags:
+
+ <a href='/tags/Assembly.html'>Assembly</a>,
+
+ <a href='/tags/C++.html'>C++</a>,
+
+ <a href='/tags/CSCI2400.html'>CSCI2400</a>,
+
+ <a href='/tags/Reverse-Engineering.html'>Reverse-Engineering</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/gdb.html'>gdb</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2023-02-08-Interact-with-siri-from-the-terminal.html">Interacting with Siri using the command line</a>
+ <ul>
+ <li>Code snippet to interact with Siri by issuing commands from the command-line.</li>
+ <li>Published On: 2023-02-08 17:21</li>
+ <li>Tags:
+
+ <a href='/tags/AppleScript.html'>AppleScript</a>,
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/Python.html'>Python</a>,
+
+ <a href='/tags/Siri.html'>Siri</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/macOS.html'>macOS</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2022-12-25-blog-to-toot.html">Posting blogs as Mastodon Toots</a>
+ <ul>
+ <li>Cross posting blog posts to Mastodon</li>
+ <li>Published On: 2022-12-25 17:32</li>
+ <li>Tags:
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/Mastodon.html'>Mastodon</a>,
+
+ <a href='/tags/Python.html'>Python</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2022-05-21-Similar-Movies-Recommender.html">Building a Similar Movies Recommendation System</a>
+ <ul>
+ <li>Building a Content Based Similar Movies Recommendatiom System</li>
+ <li>Published On: 2022-05-21 17:56</li>
+ <li>Tags:
+
+ <a href='/tags/Python.html'>Python</a>,
+
+ <a href='/tags/Recommendation-System.html'>Recommendation-System</a>,
+
+ <a href='/tags/Transformers.html'>Transformers</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2021-06-27-Crude-ML-AI-Powered-Chatbot-Swift.html">Making a Crude ML Powered Chatbot in Swift using CoreML</a>
+ <ul>
+ <li>Writing a simple Machine-Learning powered Chatbot (or, daresay virtual personal assistant ) in Swift using CoreML.</li>
+ <li>Published On: 2021-06-27 23:26</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/CoreML.html'>CoreML</a>,
+
+ <a href='/tags/NLP.html'>NLP</a>,
+
+ <a href='/tags/Swift.html'>Swift</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2021-06-25-Blog2Twitter-P1.html">Posting Blog Posts as Twitter Threads Part 1/n</a>
+ <ul>
+ <li>Converting Posts to Twitter Threads</li>
+ <li>Published On: 2021-06-25 00:08</li>
+ <li>Tags:
+
+ <a href='/tags/Python.html'>Python</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/Twitter.html'>Twitter</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-12-1-HTML-JS-RSS-Feed.html">RSS Feed written in HTML + JavaScript</a>
+ <ul>
+ <li>Short code-snippet for an RSS feed, written in HTML and JavaScript</li>
+ <li>Published On: 2020-12-01 20:52</li>
+ <li>Tags:
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/HTML.html'>HTML</a>,
+
+ <a href='/tags/JavaScript.html'>JavaScript</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-11-17-Lets-Encrypt-DuckDns.html">Generating HTTPS Certificate using DNS a Challenge through Let's Encrypt</a>
+ <ul>
+ <li>Short code-snippet to generate HTTPS certificates using the DNS Challenge through Lets Encrypt for a web-server using DuckDNS.</li>
+ <li>Published On: 2020-11-17 15:04</li>
+ <li>Tags:
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/Web-Development.html'>Web-Development</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-10-11-macOS-Virtual-Cam-OBS.html">Trying Different Camera Setups</a>
+ <ul>
+ <li>Comparison of different cameras setups for using as a webcam and tutorials for the same.</li>
+ <li>Published On: 2020-10-11 16:12</li>
+ <li>Tags:
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/macOS.html'>macOS</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-08-01-Natural-Feature-Tracking-ARJS.html">Introduction to AR.js and Natural Feature Tracking</a>
+ <ul>
+ <li>An introduction to AR.js and NFT</li>
+ <li>Published On: 2020-08-01 15:43</li>
+ <li>Tags:
+
+ <a href='/tags/AR.js.html'>AR.js</a>,
+
+ <a href='/tags/Augmented-Reality.html'>Augmented-Reality</a>,
+
+ <a href='/tags/JavaScript.html'>JavaScript</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-07-01-Install-rdkit-colab.html">Installing RDKit on Google Colab</a>
+ <ul>
+ <li>Install RDKit on Google Colab with one code snippet.</li>
+ <li>Published On: 2020-07-01 14:23</li>
+ <li>Tags:
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/RDKit.html'>RDKit</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-05-31-compiling-open-babel-on-ios.html">Compiling Open Babel on iOS</a>
+ <ul>
+ <li>Compiling Open Babel on iOS</li>
+ <li>Published On: 2020-05-31 23:30</li>
+ <li>Tags:
+
+ <a href='/tags/Cheminformatics.html'>Cheminformatics</a>,
+
+ <a href='/tags/Jailbreak.html'>Jailbreak</a>,
+
+ <a href='/tags/Open-Babel.html'>Open-Babel</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/iOS.html'>iOS</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-04-13-Fixing-X11-Error-AmberTools-macOS.html">Fixing X11 Error on macOS Catalina for AmberTools 18/19</a>
+ <ul>
+ <li>Fixing Could not find the X11 libraries; you may need to edit config.h, AmberTools macOS Catalina</li>
+ <li>Published On: 2020-04-13 11:41</li>
+ <li>Tags:
+
+ <a href='/tags/Cheminformatics.html'>Cheminformatics</a>,
+
+ <a href='/tags/Molecular-Dynamics.html'>Molecular-Dynamics</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>,
+
+ <a href='/tags/macOS.html'>macOS</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-03-03-Playing-With-Android-TV.html">Tinkering with an Android TV</a>
+ <ul>
+ <li>Tinkering with an Android TV</li>
+ <li>Published On: 2020-03-03 18:37</li>
+ <li>Tags:
+
+ <a href='/tags/Android.html'>Android</a>,
+
+ <a href='/tags/Android-TV.html'>Android-TV</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-01-16-Image-Classifier-Using-Turicreate.html">Creating a Custom Image Classifier using Turicreate to detect Smoke and Fire</a>
+ <ul>
+ <li>Tutorial on creating a custom Image Classifier using Turicreate and a dataset from Kaggle</li>
+ <li>Published On: 2020-01-16 10:36</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/Turicreate.html'>Turicreate</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2020-01-15-Setting-up-Kaggle-to-use-with-Colab.html">Setting up Kaggle to use with Google Colab</a>
+ <ul>
+ <li>Tutorial on setting up kaggle, to use with Google Colab</li>
+ <li>Published On: 2020-01-15 23:36</li>
+ <li>Tags:
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/Kaggle.html'>Kaggle</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2019-12-22-Fake-News-Detector.html">Building a Fake News Detector with Turicreate</a>
+ <ul>
+ <li>In this tutorial we will build a fake news detecting app from scratch, using Turicreate for the machine learning model and SwiftUI for building the app</li>
+ <li>Published On: 2019-12-22 11:10</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/Swift.html'>Swift</a>,
+
+ <a href='/tags/SwiftUI.html'>SwiftUI</a>,
+
+ <a href='/tags/Turicreate.html'>Turicreate</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2019-12-16-TensorFlow-Polynomial-Regression.html">Polynomial Regression Using TensorFlow</a>
+ <ul>
+ <li>Polynomial regression using TensorFlow</li>
+ <li>Published On: 2019-12-16 14:16</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/Tensorflow.html'>Tensorflow</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2019-12-10-TensorFlow-Model-Prediction.html">Making Predictions using Image Classifier (TensorFlow)</a>
+ <ul>
+ <li>Making predictions for image classification models built using TensorFlow</li>
+ <li>Published On: 2019-12-10 11:10</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Code-Snippet.html'>Code-Snippet</a>,
+
+ <a href='/tags/Tensorflow.html'>Tensorflow</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2019-12-08-Image-Classifier-Tensorflow.html">Creating a Custom Image Classifier using Tensorflow 2.x and Keras for Detecting Malaria</a>
+ <ul>
+ <li>Tutorial on creating an image classifier model using TensorFlow which detects malaria</li>
+ <li>Published On: 2019-12-08 14:16</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Colab.html'>Colab</a>,
+
+ <a href='/tags/Tensorflow.html'>Tensorflow</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2019-12-04-Google-Teachable-Machines.html">Image Classifier With Teachable Machines</a>
+ <ul>
+ <li>Tutorial on creating a custom image classifier quickly with Google Teachable Machines</li>
+ <li>Published On: 2019-12-04 18:23</li>
+ <li>Tags:
+
+ <a href='/tags/AI.html'>AI</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+ <li><a href="/posts/2019-05-05-Custom-Snowboard-Anemone-Theme.html">Creating your own custom theme for Snowboard or Anemone</a>
+ <ul>
+ <li>Tutorial on creating your own custom theme for Snowboard or Anemone</li>
+ <li>Published On: 2019-05-05 12:34</li>
+ <li>Tags:
+
+ <a href='/tags/Anemone.html'>Anemone</a>,
+
+ <a href='/tags/Designing.html'>Designing</a>,
+
+ <a href='/tags/Jailbreak.html'>Jailbreak</a>,
+
+ <a href='/tags/Snowboard.html'>Snowboard</a>,
+
+ <a href='/tags/Tutorial.html'>Tutorial</a>
+
+ </ul>
+ </li>
+
+
+</ul>
+
+
+ </div>
+ <script src="assets/manup.min.js"></script>
+ <script src="/pwabuilder-sw-register.js"></script>
+</body>
+</html> \ No newline at end of file