Skip to content

Instantly share code, notes, and snippets.

View kovpas's full-sized avatar
🌴
OOO

Pavel 'Pasha' Mazurin kovpas

🌴
OOO
View GitHub Profile
@kovpas
kovpas / 30-income-calculon.pl
Last active January 16, 2018 14:56 — forked from avar/30-income-calculon.pl
Calculate your income in The Netherlands with and without a 30% ruling
# To check if this is up-to-date with the tax rates go to
# http://www.expatax.nl/tax_rates_2013.php and see if there's anything
# newer there.
use strict;
use warnings;
use Text::TabularDisplay;
use List::Util qw(sum);
my $start = 30_000 || $ARGV[0];
my $end = 100_000 || $ARGV[1];