unhurried

コンピュータ関連ネタがほとんど、ときどき趣味も…

2017-01-01から1年間の記事一覧

PlantUML シーケンス図

AtomでPlantUMLを編集する環境が整ったので、今回はシーケンス図のサンプルを作成しました。よく使いそうな記法を網羅するようにしていますので、記法を忘れていてもこのサンプルを修正しながら図を記述していくことができると思います。 ' コメントはシング…

PlantUML How to Install

What is PlantUML? A Language (DSL) to write UML in a text format. Supported diagrams: Sequence diagram Sequence diagram Use case diagram Class diagram Activity diagram Component diagram State diagram Object diagram Deployment diagram (Beta…

PlantUML インストール方法

これまでUMLを記述するのには、仕事でも個人でもastah* communityを利用していました。astah* communityはバージョン7.0から商用利用不可となりましたが、私のUMLの用途はシステムの概要を説明するために簡単なクラス図とシーケンス図を使っていただけでした…

Assign Zone Apex Domain to AWS ELB (ALB)

What is zone apex? Zone apex means a simplest domain, which is not a sub domain. For example, if we own a domain "example.com", "www.example.com" is not a zone apex, but "example.com" is a zone apex. CNAME can not be configured to zone ape…

AWS ELB(ALB)にZone Apexドメインを設定する

Zone Apexとは? Apexは頂点、先端という意味で、wwwなどのサブドメインのつかないドメインを意味します。 example.comというドメインを保有している場合、www.example.comはZone Apexではなく、example.comはZone Apexとなります。 Zone ApexにはCNAMEを設…

How to cope with Callback Hell #3 aa

This time I have researched aa which was introduced in Qiita (Japanese website). aa is another library like co and utilize Generator mechanizm to make it easier to wirite parallel ans serial flows. aa has some advantages to co, that is thu…

Heroku Free DynoのSleepを防止する

Herokuでは月に1000時間の稼働稼働枠がもらえますが、無料プランでは30分アプリにアクセスがないとアプリがSleep状態になってしまいます。New Relicアドオンを使って定期的にリクエストを送信することでアプリがSleep状態になることを防げますので、設定手順…

Procedure to Print with Google Cloud Print API

Recently printers connected to the Internet became common. As some of my web services required printing in the background process, I have researched Google Cloud Print API as one of printing measures. (0) Get a client ID and a client secre…

MongoDB Node.js Driver Connection Management

Points Call MongoClient.connect only once, and reuse the instance. Connection management is done by the driver and the number of connections can be specified in the option of MongoClient.connect. Sample Code db.js // Keep the mongoDB conne…

アメリカで購入できる胃薬

胃が弱いのでよく胃薬にお世話になります。 アメリカに来た当初は何を買えばよいかわからなかったので、定番を調べてみました。 Tums 気軽に飲める制酸剤。カルシウムの補給用途にも使える。 Zantac H2ブロッカーという胃酸分泌を抑制する薬。 日本の薬局で…

JAX-RSアプリをHerokuにデプロイする

Javaで実装したREST APIをHerokuにデプロイするときに少し迷ったため、今後のためにひな形としてサンプルアプリを作成しました。 github.com ポイント REST APIの実装にはJAX-RS(Java EE)のリファレンス実装であるJerseyを利用する。 Herokuのドキュメント…

MongoDB Node.JS Driver コネクション管理

Java + MySQLではどのフレームワークにも当たり前にあるコネクションプールのようなコネクション管理機能ですが、Node.js + MongoDBではどのように実装するのが常套手段なのかを調べました。 ポイント MongoClient.connectは1度のみ呼び出し、databaseインス…

Callback地獄対策 (3) aa generator

今回は、Qiitaで人気のあるCallback地獄対策の記事で紹介されているaaについて調べてみました。 aaもcoと同様にGeneratorの仕組みを利用して簡単に並列・直列処理フローを記述できるようにするライブラリです。 aaはcoと比べるとthunkify/promisifyが同じラ…