2012-11-01から1ヶ月間の記事一覧
自分が新人エンジニアの時に読んだ + これも読んでおいたほうがよかったな、というセレクト。 今年度があと4ヶ月強で終わってしまうけど、その辺は気にせずに^^ Perlを主に使うアプリケーションエンジニア想定。 Perl プログラミングPerl〈VOLUME1〉作者: ラ…
Nginxとは Nginx is known for its high performance, stability, rich feature set, simple configuration, and low resource consumption. Unlike traditional servers, Nginx doesn't rely on threads to handle requests. Instead it uses a much more s…
いろんなWAFに触れて知見を深めよう第一弾としてのMojo。 Hello World use strict; use warnings; use Mojolicious::Lite; get '/' => {text => 'Hello World!'}; app->start; と書いて $ morbo hello_mojo.pl [Sat Nov 10 09:44:52 2012] [info] Listening …
IPC::Cmdを使えばすっきり書けそうなのだが、コアモジュールに入ったのはv5.9.5から。 $ corelist -a IPC::Cmd IPC::Cmd was first released with perl v5.9.5 IPC::Cmdを使わないとするならこんな感じか。 #!/usr/bin/perl use strict; use warnings; my $p…
余裕がある How should I say "余裕がある" in English? have room to breath wiggle room elbow room leeway I.e. I have a bit elbow room this week. 市場調査をする (do | carry out | perform) market research. nn, interesting.
リクエスト http://localhost:8983/solr/select?indent=on&version=2.2&q=*.*&fq=&start=2&rows=2&fl=id%2Cscore&wt=&explainOther=&hl.fl= indent: XMLのインデント有無 version:XMLバージョン q: クエリパラメタ fq: フィルタクエリ(絞り込み) start: 開…
PlantUMLは UMLを描くためのJava製オープンソースツール です。 インストール Mac OSには標準でjavaが入ってるはずなので、jarをダウンロードしてくるだけでok。 jarはhttp://sourceforge.net/projects/plantuml/files/plantuml.jar/download からダウンロー…