The document lists a large number of Grunt plugins and tasks that have been developed for the Grunt task runner ecosystem. It notes that the ecosystem around Grunt has developed tremendously and lists many contrib plugins, third party plugins, and tasks that have been created to help automate workflow tasks like concatenation, minification, linting, testing and more.
Time Series Analysis by JavaScript LL matsuri 2013 Daichi Morifuji
This document discusses time series analysis and visualization using JavaScript. It introduces Series.js, a utility library for time series data that provides methods for aggregation, statistics, and visualization. Sample time series CPU and memory usage data is provided, and it is summarized using Series.js methods to aggregate the data by minute. Future work includes improving performance, documentation, and client-side capabilities of Series.js.
The document is a 20 page comparison of ETL tools. It includes an introduction, descriptions of 4 ETL tools (Pentaho Kettle, Talend, Informatica PowerCenter, Inaplex Inaport), and a section comparing the tools on various criteria such as cost, ease of use, speed and data quality. The comparison chart suggests Informatica PowerCenter is the fastest and most full-featured tool while open source options like Pentaho Kettle and Talend offer lower costs but require more manual configuration.
This is the presentation which I explain at the Japanese Java Users Conference Annual Technology Conference is called JJUG CCC 2025 Spring.
In this presentation, I introduced the development productivity using GitHub Copilot. And How to implement Enterprise AI Java application by using LangChain4j. Finally I introduced easy of use and install the SLM(Small Language Model) on your edge device by using Azure AI Foundry Local.
38. Perl Data Language
standard Perl the ability to compactly store and
speedily manipulate the large N-dimensional
data arrays which are the bread and butter of
scientific computing.
PDL turns Perl into a free, array-oriented,
numerical language similar to (but, we believe,
better than) such commercial packages as IDL
and MatLab. One can write simple perl
3813年9月21日土曜日
39. Perl Data Language
standard Perl the ability to compactly store and
speedily manipulate the large N-dimensional
data arrays which are the bread and butter of
scientific computing.
PDL turns Perl into a free, array-oriented,
numerical language similar to (but, we believe,
better than) such commercial packages as IDL
and MatLab. One can write simple perl
3913年9月21日土曜日
40. Perl Data Language
standard Perl the ability to compactly store and
speedily manipulate the large N-dimensional
data arrays which are the bread and butter of
scientific computing.
PDL turns Perl into a free, array-oriented,
numerical language similar to (but, we believe,
better than) such commercial packages as IDL
and MatLab. One can write simple perl
We want
Hash Object
4013年9月21日土曜日
41. #!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper;
use PDL;
my $obj;
$obj = pdl([[1,2,3],[4,5,6]]);
print $obj;
# [
# [1 2 3]
# [4 5 6]
# ]
$obj = pdl([{a => 1, b => 2, c => 3}, {a => 4, b => 5, c => 6}]);
# Hash given as a pdl - but not {PDL} key! at Basic/Core/
Core.pm.PL (i.e. PDL::Core.pm) line 1292.
# 工エェ(´Д`)ェエ工
4113年9月21日土曜日
50. Data::Cube 1. Data
Date Country SalesPerson Product Units Unit_Cost Total
3/15/2005 US Sorvino Pencil 56 2.99 167.44
3/7/2006 US Sorvino Binder 7 19.99 139.93
8/24/2006 US Sorvino Desk 3 275.00 825.00
9/27/2006 US Sorvino Pen 76 1.99 151.24
5/22/2005 US Thompson Pencil 32 1.99 63.68
10/14/2006 US Thompson Binder 57 19.99 1139.43
4/18/2005 US Andrews Pencil 75 1.99 149.25
4/10/2006 US Andrews Pencil 66 1.99 131.34
10/31/2006 US Andrews Pencil 114 1.29 147.06
5013年9月21日土曜日
51. Data::Cube 2. Usage
my $file = shift;
my $data = Text::CSV::Slurp->load(file => $file);
my $cube;
say "============================================================";
say "raw data size: ".(scalar @$data)."n";
say "n============================================================";
$cube = new Data::Cube("experience");
$cube->put($data);
say Dumper $cube->rollup(noValues => 1);
say "n============================================================";
$cube->add_dimension("skill");
say Dumper $cube->rollup(noValues => 1);
5113年9月21日土曜日
52. Data::Cube 2. Usage
my $file = shift;
my $data = Text::CSV::Slurp->load(file => $file);
my $cube;
say "============================================================";
say "raw data size: ".(scalar @$data)."n";
say "n============================================================";
$cube = new Data::Cube("experience");
$cube->put($data);
say Dumper $cube->rollup(noValues => 1);
say "n============================================================";
$cube->add_dimension("skill");
say Dumper $cube->rollup(noValues => 1);
たったのこれだけ
5213年9月21日土曜日
64. Summary: Example
Time Series
sales, repeat rate, DAU, system info, activities
Effects of trial / campaign
attribution, condition, cost, cash back, etc.
6413年9月21日土曜日