May 12, 2020

Generating Prime Images

Find prime number representations for any image! Read details here.




May 05, 2020

Handwritten Digit Recognition in JavaScript

Feed forward implementation of a digit recognizing Regular Deep Neural Network and a Convolutional Neural Network in JavaScript. See detailed blog post and playground here.




May 03, 2020

Evolving Snake AI

Creating a snake playing AI through genetic evolution. Detailed blog post and source code here.




April 25, 2020

Adding MathJax support to your GitHub Page

1. Configure Markdown processor in _config.yml

markdown: kramdown

2. Reference MathJax 2.x scripts and configure in your layout

<script type="text/x-mathjax-config">
         MathJax.Hub.Config({
           tex2jax: {
             inlineMath: [ ['$','$'], ["\\(","\\)"] ],
             processEscapes: true
           }
         });
       </script>
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>

3. Include your mathematical expression between $$$$

Raw LaTex Expression Rendered Version
$$ e^{i\pi} + 1 = 0 $$ \(e^{i\pi} + 1 = 0\)




April 24, 2020

GitHub Pages Rocks!

Finally, I’ve decided to put my work & thoughts on Github Pages. No hassle, free of charge environment. No server management, no html/css mumbo-jumbo. A little bit Jekyll and Markdown, then you’re good to go.

Content > Style

If you’re not OK with ready to use templates, you can always customize! Check this out: Customizing your themes html layout

I’ll monkey around to get used into here and share my notes as I learn more. :tada: