layout |
---|
home |
This site is a personal set of tech notes that I've collected across lots of different tech topics, from programming to system administration. It's a collection of things that I've learned, and want to share publicly.
I try to keep it updated whenever I'm working on something new. However, you might find that information on certain technologies is quite out-of-date, especially if I've not worked with the technology for a while.
For more info about this site, and why you should start a blog of your own, [check out the about page][about].
{% assign pages_list = site.articles | sort_natural:"title" %}
{% for page in pages_list %}
{% unless page.url contains "private/" %}
{% if page.title %}
<li>
<a href="{{ page.url | relative_url }}">{{ page.title | escape }}</a>
</li>
{% endif %}
{% endunless %}
{% endfor %}
Full examples, web demos, and code snippets.
{% for category in site.data.examples %}
-
{% for example in category.examples %}
- {{ example.title | escape }} — {{ example.description }} {% endfor %}
{% endfor %}
[about]: {{ site.baseurl }}{% link about.md %}