I bought a new “multi-charger”, the iMax Quattro B6. Here is my review.

A collection of note-to-self's
I bought a new “multi-charger”, the iMax Quattro B6. Here is my review.

I’m selling my Thunder Tiger Raptor 50 Titan:
This is a great helicopter for beginners. Its setup is very gentle and it can take some gusty winds. The governor allows you to concentrate on flying before having to fine-tune the engine. It’s also fast to refuel (in contrast with recharging a LiPo battery).
I’m selling it because my new club does not allow nitro.
I’m selling, preferably as a whole:
In summary: everything you need to fly expect the transmitter, the receiver & a battery charger
I prefer you come and pick it up near Brussels, Belgium; that way I can show you it still flies.
If you are interested, feel free to propose a price.
After way to long, I finally found some time/weather combination to fly again. I’m a little embarrassed it took so long…
Of course, all my batteries were fairly dead. The glow heater was completely gone (0V), but was still usable after charging. My starter-battery was dead beyond repair. The LiPo’s of the miniTitan were is fairly good shape after more than a year in the fridge: 3/4th charged.
Before the flights, I upgrade my CastleLink software to version 3.40.0, and upgraded the ESC firmware to 3.27 along with these (PDF) new settings.
Continue reading ‘Flight log 2011-10-15’ »
As described before, I chose to use the mini-build of dd-wrt on my Linksys WRT320N. Since I wanted OpenVPN support, I needed to add it myself.
I again used the openwrt modules, openvpn has its own package. There are, however, several dependencies:
I already had libcrypto installed, so I only needed 713kB of free space.
Setup was fairly straightforward. Just make sure to do all heavy calculations on your desktop computer (i.e. generating keys). I installed the CA and host certificate into /jffs/etc/ssl, and added my openvpn-specific config files into /jffs/etc/openvpn. I did rewrite the verify-cn script from perl to bash, since dd-wrt doesn’t come with perl.
Next, I wrote a very simple wanup script to get openvpn (re)started at the appropriate time:
# openvpn.wanup
if [ -e /tmp/openvpn.pid ] ; then
kill -HUP `cat /tmp/openvpn.pid`
else
/jffs/sbin/openvpn --cd /jffs/etc/openvpn --config server.conf --daemon --log /tmp/openvpn.log --writepid /tmp/openvpn.pid
fi
Obviously: don’t forget to add the corresponding configuration to the firewall.
As mentioned before, when switching to IPv6 (or more realistically, to dual stack) one of the things that might not work out of the box is VPNs. I decided to put some effort in it to get it to work anyway.
Together with most of the internet, we tested IPv6 on World IPv6 day last week. I won’t go into details on what IPv6 is and why it’s important. Although IPv6 has been tested intensely in isolated networks, this is the first time it was tested on such a large scale. Technically, the participants would just add AAAA-records for their websites to DNS. This small change causes a huge effect. Since most browsers are configured to prefer IPv6 AAAA-records over IPv4 A-records, this causes all IPv6-connected users to suddenly connect over IPv6 instead of IPv4.
For the most part, this major changeover happened without as much of a hitch. In fact, if I hadn’t known it was World IPv6 day, I wouldn’t have noticed anything. But I’m not a normal web-user, so I did notice some issues.
I was under the illusion that a Time Machine backup would do as they claim:
You can set up Time Machine to automatically back up all your important files, including your documents, music, photos, applications, and any other items you keep on your hard disk.
I consider my iTunes authorizations important, but apparently Apple does not. Seems that these are specifically excluded from backups… Removing the “SC Info” line from the /System/Library/CoreServices/backupd.bundle/Contents/Resources/StdExclusions.plist file solved this.
I know I should have de-authorized my machine before reinstalling, and I know you can “de-authorize all” to fix this as well; but it’s pretty disturbing to see iTunes remove all your applications from your iPhone…
The new installs of Belgacom’s DSL internet connection are actually fairly descend. They provide a “b-box 2” which provides 2 wired 10/100base-T ports and an 802.11g access point. It consumes 10.1W of power once booted (21VA with a cosφ of .47, measured with 241Vac), which costs around €22/year at the current prices. The box has a built-in router which performs the PPPoE connection and does the NAT. While this setup is perfectly fine for a regular setup, obviously I wanted something more…
Continue reading ‘Getting a public IPv4 address with Belgacom’s BBox-2’ »
I regularly watch log files in real time using the highly appreciated tail -f command. But I usually find myself manually inserting newlines to give a visual clue of which log-lines happened together. Obviously the timestamps in the lines tell you the full story, but it’s not that visually appealing.
I assume I don’t have to introduce the concept of spam. Fighting spam can be done on different levels. A first line of defense is the mail server receiving them. There are several checks it can perform. Here is my configuration of Postfix.