Posted by
Moser on September 10, 2009
For a little side project I am currently evaluating different ways of GUI programming using Ruby. Monkeybars is one of the most interesting candidates. There is a really good article about it, if you want to learn more.
Version 1.0.4 has a little, but annoying bug: If you generate a new application skeleton it won’t compile/run:
manifest.rb:32:in `require': no such file to load -- monkeybars (LoadError)
from manifest.rb:32
from manifest.rb:21:in `require'
from main.rb:21
To fix it, you got to change line 21 of manifest.rb:
add_to_classpath '../lib/java/monkeybars-1.0.2.jar'
#to
add_to_classpath '../lib/java/monkeybars-1.0.4.jar'
Posted by
Moser on August 13, 2009
On last Wednesday I had to write my last test for this semester. As the long term soaring forecast looked quite good I decided to skip the party on the evening and to drive home (i.e. the airfield) instead. The weather report for Thursday promised us good but blue (no clouds that mark the upper ends of thermals) conditions. I don’t really like flying on blue days as you can never be sure if there is still thermal activity where you are heading, but I was quite motivated because I did not fly cross country for nearly two months.
On Thursday morning Daniel and I assembled the Ventus 2cx [Thanks btw
] and I put in 58 liters of water ballast.
At 11 AM me and some of our guests from Hamburg were ready for tow. Fortunately the weather forecast was not entirely correct: We already saw some clouds develop.
At 11.47 AM (local) I released the tow rope a little north western of Cham in about 700 m AGL (above ground level). My first thermal wasn’t good (or I just did not get it the right way). So I proceeded a little further north, lost some more height and found myself in weak, narrow thermal. I decided to drop my water ballast which probably was wrong. Afterwards the thermal improved and I could fly on to the north. Within the first hour I seldom was higher than 1000 m AGL. When I passed Weiden the altitude of the cloud base and the thermals’ strength improved and I got faster. The Fichtelgebirge provided me with some strong lift and soon I passed Kulmbach.

Sonneberg
Overhead Sonneberg I entered the Thuringian Forest. Some kilometers before Suhl I turned back southward. All in all I had to thermal too much for my taste on the first leg.

Bridge construction site on the Nuremberg–Erfurt high-speed railway
On the way back south I did a better job and did not thermal much until I was south of Tirschenreuth. A Janus joined me in close formation for some 40 Km. In order to stretch the flight a little I went on to the south east of Cham and turned near Bischofsmais.
From there I planned my final glide which was quite tight and got tighter due to some strong downdrafts in the area where I turned. But I was lucky and hit some thermals on the glide home. The second one was quite strong and I decided to gain any height I could get in order to make some extra kilometers. I again passed Cham and flew on to the north west. I could use some calm evening thermals, turned at Neunburg vorm Wald for the last time and went home fast.
With a distance of 529 Km and a duration of 6 hours and 37 minutes this was my farthest and longest flight. Because of the high amount of traffic and the sometimes rough thermals I only took a few pictures today.
Here is the flight on the OLC.
Posted by
Moser on July 1, 2009
A nice quote found on the slides of our distributed systems lecture:
massage passing as means of coordination
One should try massaging each other to improve a team’s coordination.
Posted by
Moser on June 23, 2009
A little gotcha with custom setters for datetime attributes is, that when setting an attribute through ‘write_attribute’ it is not converted to UTC (or whatever else your default time zone is).
This problem can easily be reproduced:
./script/generate model Thing a:datetime b:datetime
My model:
class Thing < ActiveRecord::Base
def b=(d)
write_attribute(:b, d)
end
end
My tests:
require 'test_helper'
class ThingTest < ActiveSupport::TestCase
test "a and b" do
d = DateTime.now
t = Thing.new
t.a = d
t.b = d
t.save
assert_equal t.a, t.b
t.reload
assert_equal t.a, t.b
end
end
The second assertion will fail. Is this intended or a bug?
Quick fix:
def b=(d)
d = d.utc
write_attribute(:b, d)
end