Last Friday I participated in a new meet-up: The IDesign Method – System Design. The meet-up was organized by Jarkko Kemppainen, the Principal of IDesign Europe. The company has developed its own approach to design new system, which is available for download from their website. Here are a few interesting statements from the meet-up
Copying Jenkins jobs
When your company/project uses multiple installations of Jenkins, quite often you’d like to move build jobs from one server to another. Jenkins does provide an extensive set of CLI command and API via HTTP. However there is nothing (yet), what would connect two build servers
Merge SVN directories
One of the applications of my customer in being maintained by an external vendor. The vendor delivers code to a separated SVN repository, by importing it every time as a new tag. This causes a few difficulties: SVN is not able to report code differences between two versions all available at the company tooling has […]
Enforce Clean before shade
It’s a bad idea, but if you have to use Maven Shade plugin in order to include classes from your dependencies to your artifact and especially if you invoke shade more than one during the build
Project break-down, which happens too early
Among users of Maven there is a huge tendency, which is difficult to influence. The tendency is to break down projects into a number of independently releasable sub-projects, but to keep on working at all of the sub-projects at the same time. In this case using fixed versions of dependencies does not work at all […]
Modify single file in SVN tree
Sometimes, especially when you work cross various projects, you need to modify a single file in a project. A good example for this updating pom.xml by adding description, name, SCM or CI sections
Remove CR from CRLF
GIT does not accept text files in DOS style with CRLF characters at the end of the lines. Although it’s possible to configure repository to auto-convert line endings, the files in your local copy will remain in DOS-style. The script below, assuming it’s saved as fromdos.sh, will prepare your files by removing CR character.
CITCON 2012
CITCON, the Continuous Integration and Testing Conference, is a world-wide series of free Open Spaces events for developer-testers, tester-developers and anyone else with an interest in Continuous Integration and the type of Testing that goes along with it. I’ve been lucky to
Awesome idea
Ok, possibly, it’s the project I worked on for a couple of years (fraud detection in financial sector) makes me to spot such “awesome” ideas. This morning I heard on radio an ad about a site with service, which tells you how strong your password is. I should also start such site for two reasons:
C# Partial Class
I just came across another perfect way to support violation of OOP principles: Partial Class Definitions (C#) http://bit.ly/GFi1bp