Kengo's blog

Technical articles about original projects, JVM, Static Analysis and TypeScript.

Entries from 2012-06-01 to 1 month

備忘・チームについて

考えがまとまらないので文書化。こういうメモを母語以外で書くのはまだハードルが高い(´・ω・`) 生産性・工数といった曖昧な表現が含まれるのはご愛嬌ということで……。 チームを語る上での前提条件 要求は外部から、動機は内部から 仕事は外から降ってくるが…

Why I dislike dislike

I think all of us has a original world, and visiting other world is valuable and interesting. Dislike other person is same to stop visiting other world, so I think it isn't productive and constructive. Disliking other culture and genre is …

Combinators in Guava libraries

Do you want to use combinators in Java code? Guava libraries provide them for you. Iterators.filter(unfiltered, predicate); Iterators.transform(fromIterator, function); Maps.filterKeys(unfiltered, keyPredicate); Maps.filterValues(unfiltere…

Is Maven3 in attic?

I found a tiny problem of latest Maven3 last week. I issued at official Jira, but currently there is no discussions. And I found that no issues are closed in the last 30 days. Maven 2 & 3 - jira.codehaus.org It looks strange because I know…

jenkins-regression-report-plugin is released at Jenkins plugin manager

Today jenkins-regression-report-plugin is released at Jenkins plugin manager. Thanks for jenkins folks! Wiki page is here. I'll release 1.1 ASAP. Regression Report Plugin - Jenkins - Jenkins Wiki

I've got Kindle touch

I bought Kindle touch at taobao, Chinese EC site. It's very useful for me to read books.I think that the Ebook is good way to get book about technology in China. My recommendation is Coffee Script book and G1GC book etc. The Pragmatic Book…

Maven tips in my repository

Currently my GitHub has 22 repositories. I think reading all of them is little hard. So I've picked up some tips from them, they'll be helpful for you. rejecting old maven To force user to use new Maven, you can use prerequisites property. <prerequisites></prerequisites>…

jenkins-regression-report-plugin released

Today I released jenkins-regression-report-plugin at GitHub. It helps you to import CI into running project. GitHubでjenkins-regression-report-pluginをリリースしました。主に既存プロジェクトにCIを導入するケースを想定したものです。 eller86/j…

我流・Jenkins実践 概論

日本の知人からJenkinsの使い方について相談したいというありがたいお話を頂いたので、具体的な話をはじめる前に自分が考えている総論についてまとめておきます。 なお私のJenkins歴は長くないですしコミュニティに対する貢献も残念ながら皆無です。ガキ大将…

ObjectWeb ASM 3.3 Tips

# This article is translated from my old blog.Coding with ASM is little difficult for me, because I cannot find tips at the internet especially Japanese one. This article is memo for me. It was written for ASM 3.3, and it may work well for…

jsr305-maven-plugin 1.1 released

Today I've released new version for jsr305-maven-plugin. eller86/jsr305-maven-plugin · GitHub This plugin injects precondition check into class file. It means that you don't have to code boring check logics like if (argument == null) {...}…