--- layout: base title: Home ---
I'm a software developer and Wikipedian currently studying computer science at the University of Illinois at Urbana–Champaign. My work mostly focuses on text parsing and analysis, but I'm also interested in programming language theory and algorithm design. Want to chat? Contact me at ben.kurtovic@gmail.com.
GitHub | Freenode IRC | Wikipedia | PGP Key | ||
earwig | Earwig | The Earwig | @the_earwig | benkurtovic | E8DBB515 |
ProjectsA look at what I've been up to for the past few years: Highlights
Other work
|
Posts
Tags:
{% comment %} Based on code from Christian Specht at http://stackoverflow.com/a/24744306/2712951 {% endcomment %}
{% capture tags %}{% for tag in site.tags %}{{ tag[1].size | plus: 1000 }}#{{ tag[0] }}#{{ tag[1].size }}{% unless forloop.last %}|{% endunless %}{% endfor %}{% endcapture %}
{% assign sorted = tags | split: "|" | sort | reverse %}
{% for tag in sorted %}
{% assign items = tag | split: "#" %}
{{ items[1] | replace: " ", " " }} ({{ items[2] }})
{% endfor %}
|