Projects
In my free time I love to write pet projects, some useful, some less so, which I publish on Github. Here are some of them.
Toot
A commandline tool for interacting with Mastodon instances, including a curses-based UI.
hnbex-cli
A commandline tool which displays exchange rates for Croatian Kuna (HRK).
PDF417 barcode generator
Generator for PDF417 2D barcodes in Python and PHP.
github.com/ihabunek/pdf417-py
github.com/ihabunek/pdf417-php
HUB3 Barcode API
An API for generating 2D barcodes according to the HUB-3 standard, as defined by the Croatian National Bank.
hub3.bigfish.software/
github.com/ihabunek/hub3-api
GitHub Vanity
Write to your GitHub activity chart.
github.com/ihabunek/github-vanity
Phormium
A minimal ORM for PHP, written because none of the popular ones worked well with Informix.
<?php
$persons = Person::objects()
->filter('salary', '>', 10000)
->filter('birthday', 'between', ['2000-01-01', '2001-01-01'])
->orderBy('name', 'desc')
->limit(100)
->fetch();
Radio scraper
A web site for collecting radio playlists and showing some statistics, implemented in Python/Django.