Atum Tenório

Sobre as coisas que para aí andam e nos caem à frente.

Segunda-feira, Maio 18, 2009

nota inglesa: memória

"(..) in the old days, if you remember proper, a boat went by with a girl perched on the stern, looking grave and serious. I distinctly remember a blue ice glimmer turning slight yellow with the not so distance shore glitter. We wondered about the boat, seemed lost, what a boat does here, near nowhere, the distance pole, magnetic centre, the great attractor? The fuzzing sound of the weather balloon, reclaiming attention was enough to let all slip, go by, a mirage we agreed, of jolly winds and playful sun. (..)"

Sexta-feira, Abril 24, 2009

Dear Angela Merkel

os alemães preparam-se para dar um tiro no pé:

Open letter to Angela Merkel concerning the High Mosel Bridge (Hochmoselübergang)

24th April 2009

Bundeskanzleramt
Bundeskanzlerin Angela Merkel
Willy-Brandt-Straße 1
10557 Berlin

Dear Dr. Angela Merkel, Chancellor of the Federal Republic of Germany,

I hear often in the international press these days that Mosel wine is coming strongly back into fashion. In fact, many wine critics refer to Riesling as "the queen of grapes".

This simple fact - alongside weighty considerations such as the protection of important habitats for wild flora and fauna, cultural guardianship, and future financial burden - causes me to write as a matter of urgency to question the decision to now go ahead with building the B50 High Mosel Bridge. The projected 4-lane 160 meter-high concrete road bridge will have a severe impact on the vineyards and villages of Ürzig, Zeltingen-Rachtig and Wehlen, and where the road is planned to continue on above Graach it threatens the stability of that vineyard and disregards the integrity of a historic monument (the hill fort Graacher Schanzen). The additional supply road behind the village of Erden will affect the quality of fruit and vegetable production as well as the wine. These select Mosel vineyards have been cultivated for 2000 years, and are the very heart of Old World Riesling production; in fact they are widely praised as the absolute best stretch of 'First Growth' quality Riesling vineyards in the world.

It goes without saying that this area of Germany is in dire need of support and investment for regeneration: clearly the tourists need to be enticed to return, and instead of allowing a slow decline in wine production (or creeping industrialisation) the craft should be resolutely promoted to a new generation interested in the creation of high quality wines. Many would cherish the opportunity to make world-class wines on the steep valley slopes. These things do not happen automatically with the coming of a new road, but need planning and sensitive development. If you are a tourist able to arrive a little faster will you stay near the bridge, or use those extra minutes looking for a spot that has not had its wonderful vista blighted? Visitors come here for wine, nature and sports; leisure pursuits on the river, walking and cycling, and the excellent paragliding opportunity presented by the thermal air currents that rise from the very hill that the bridge will overshadow. (The Mosel Open International Paragliding Competition and the regular flights enhance this fabulous beauty spot.) All of these pursuits face major disruption. Is it not obvious that any development of infrastructure must encourage these low-impact activities and preserve the natural environment of an important wine-growing region?

Aside from the inordinate visual domination imposed by the bridge on the valley and villages, ecologists and winemakers are concerned that the local ecosystem and micro-climates of the vines will be disturbed; results which would mean a loss of the special qualities that make this a singular locale for wine-growing. The mix of red slate and red volcanic soil around this bend of the river is totally unique: there is no similar wine habitat elsewhere along the Mosel, nor indeed anywhere on the globe. The big question is this: Is there no better way to realise the desired transport connections than to follow a plan that was conceived decades ago at a time when very little thought was given to environmental or cultural considerations?

International tourists are increasingly interested in authentic experiences gained through contact with traditional methods of horticultural production. With the recession biting, many German people will soon rediscover their home-grown pleasures, and their numbers will increase once the unsustainable era of cheap flights comes to an end. Holiday destinations come and go like all fashions. When visitors seek to sample our delights do we want to offer them an awesome natural treasure or an overwhelming, uninspired eyesore alongside our exceptional wines? Can we afford to drive away the visitors who already love this part of the valley? With a small amount of vision this area could become a world leader in sustainable regeneration, demonstrating a clear and simple strategy to lead us out of the current downturn. Effective investment in the development and promotion of world-class German wine could possibly achieve this result by itself. By comparison, reliance on road-building to cure our ills offers at best the effect of sticking a plaster on a gaping wound.

The disturbance of this most particular Riesling habitat is an issue of international importance, which is why I have chosen to make this an open letter for wide circulation. I hope you will visit the bridge site at your earliest convenience to satisfy yourself that this is a sane project which leaves a sensible and desirable legacy for future generations - as opposed to a foolhardy and scandalous disruption of an ancient craft in its natural environment. I further ask on behalf of all the people who appreciate living in and visiting this remarkable place that you account for the conundrum of why the area has been withheld from application to UNESCO for World Heritage status.

For a visual impression of the impact of the bridge on the valley see the before and after [vorher/nachher] photos at: http://b50neu.de

Yours sincerely,
Sarah Washington


[Apontamento] http://b50neu.de

aforismo: a bota e a escova

a escova que mais bate na bota é a que melhor a engraxa

Quarta-feira, Abril 22, 2009

nota: a luz que raia do alto



verte a pique sobre a majestosa silhueta,
abaixo extasia-se quem à terra fica agarrado

Sábado, Março 14, 2009

tech: Olympus LS 10 and Linux

script para transferir ficheiros wav de um Olympus LS 10 adicionando a data de geração ao nome do ficheiro.

script to transfer wav files from an Olympus LS 10, adding the creation date to the file name


#!/bin/bash
# transfer_ls10.sh
# writen by rreis@aero.ist.utl.pt 2009.03.14
# Under the GPL v2
#
# Mount a Olympus LX 10 device, copy all wav files to a directory
# adding creation date to their names
#
# Usage:
#
# ./transfer_ls10.sh
#
# Before usage edit
# savedir=< dir under where files will be saved >
#
# As usual, use at your own risk. For me it works without problem
# your system can be diferent. This is open source, check the code,
# improve it, return it back to the rest
#
# Happy recordings!
#
##################################################################

# mount device

device=$1
checkfile="$device/olyml_tb.dat"
savedir=/home/fuji/audio/recordings
ls10dirprefx="dss_fld"
tmplisting="/tmp/$$tmp"

if [[ -z "$device" ]]; then
echo
echo "WARNING: Specify mount point"
echo
exit -1
fi

# check if it is Olympus LS 10

mount $device

echo "Checking for $checkfile"

if [ ! -e "$checkfile" ]; then
echo
echo "WARNING: It doesn't looks like the Olympus LS 10!"
echo "WARNING: $checkfile not present"
echo "WARNING: ls result"
echo
ls $device
echo
umount $device
exit -1
fi

echo "Device OK. Looks like an Olympus LS 10"

# create dir for saving the transfered files
# if dir already exists don't complain

date=`date +"%Y.%m.%d"`
savedir="$savedir/ls10_$date"
mkdir -p $savedir

# build copy script header

echo "#!/bin/bash" > $tmplisting
echo " " >> $tmplisting
chmod 700 $tmplisting

# get file times and new names
echo "Compiling files on device"
slist="a b c d"
for fld in $slist; do

dr="$device/$ls10dirprefx"$fld

find $dr -name "*.wav" -prune \
-printf "cp -a $dr/%f $savedir/%TY.%Tm.%Td-%TH:%TM.%f \n" \
>> $tmplisting

done

echo "Copying files"
/./$tmplisting

echo "Cleaning up"
rm $tmplisting
cd
umount $device
echo "End"

exit 0

Quinta-feira, Fevereiro 05, 2009

nota: break and print




#!/bin/bash

filename=$1

if [[ -z "$filename" ]]; then
echo No file
exit
fi

totpages=$(pdfinfo $filename | grep ^Pages | sed 's/Pages:[[:space:]]*//')

echo $totpages

exit

start=1
end=`expr $start + 3`

while [ $end -lt $totpages ]; do

echo "Doing pages :: " $start - $end

printme=$$out$start-$end.pdf

pdftk A=$filename cat A$start-$end output $printme && \
lpr -P hp2200 $printme

start=`expr $end + 1`
end=`expr $start + 3`

sleep 30

done

echo $start $totpages

rm -f $$out*

exit 0



sacana da impressora...

Sexta-feira, Janeiro 30, 2009

nota: break


Slender, slim
On the verge of break
[running out of the fingertips /break

Rumpling thoughts, trampling thoughts

Oh, is this a girl, looking out the window?
[fast car passing by, pressure of tires on tarmac

I dream, I scream
(what do the words mean?; another scream...

FULL STOP. Retrace. Retrack

oh! curls...