Interactive tool for creating directed graphs, created using d3.js.
Demo: http://bl.ocks.org/cjrd/6863459
Operation:
- drag/scroll to translate/zoom the graph
| use strict; | |
| use warnings; | |
| use ExtUtils::MakeMaker; | |
| WriteMakefile( | |
| NAME => 'dario', | |
| AUTHOR => q{YOUR NAME <[email protected]>}, | |
| VERSION_FROM => 'lib/dario.pm', | |
| ABSTRACT => 'YOUR APPLICATION ABSTRACT', | |
| ($ExtUtils::MakeMaker::VERSION >= 6.3002 |
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use Text::CSV; | |
| my @columns = ''; | |
| my $region = ''; | |
| my $valore = ''; | |
| my @lac1 = ''; | |
| my @lac2 = ''; |
| use strict; | |
| use warnings; | |
| use Test::More import => ['!pass'], 'no_plan'; | |
| use Dancer ':syntax'; | |
| use Dancer::Test; | |
| setting template => 'template_toolkit'; | |
| ok(get('/' => sub { template root => {who => 'root'} }), 'root route'); | |
| route_exists [GET => $_] for qw( / ); |
| #!/bin/bash | |
| function die () { | |
| echo "$*" >&2 | |
| exit 1 | |
| } | |
| basedir=$(dirname "$0") | |
| basedir=$(readlink -f "$basedir") | |
| cd "$basedir" || die "cannot hop into $basedir" |
| <p>To suggest a talk, please use <a class="reference" href="/ipw2012/newtalk">the web interface</a>. All proposals must be | |
| submitted by <strike>June 20th, 2011</strike> <strong>August 1st, 2011</strong>.</p> | |
| <p>This year's theme for the workshop is <strong>Two Perls</strong>, | |
| which wants to put relevance both on Perl 5 and Perl 6. | |
| The topic is, however, just a loose guideline: | |
| any Perl-related topic will be fine. Some interesting topics | |
| could be:</p> | |
| <ul> |
| # This is the sample program I'm using. $res->to_string() is called | |
| # only if the URI is something like /<true-value>, and is not | |
| # called when the URI is / | |
| use Mojolicious::Lite; | |
| hook after_dispatch => sub { | |
| my ($c) = @_; | |
| my $res = $c->res(); | |
| $res->to_string() if $c->stash('what'); | |
| $res->headers->header(Server => 'AnotherServer'); |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Mojolicious::Lite; | |
| use Data::Dumper; | |
| $Data::Dumper::Indent = 1; | |
| my $uri = 'http://mojolicious.org'; | |
| plugin Minion => {SQLite => 'sqlite:test4bug.db'}; |
Interactive tool for creating directed graphs, created using d3.js.
Demo: http://bl.ocks.org/cjrd/6863459
Operation:
When you set Let's Encrypt up, you will:
domain.keydomain.crtThe domain.key file is for your eyes only; you should keep it safe where you run taskd
and set server.key to point to it.
| 2017-05-19 14:13:27,549 p=781 u=root | Using /kargo/ansible.cfg as config file | |
| 2017-05-19 14:13:31,010 p=781 u=root | PLAY [localhost] ************************************************************************************************************************************************ | |
| 2017-05-19 14:13:31,027 p=781 u=root | TASK [kargo-defaults : Configure defaults] ********************************************************************************************************************** | |
| 2017-05-19 14:13:31,027 p=781 u=root | Friday 19 May 2017 14:13:31 +0000 (0:00:00.021) 0:00:00.021 ************ | |
| 2017-05-19 14:13:31,047 p=781 u=root | ok: [localhost] => { | |
| "changed": false, | |
| "msg": "Check roles/kargo-defaults/defaults/main.yml" | |
| } | |
| 2017-05-19 14:13:31,049 p=781 u=root | TASK [bastion-ssh-config : set_fact] **************************************************************************************************************************** | |
| 2017-05-19 14:13:31,049 p=781 u=root | Friday 19 May 2017 14:13:31 +000 |