layout | permalink | title |
---|---|---|
archive |
/ |
On a mission to learn everything, sharing everything I learn!
Previous projects:
- I made 100 daily video blogs in 100 days to share what I'm learning -- both about myself and about the world -- as an experiment to fight my fears, gain self-acceptance, and channel my curiosity!
- December 2015 was my math immersion month, a daily video blog experiment to conquer my math anxiety and not only learn some math, but also learn to love it!
{% for post in site.posts %}
{% if post.cats contains 'featured' %}
{% include post-list.html %}
{% endif %}
{% endfor %}
{% for post in site.posts %}
{% unless post.cats contains 'featured' %}
{% include post-list.html %}
{% endunless %}
{% endfor %}