This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage[utf8]{inputenc} | |
\usepackage{tocloft} | |
\title{42} | |
\author{Jane Doe} | |
\date{June 2011} | |
\begin{document} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cpanm (App::cpanminus) 1.7001 on perl 5.020001 built for x86_64-linux-thread-multi | |
Work directory is /home/jason/.cpanm/work/1430700355.28863 | |
You have make /usr/bin/make | |
You have LWP 6.13 | |
You have /bin/tar: tar (GNU tar) 1.27.1 | |
Copyright (C) 2013 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cpanm (App::cpanminus) 1.7001 on perl 5.020001 built for x86_64-linux-thread-multi | |
Work directory is /home/jason/.cpanm/work/1430700662.29697 | |
You have make /usr/bin/make | |
You have LWP 6.13 | |
You have /bin/tar: tar (GNU tar) 1.27.1 | |
Copyright (C) 2013 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with basequery as ( | |
select customer_name, | |
product_code, | |
sum(sales_qty) as sales_qty, | |
convert(varchar(2),datediff(month, invoice_date, DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()), 0))) as [age] | |
from sh_select_trans_view | |
where customer_name is not null | |
and invoice_date >= DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE())-13, 0) -- rolling 13 month |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; This buffer is for notes you don't want to save, and for Lisp evaluation. | |
;; If you want to create a file, visit that file with C-x C-f, | |
;; then enter the text in that file's own buffer. | |
http://p.hagelb.org/actnotes.pl.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use utf8; | |
use strict; | |
use warnings; | |
use DBI; | |
use Data::Dumper; | |
use Text::CSV; | |
use File::Slurper 'read_text'; | |
use RTF::TEXT::Converter; | |
use 5.22.0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Test::More tests => 7; | |
use Test::WWW::Mechanize::PSGI; | |
use_ok 'Reports'; | |
my %routes = ('/', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Test::More tests => 7; | |
use Test::WWW::Mechanize::PSGI; | |
use_ok 'Reports'; | |
my %routes = ('/' => undef, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Test::More tests => 7; | |
use Test::WWW::Mechanize::PSGI; | |
use_ok 'Reports'; | |
my %routes = ('/' => undef, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# dbic loader options | |
loader_options: | |
dump_directory: ./lib | |
components: InflateColumn::DateTime | |
components: TimeStamp | |
constraint: | |
qr/.*/: qr/\Ain_product\z/ | |