Location: Gulya’s Bar & Restaurant
Year: 2015
Compensation
Something absolutely stunningly incredible happened yoday. Compensated for years of corporate slavery. World changingly awesome. Mind blowing. Will probably forget about this tomorrow or tell you all about it next week. Regardless – WOW!
P.S. : Mihai, I probably owe you a pint or two. :)
Types
Business meeting
RT initialdata and Perl’s nested map
Request Tracker (aka RT) comes with a very powerful, yet not too widely known tool – initialdata.  This helps with automating configuration of the new system and data migration.  Combined with the power of Perl’s map() function, some really awesome things can be done in a jiffy.
Here is a snippet I’ve used recently, to set a list of access rights to a list of queues:
push @ACL, map { my $queue = $_; map { { GroupDomain => 'SystemInternal', GroupType => 'Everyone', Queue => $queue, Right => $_, } } qw( CreateTicket ReplyToTicket ) } qw( dpt-Support-EN dpt-Support-RU dpt-Support-FR );