Nov 2006
Thu, 16 Nov 2006
# Python Gnuplot: PlotItems Data axis vs. axes
In Gnuplot to set different y-axis scaling left and right:
plot sin(x) axis x1y1, \
sin(x)**2 axis x1y2
In the Python Gnuplot module you rather use:
g.plot(Gnuplot.Data(x, y1, axes='x1y1'),
Gnuplot.Data(x, y1, axes='x1y2'))
See the little difference? (axis vs. axes)
posted at 22:42 | path: /unix | permanent link to this entry
Fri, 10 Nov 2006
# Navicore Personal Europe 2006-1 DVD installation under Debian GNU/Linux with Wine (Nokia E60)
Hey, finally people programming intelligent installers. I already thought about simulating a USB disk for Wine just to install Navicore, or searching a Windows PC. But you can just give the installer a directory as destination and it installs just fine. Copy the resulting tree to a blank memory card and you're ready. Upon inserting the card, the phone will automatically install the application. Now up to some navigating — hope it is better than nav4all, which really sucks.
$ wine --version
Wine 0.9.15
posted at 21:28 | path: /unix | permanent link to this entry
