Pure gold – Bootstrap 3 Tips and Tricks You Still Might Not Know, part 1 and part 2.
Category: Programming
A big part of my work has to do with code. I’ve worked as system administrator – installing, patching, and configuring someone else’s code. I’ve worked as independent programmer, writing code on my own. I also programmed as part of the team. And on top of that, I worked as Team Leader and Project Manager, where I had to interact a lot with programmers. Programming world on its own is as huge as the universe. There is always something to learn. When I find something worthy or something that I understand enough to write about, I share it in this category.
Elevator.js
Elevator.js fixes those awkward “scroll to top” moments the old fashioned way.
Angular vs. React – the tie breaker
Angular vs. React – the tie breaker.
UPDATE (2016-09-03): You might also want to check out this article.
Types
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
);
