- Write the slide in markdown.
- Upload the slide to internet in accessible publicly.
- Access to manager and fill-in the URL for the slide.
- Submit the form. Then, access to Slide Page.
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 utf8; | |
use Net::Azure::EventHubs; | |
### EventHubsの接続文字列をここに入れる | |
my $connection_string = '...'; | |
### EventHubs向けにイベントを送るClientを作る | |
my $client = Net::Azure::EventHubs->new( |
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 utf8; | |
use JSON::PP; | |
use Encode; | |
### タイムゾーン定義 / Azure Functionsでは必須。 | |
BEGIN { | |
$ENV{TZ} = "JST-9"; | |
}; |
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 JSON; | |
use LWP::UserAgent; | |
use URI; | |
use utf8; | |
my $keyword = 'Serverless'; | |
my $baseurl = "https://connpass.com/api/v1/event/"; |
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
requires 'JSON'; | |
requires 'LWP::UserAgent'; | |
requires 'LWP::Protocol::https'; |
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
Installing 5.20.3 as 5.20.3 | |
/usr/bin/perl -- /home/ytnobody/.plenv/plugins/perl-build/bin/perl-build --symlink-devel-executables --build-dir /home/ytnobody/.plenv/build/1478189183.32125/ --tarball-dir /home/ytnobody/.plenv/cache/ -Dusedevel 5.20.3 /home/ytnobody/.plenv/versions/5.20.3 | |
Use the previously fetched perl-5.20.3.tar.gz | |
Configuring perl '5.20.3' | |
rm -f config.sh Policy.sh | |
Auto-guessed '5.20.3' | |
patching Configure | |
File Configure is read-only; trying to patch anyway | |
sh Configure -Dprefix=/home/ytnobody/.plenv/versions/5.20.3 -de -Dusedevel -A'eval:scriptdir=/home/ytnobody/.plenv/versions/5.20.3/bin' | |
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
tutum_container_uuid () { | |
service_name=$1 | |
tutum service inspect $(tutum service ps | awk '$1=="'$service_name'"{print($2);}') | | |
awk ' | |
/"containers": \[/, /\]/ { | |
if ($0 ~ /\/api\/v1\/container\//) { | |
split($1, flagment, "/"); | |
print(substr(flagment[5],1,8)); | |
} | |
} |
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
package Oreore; | |
use Data::Dumper; | |
sub oredayo { | |
my $args = [@_]; | |
{ | |
local @{caller.'::_'} = (qw/hoge piyo/); | |
print Dumper($args); ### => ['foo', 'bar'] | |
print Dumper([@_]); ### => ['hoge', 'piyo'] | |
}; |
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
# BigQuery | |
### の解析結果を | |
# 別のストレージ | |
### に格納したいぞい | |
@ytnobody | |
--- | |
## わいとんさんです |