I just put Jelly Bean on my Nexus on Ubuntu

Here’s how. First, you need Android SDK installed and maybe this
Warning, this WILL clear your data.


wget http://dl.google.com/android/android-sdk_r20.0.3-linux.tgz
tar xvf  android-sdk_r20.0.3-linux.tgz
mkdir -p ~/opt/sdk
mv android-sdk-linux ~/opt/sdk/android-sdk
export PATH= /home/abc/opt/sdk/android-sdk/platform-tools
fastboot devices

Your device, connected via USB and with debugging enabled, should be listed.

cd ~/downloads/
wget https://dl.google.com/dl/android/aosp/yakju-imm76i-factory-8001e72f.tgz
tar -xzf yakju-imm76i-factory-8001e72f.tgz
cd yakju-imm76i
sudo fastboot oem unlock
sudo ./flash-all.sh

wait, wait, boom, works 😀

sudo fastboot oem lock

Debugging NetBeans RCP from IntelliJ

Netbeans rocks, especially as it becomes more and more like IntelliJ 😉

The story: NB RCP app, converted to use maven, developed mostly in IntelliJ (with the exception of GUI screens, which go through Matisse).
It’s runnable, it works, but there’s one glitch: debugging only seems to work from inside NetBeans. Should be easy, nbm plugin manual tells what to do here.
Let’s create a Run Configuration, add params, should work, right?

 and 

And it works! Well, almost, or up to the point where VM complains and quits.

1
2
3
4
5
6
7
8
[INFO] --- nbm-maven-plugin:3.7:run-platform (default-cli) @ application ---
[INFO] Executing:
/bin/sh -c /Users/ags/vcs/work/trololo-code/client/application/target/trololo_client/bin/trololo_client
--userdir /Users/ags/vcs/work/trololo-code/client/application/target/userdir
-J-Dnetbeans.logger.console=true -J-ea --branding trololo_client
-J-Xdebug -J-Xnoagent -J-Xrunjdwp:transport=dt_socket,suspend=n,server=n,address=8888
[INFO] Invalid memory access of location 0x0 rip=0x7fff958af540
[INFO] ERROR: transport error 202: connect failed: Connection refused

But it works under NetBeans, and it uses the same parameters and it’s Java and.. WTF?!
What does netbeans exactly do for debugging?


NetBeans: JPDA Listening Start...
JPDA Address: ags-mbpro.local:54019
Port:54019
cd /Users/ags/vcs/work/trololo-code/client/application;
JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
"/Applications/NetBeans/NetBeans 7.2.app/Contents/Resources/NetBeans/java/maven/bin/mvn"
-Djpda.listen=true
"-Dnetbeans.run.params.ide=-J-Xdebug -J-Xrunjdwp:transport=dt_socket,suspend=n,server=n,address=54019"
-Djpda.address=54019 nbm:cluster-app nbm:run-platform

Of course our parameters are correct, running the same command from the command line doesn’t give anything. So the glitch must somewhere else… or. It’s right here, in the very beginning!

NetBeans: JPDA Listening Start...
JPDA Address: ags-mbpro.local:54019
Port:54019

NetBeans starts listening on for debugger BEFORE it runs RCP. Idea can do that too, but by default it wants to connect to a socket. So the easiest way it change it to Listen and start before running the app (meh).

Or change server to y. That’s my preferred way (at least since quite some time).

-J-Xdebug -J-Xnoagent -J-Xrunjdwp:transport=dt_socket,suspend=n,server=y,address=8888

ubuntu 12.04 android sdk fun

Jenkins says:
[INFO] /bin/sh: 1: /home/jenkins/opt/sdk/android-sdk/platform-tools/aapt: not found
[ERROR] Error when generating sources.
org.apache.maven.plugin.MojoExecutionException:

Ehm.. ok.

cd /home/jenkins/opt/sdk/android-sdk/platform-tools/
root@javaone:/home/jenkins/opt/sdk/android-sdk/platform-tools# ls -al
total 23204
drwxrwxr-x 5 jenkins jenkins 4096 Jul 4 13:39 .
drwxr-x--- 12 jenkins jenkins 4096 Jul 4 13:41 ..
-rw-rw-r-- 1 jenkins jenkins 401602 Jul 4 13:39 NOTICE.txt
-rwxrwxr-x 1 jenkins jenkins 929144 Jul 4 13:39 aapt
-rwxrwxr-x 1 jenkins jenkins 204436 Jul 4 13:39 adb
-rwxrwxr-x 1 jenkins jenkins 226004 Jul 4 13:39 aidl
(...)
root@javaone:/home/jenkins/opt/sdk/android-sdk/platform-tools# ./aapt
bash: ./aapt: No such file or directory
root@javaone:/home/jenkins/opt/sdk/android-sdk/platform-tools#

Ok, now WTF?!

root@javaone:/home/jenkins/opt/sdk/android-sdk/platform-tools# file aapt
aapt: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8, stripped

Gotcha! 32bit. ia32-libs does this, right?

root@javaone:~# apt-get install ia32-libs
Some packages could not be installed. (...)

The following packages have unmet dependencies:
 ia32-libs : Depends: ia32-libs-multiarch
E: Unable to correct problems, you have held broken packages.

Oh no, you don't!

root@javaone:~# apt-get install ia32-libs-multiarch
Some packages could not be installed. (..)
The following packages have unmet dependencies:
 ia32-libs-multiarch:i386 : Depends: libgphoto2-2:i386 but it is not going to be installed
 Depends: libsane:i386 but it is not going to be installed
 E: Unable to correct problems, you have held broken packages.
 root@javaone:~# apt-get install libgphoto2-2:i386 libsane:i386

 Some packages could not be installed. (..)

The following packages have unmet dependencies:
 libgphoto2-2:i386 : Depends: libgd2-xpm:i386 (>= 2.0.36~rc1~dfsg) but it is not going to be installed
 E: Unable to correct problems, you have held broken packages.
 root@javaone:~# apt-get install libgd2-xpm:i386

 The following extra packages will be installed:
 gcc-4.6-base:i386 libc6:i386 libexpat1:i386 libfontconfig1:i386 libfreetype6:i386 libgcc1:i386 libgd2-xpm libjpeg-turbo8:i386 libjpeg8:i386 libpng12-0:i386 libx11-6:i386 libxau6:i386 libxcb1:i386
 libxdmcp6:i386 libxpm4:i386 zlib1g:i386
 Suggested packages:
 glibc-doc:i386 locales:i386 libgd-tools libgd-tools:i386
 The following NEW packages will be installed:
 gcc-4.6-base:i386 libc6:i386 libexpat1:i386 libfontconfig1:i386 libfreetype6:i386 libgcc1:i386 libgd2-xpm libgd2-xpm:i386 libjpeg-turbo8:i386 libjpeg8:i386 libpng12-0:i386 libx11-6:i386
 libxau6:i386 libxcb1:i386 libxdmcp6:i386 libxpm4:i386 zlib1g:i386
 0 upgraded, 17 newly installed, 3 to remove and 3 not upgraded.

Ok, a few minutes later I could do a:

apt-get --no-install-recommends install ia32-libs-multiarch

And..

root@javaone:/home/jenkins/opt/sdk/android-sdk/platform-tools# ./aapt
<pre><pre>Android Asset Packaging Tool

Usage:
 aapt l[ist] [-v] [-a] file.{zip,jar,apk}
 List contents of Zip-compatible archive.

It works. Let's make a chef out of it and be happy 🙂

High season?

I get around 5 job offers a day, mostly sad intranet userless “maintainance and development” where anybody able to write forms in JSF/Struts 1 would do – not my cup of tea. Recently however I have received a call from a technical recruiter from one of the polish companies (which was present at Confitura) and.. we actually had a nice talk. Not only did my interlocutor ask about SOLID, but he knew about threads! And memory flushing with volatiles plus he has read Java Concurrency in Practice.. “the” book for Concurrency in Java for the past few years. And he heard about Java Memory Model! I was pleasantly surprised with the person’s level and attitude. And I really wish more organisations would do such things, it would definitely improve the overall feelings many share towards any form of “employee seekers”.

Legacy Code Retreat

Last Saturday, we’ve had a Legacy Code Retreat. As usual, ABB was kind enough to provide us with the rooms (it’s kind of a tradition to have retreats there now). Anyway, the event was a bit different from a traditional Code Retreat – this time, we were not trying to implement Conway’s Game of Life. We battled with code, written by somebody before about which we didn’t know too much. The event was fun, and from my point of view it was the smoothest CR we’ve done – the biggest change was most probably that there were 6 people available to help and look after (4x) others (official term is facilitators, but I don’t like it). Before, when we were trying to work in just 3 people, it was much harder – for us to code at least a bit, for us to be able to spend an adequate amount of time at what everybody was doing.

As for the activities, we spent the first session getting the general hang of the problem and trying to prepare a Golden Master for further testing. It was particularly useful to actually have met a week before and write the Golden Master in many of the available languages – it turned out that our initial impressions about what performs how during 10000 iterations were sometimes off by an order of magnitude. Or two.

The best session there was (maybe because I managed to code) was “quick refactorings” – finish refactor within 2 minutes or

git checkout -- .

Went surprisingly well, we only reverted our changes once and managed to do quite a lot.

What turned out to be the two, most problematic things?
1) Network access. You need it to share code among people.
2) Many people do not know git.

And since a picture..

Legacy Code Retreat

Confitura

The best Confitura I have been to so far.

Great people, amazing atmosphere, tons of prizes, interesting quizzes, sponsors with capable and very approachable people at booths.. with technical things to talk about!

Confitura has always been a “family” conference to me, meaning: I spent a lot of time in the corridors talking. but this year.. I’ve been to most of the talks. The only talk I couldn’t stand and left after 5 minutes, was “Patters”, which wasn’t, nicely put, approachable.

But then.. Akamai and their keynote. It was the first US-based company presentation that included a slide with the globe centered on Europe. Plus their attitude towards DDOSes – nice, very nice 🙂

News of the day: Waldek Kot znowu nadaje. This was the first presentation since long in which I’ve actually been looking forward to an “About me” slide. On top of that, the code samples were good, live coding worked.. well, classy Waldek is classy! Then Jakub Nabrdalik with Tomek Przybysz – engaging ping pong and good content up to grails intro. Tomek Nurkiewicz’s “if avoidance” had some good, real-life examples of bizzare things. Bizzarre up to the 45th level, as in 45-level polynomial instead of a 6-branch if. First reaction: huge WTF! Imagine finding such “treasure” in the codebase. I’d be off cycling in no-time. Then me with “Continuous Delivery”, slides are on SlideShare.

And then, the closing keynote. Then the most hilarious talk I’ve heard since “The Diabolical Developer”. At least comparable – full of energy, strong emotions, bias and mocking people who just learnt 3 annotations from Hibernate, became promoted and apply to a company that actually cares about code. The reactions were very mixed, but I enjoyed the talk and, well, agree with at least half of it.

Once again, the best Konficzer I’ve been to!

Dropbox or.. my 3*10^-2PLN

Here’s the use case: I’ve got a big load of pictures which I want to be able to work on using my desktop or notebook as I please.
Data transfer during such activity is minimal, limited to updating a relatively small catalogue file and (mostly) deleting files I reject. I’ve tried DropBox, it’s nice and does the job, but.. RAW files are big, and I usually end up with 20-30GB of data. Plus preview files, plus something.

What I could do is put them on a separate hard drive… but that’s slow. I tried – maybe an SSD external harddrive would do the job, but still, I would be limited by firewire/USB lags. And couldn’t easily benefit from multi-harddrive setup.
I decided to use the files locally, but put them into a cloud storage to do the rsyncing, but it sucks because I have to do it manually.

I don’t do my pictures on Linux, so having a Linux client is not required.

So.. dropbox: nice, simple, handles conflicts nicely plus does lan sync. Almost perfect, because price tag is higher than Google Drive.
Google Drive: I have it anyway with my gmail account, usually uploads are fast.
Problems? A few. Client hangs and needs to be restarted, doesn’t know what to do if the same file is being uploaded from two computers at the same time and does not do LAN sync.

So.. because it’s 5$/month, I’m staying with Google Drive. Does the job, even though I have to let it upload from a single source for a day.

Maybe they fix it.. 😉

So.. you’d like to hire?

  1. What salary range are we discussing?

Basics

  1. What’s your dress code: do you wear casual clothes, business casuals, suits or does nobody care as long as it’s not revealing? What about spring/summer – are tshirts/shorts/sandals ok?
  2. What is the typical hardware setup for development – I love to work with 2 big screens (NOT a notebook + screen), with a powerful development machine, either a notebook w/ docking station or a powerful (>=4 core, >=8GB RAM) desktop. What’s yours?
  3. Which java version, frameworks, servers?
  4. I love using IntelliJ IDEA, is it a problem?
  5. Can I park my bike in a *safe* place? Next to my desk is ideal, next room probably as well.
  6. Is there a shower in the office?
  7. Which version control do you use, is it centralised (svn, perforce) or distributed (git, hg)
  8. What environment do you use for development (Windows or Linux or ..?) and deployment?
  9. What time do you start/finish work?
  10. Do you work in any ‘strange’ times – evenings, holidays, weekends?
  11. Do you do overtime? How much, how much is it paid, what’s the average overtime per month per developer?
  12. Which day of the month do salaries get transferred?
  13. Do you have a wiki? A library? Conduct internal trainings? Send people to trainings? Have a conference budget?
  14. Who chooses technologies used in projects? What role will my voice play there?
  15. Do you use a CI sever? Sonar?
  16. Who chooses technologies in the projects? How do you build them?
  17. What apart from java: groovy, scala, clojure, …?
  18. Can I work from home? Can I leave for a few hours and then make up for it later?

Ubuntu, fakeraid and GRUB problem

The case: Ubuntu 11.04 (Gnome 2 FTW) and newer fail to install on fakeraids. It’s even worse, setup claims to have installed everything correctly yet no system boots upon reset.

Here’s a what fixed it for me:
1) Run LiveCD, choose Try Ubuntu, run installer, don’t reboot after install.
2) CTRL-ALT-T (open terminal)

sudo mount --bind /dev  /target/dev 
sudo mount --bind /proc /target/proc 

3) Chroot into installed Ubuntu

sudo chroot /target
dpkg-reconfigure grub-pc

Grails – automatically reconnect to MySQL datasource

Well, I’m using Grails for a huge amount of quickly hacked apps.
Most of them use MySQL for persistence, because it just works 🙂

There is one problem with the driver, though – sometimes, when nothing is happening, it allows the connections to disconnect.
It wasn’t a matter of one option somewhere, unfortunately 🙁

According to MySQL JDBC driver configuration page, it might be enough to add

autoReconnect=true

to have

    development {
        dataSource {
            dbCreate = "create-drop"
            url = "jdbc:mysql://mysqlhost/database?useUnicode=true&autoReconnect=true"
            username = ""
            password = ""
        }
    }

But it doesn’t solve it ;(
After some searching, cursing and a beer, I’ve ended up with:

dataSource {
    pooled = true
    driverClassName = "com.mysql.jdbc.Driver"
    username = "secret"
    password = "santa"

   properties {
      maxActive = 50
      maxIdle = 25
      minIdle = 1
      initialSize = 1

      numTestsPerEvictionRun = 3
      maxWait = 10000

      testOnBorrow = true
      testWhileIdle = true
      testOnReturn = true

      validationQuery = "select now()"

      minEvictableIdleTimeMillis = 1000 * 60 * 5
      timeBetweenEvictionRunsMillis = 1000 * 60 * 5
   }
}

And this has been good enough to solve my pains. Thank you grails, for making me have problems I wouldn’t otherwise have.
Nice of you to allow me to fix them pretty fast at the same time 🙂