<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>Blog of Robert Borst </title><link>http://blogger.xs4all.nl/borstr/</link><description /><managingEditor>Robert Borst</managingEditor><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>Robert Borst</dc:creator><title>No more username request with mintupdate and synaptic by changing the sudoers file</title><link>http://blogger.xs4all.nl/borstr/archive/2011/02/27/644670.aspx</link><pubDate>Sun, 27 Feb 2011 09:44:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2011/02/27/644670.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/644670.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2011/02/27/644670.aspx#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/644670.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/644670.aspx</trackback:ping><description>&lt;pre&gt;
I became annoyed by the passwords request when clicking on the mintupdate shield.
This behaviour can be suppressed by changing the sudoers file in /etc
change  the 'robert' below with your own name to make this work.
=-=-=-=-=
# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#

Defaults	env_reset

# Host alias specification
&lt;pre&gt;
# User alias specification

# Cmnd alias specification

# User privilege specification
root	ALL=(ALL) ALL

# Allow members of group sudo to execute any command after they have
# provided their password
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL
#
#includedir /etc/sudoers.d

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
robert ALL = NOPASSWD: /usr/bin/mintupdate
robert ALL = NOPASSWD: /usr/sbin/synaptic
robert ALL = NOPASSWD: /usr/lib/linuxmint/mintUpdate/mintUpdate.py

&lt;/pre&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/644670.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Setting the thunderbirds trash folder</title><link>http://blogger.xs4all.nl/borstr/archive/2011/01/03/637816.aspx</link><pubDate>Mon, 03 Jan 2011 12:10:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2011/01/03/637816.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/637816.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2011/01/03/637816.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/637816.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/637816.aspx</trackback:ping><description>&lt;pre&gt;Whe connecting thunderbird for the first time to Zarafa, there are a few differences between the two.
The most annoying is the 'Deleted Items' versus 'Trash'.
When they are not correctly mapped you end up with 2 trash folders, depending on the interface you use.
This is quite inconvenient.
&lt;/pre&gt;
&lt;pre&gt;
1. Completely exit Thunderbird if it is running.

2. Make a temporary backup copy of your profile folder (or at least "prefs.js").

3. Open your "prefs.js" file with a text editor such as Notepad to find the server# used to represent your IMAP account. It could be "server2", "server5", "server7", or some other number depending on your own individual account setup. Look for a line similar to this, corresponding to your own IMAP acccount:

user_pref("mail.server.server2.hostname", "mail.YourImapProvider.com");

4. Insert a line like the following into "prefs.js", with the correct server# and correct name for the Trash folder:

 user_pref("mail.server.server#.trash_folder_name", "&lt;correct Trash name&gt;");

For example:

 user_pref("mail.server.server2.trash_folder_name", "Deleted Items");
&lt;/pre&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/637816.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>sorting pictures from a Theme party by date and time.</title><link>http://blogger.xs4all.nl/borstr/archive/2010/10/11/575296.aspx</link><pubDate>Mon, 11 Oct 2010 21:49:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/10/11/575296.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/575296.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/10/11/575296.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/575296.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/575296.aspx</trackback:ping><description>&lt;p&gt;One of the websites i maintain is for a yearly party in a small village
&lt;p&gt;A lot of people go there and the fun is not only in the party itself, but also in the pictures that are taken.

&lt;p&gt;This means that I get a DVD with pictures on there that are nicely numbered and too big to place on a website (2 to 3 Mb per picture, about 700 of them). The size can be adapted by installing the nautilus resize option, select all and enter the new size. 
&lt;p&gt;To make it easier for the people to see the pictures, they are split into day an hour. to do this, is adapted a script so i got the following

&lt;pre&gt;
#!/bin/sh

# Goes through all jpeg files in current directory, grabs date from each
# and add the date and time in front
# 
for fil in *.JPG  # Also try *jpg
do
    datepath="$(identify -verbose "$fil" | grep DateTimeOri | awk '{print $2, $3}' )"
  

  mv  "$fil" ./"$datepath $fil"
done
&lt;/pre&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/575296.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Network manager propsal</title><link>http://blogger.xs4all.nl/borstr/archive/2010/08/17/563796.aspx</link><pubDate>Tue, 17 Aug 2010 17:34:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/08/17/563796.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/563796.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/08/17/563796.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/563796.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/563796.aspx</trackback:ping><description>Working with my laptop both at work and at home i walk into proxy settings every time

&lt;p&gt;this is now solved by setting the proxy after i login and using a 'apply sysyemwide' and typing the password twice.
&lt;br&gt; As you can image this is annoying.

&lt;p&gt;The most care-free solution for me would be for the system to see which ip adres was assigned and set the proxy settings to match
&lt;br&gt;For this i made a request, see:

&lt;p&gt;&lt;A href="https://blueprints.launchpad.net/community.linuxmint.com/+spec/proxy-settings-in-network-manager"&gt;proxy-settings-in-network-manager&lt;/a&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/563796.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Right click 'extract here' in konqueror</title><link>http://blogger.xs4all.nl/borstr/archive/2010/08/15/563511.aspx</link><pubDate>Sun, 15 Aug 2010 21:54:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/08/15/563511.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/563511.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/08/15/563511.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/563511.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/563511.aspx</trackback:ping><description>I really like Konqueror for updating my websites, it gives the ability to update files 'directly' on the website without the hassle of an filezilla type of 'download, change, upload' action.
&lt;p&gt;Working with linux Mint, konqueror is not standard installed.&lt;br&gt;
Installing it via sudo apt-get install konqueror is enough.
&lt;p&gt;But. I really missed the 'extract here' right click menu.
&lt;p&gt;Of course this can also be installed with apt-get. The line
&lt;p&gt;sudo apt-get install ark ncompress zoo p7zip-full p7zip-rar
&lt;br&gt; does the trick.
&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/563511.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Virtualbox 3.2 and Vmware images</title><link>http://blogger.xs4all.nl/borstr/archive/2010/08/12/563154.aspx</link><pubDate>Thu, 12 Aug 2010 13:41:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/08/12/563154.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/563154.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/08/12/563154.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/563154.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/563154.aspx</trackback:ping><description>&lt;p&gt;I had some windows 2000 and windows XP images i used in VMware. &lt;br&gt;

&lt;p&gt;I am now running virtualbox and booting them resulted in a Black screen with no response at all.&lt;br&gt;

&lt;p&gt;After a lot of rebooting, checking the agp440 solutions i found, i found the following website:&lt;br&gt;
http://www.digizenstudio.com/blog/2008/05/20/vmware-to-virtualbox-migration-issues/&lt;br&gt;

&lt;p&gt;It pointed me to the extended features located in settings - system - motherboard.&lt;br&gt;
Enabling the 'Enable IO APIC' setting is enough to get the VM's to start up in virtualbox.&lt;br&gt;

&lt;p&gt;After installing the guest additions of virtualbox, everything is running FINE !&lt;br&gt;

&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/563154.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Stable screen with my nc8430 (ATI X1600) with Linux Mint 9 and Ubuntu 10.04 !</title><link>http://blogger.xs4all.nl/borstr/archive/2010/06/28/553529.aspx</link><pubDate>Mon, 28 Jun 2010 22:27:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/06/28/553529.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/553529.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/06/28/553529.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/553529.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/553529.aspx</trackback:ping><description>The 9th of june, I tried to stabilize the shaking on my display of my laptop (NC8430 with an ATI X1600)&lt;br&gt;
&lt;br&gt;
The memory option wasn't working.&lt;br&gt;
&lt;br&gt;
So i searched some more an found the following:&lt;br&gt;
&lt;br&gt;
&lt;br&gt;1) open a terminal ( Alt-F2, xterm )
&lt;br&gt;2) sudo gedit /etc/default/grub
&lt;br&gt;3)   add "radeon.new_pll=0" after "quiet splash"
&lt;br&gt;
&lt;br&gt;you will now get:
&lt;br&gt;GRUB_CMDLINE_LINUX_DEFAULT="quiet splash radeon.new_pll=0"
&lt;br&gt;
&lt;br&gt;4) sudo update-grub
&lt;br&gt;
&lt;br&gt;you can check it the update grub did its work by looking in /boot/grub/grub.cfg  and seeing the line with 
&lt;br&gt;linux /boot/vmlinuz-2.6.32-17-generic root=UUID=accec70e-54ff-436b-a1f9-6f0a69411799 ro quiet splash radeon.new_pll=0
&lt;br&gt;
&lt;br&gt;After a restart, the shaking is gone !
&lt;br&gt;
&lt;br&gt;Source: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/543265&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/553529.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Threadvis for Thunderbird 3.05</title><link>http://blogger.xs4all.nl/borstr/archive/2010/06/24/552796.aspx</link><pubDate>Thu, 24 Jun 2010 02:34:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/06/24/552796.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/552796.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/06/24/552796.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/552796.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/552796.aspx</trackback:ping><description>Threadvis is an application that gives a visual indication about the thread the message belongs to.&lt;br&gt;
It is a very fast way to look at the conversation an email is part of.&lt;br&gt;

&lt;br&gt;
This add-on seems to work on Thunderbird 3.0.5 on Linux Mint 8.&lt;br&gt;
The only thing was that it didn't register as installed.&lt;br&gt;
The add-ons menu was keeping the 'restart to install threadvis' notification.&lt;br&gt;
&lt;br&gt;
Looking at the profile i noticed that the directory in the profile of thunderbird was owned by root.&lt;br&gt;
So i opened up an Xterm (via Alt-F2 and entering xterm)&lt;br&gt;
did:&lt;br&gt;
cd ~/.thunderbird&lt;br&gt;
cd &lt;charactersAndNumbers&gt;.default&lt;br&gt;
cd extensions&lt;br&gt;

When i did a:&lt;br&gt;
sudo chown -R  &lt;username&gt; \{A23E4120-431F-4753-AE53-5D028C42CFDC\}&lt;br&gt;
And started Thunderbird again, it started up and worked.
&lt;br&gt;
Hope this is a pointer for you if your threadvis isn't installing.&lt;br&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/552796.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>nc8430 and linux mint 9</title><link>http://blogger.xs4all.nl/borstr/archive/2010/06/09/551673.aspx</link><pubDate>Wed, 09 Jun 2010 21:45:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2010/06/09/551673.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/551673.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2010/06/09/551673.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/551673.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/551673.aspx</trackback:ping><description>My work laptop is an nc8430 (about 4 years old)&lt;br&gt;
&lt;br&gt;
For i while i dual booted my work windows with Ubuntu.&lt;br&gt;
Ubuntu is nice, but it didn't give me enough to completely switch over.&lt;br&gt;
&lt;br&gt;
Then i came into contact with Linux mint (Thank you Linux Format !)&lt;br&gt;
My experience was great, everything worked out of the box !&lt;br&gt;
No codecs and other tools needed to be installed afterwards. Just simply GREAT !&lt;br&gt;
&lt;br&gt;
It didn't take long for me to take the decision. Linux mint 8 was installed next to my windows and Ubuntu.&lt;br&gt;
&lt;br&gt;
We were already using Openoffice and Thunderbird so the switchover was not that big a deal.&lt;br&gt;
My files are on an ancrypted disk-volume that can easily be mounted with almost every OS so my files and folders were also not a problem.&lt;br&gt;
&lt;br&gt;
With the ntlmaps i am able to connect to the AD and use our proxy server without a lot of logging in. (Thanks Tim Lloyd !)&lt;br&gt;

After running this setup for a few months now i found that i got used to the responsiveness of the system. &lt;br&gt;
I had to start up my windows to start up a windows only program.&lt;br&gt;
This was a *very* frustrating experience. My own box which responded very quickly with mint turned into a very,very slow system on windows, sigh.&lt;br&gt;
&lt;br&gt;
Now Linux mint 9 is released and i was checking it out.&lt;br&gt;
Running mint 9 from an usb key gave me an display with interference that was not good.&lt;br&gt;
Every once and a while the dancing stopped but this was just too frustrating to work with.&lt;br&gt;
&lt;br&gt;
Looking for a solution I ran a query and found a article that mentioned the vmem=256  option for the kernel&lt;br&gt;
&lt;br&gt;
So i started up, pressed 'e' in the grub and added the vmem=256 and..... PRESTO the display was stable !&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I have to put this into the grub standard options so i do not have to edit this every time i start up, but that shouldn't be a problem.&lt;br&gt;

&lt;br&gt; edit: After a while the vibrations on the screen are back, only stopping every now and then. very annoying. Needs more attention.&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/551673.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>iMacro for Firefox</title><link>http://blogger.xs4all.nl/borstr/archive/2009/08/16/510204.aspx</link><pubDate>Sun, 16 Aug 2009 22:24:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2009/08/16/510204.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/510204.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2009/08/16/510204.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/510204.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/510204.aspx</trackback:ping><description>The feedback of this site was completely filled with spam.

Deleting this was quite a task.

Luckily there is such a thing as imacros add-on for Firefox.

With this, you can easily  record a macro to delete a spam message.

With the play function you can delete a spam message.
But with 42 pages of spam, this is no fun.
Luckily there is a play (loop) function you can use to run the macro multiple times. :-)

The cleanup was done rather quickly.




&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/510204.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Automatically Close the  Nag Screen of antivir</title><link>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87420.aspx</link><pubDate>Tue, 18 Apr 2006 21:16:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87420.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/87420.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87420.aspx#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/87420.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/87420.aspx</trackback:ping><description>&lt;pre&gt;
When antivir gets its update it will present the computer user with a nag screen.
This script will close this window automatically 

use autoit version 3

Put this in a file, compile it (if you want)
And let it run (or put in your startup folder

------------------------
$j=0
while $j=0
	sleep(5000)
	if winexists("Notifier of AntiVir PersonalEdition Classic Windows") Then
			; Sluiten extra window
			winActivate("Notifier of AntiVir PersonalEdition Classic Windows") 
			WinWaitactive("Notifier of AntiVir PersonalEdition Classic Windows") 
			send("!{f4}")
		EndIf
Wend
--------------------------		
&lt;/pre&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/87420.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>It is all about choices</title><link>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87414.aspx</link><pubDate>Tue, 18 Apr 2006 20:55:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87414.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/87414.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87414.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/87414.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/87414.aspx</trackback:ping><description>&lt;pre&gt;
Subject: Fw: IT'S ALL ABOUT CHOICES!!!!!!!!!!!



He was a natural motivator. If an employee was having a bad day, Bob was there
telling the employee how to look on the positive side of the situation.

Seeing this style really made me curious, so one day I went up and asked him, "I
don't get it!
You can't be a positive person all of the time. How do you do it?"

He replied, "Each morning I wake up and say to myself, you have two
choices today. You can choose to be in a good mood or ... you can
choose to be in a bad mood. I choose to be in a good mood."

Each time something bad happens, I can choose to be a victim or...I
can choose to learn from it. I choose to learn from it.

Every time someone comes to me complaining, I can choose to accept
their complaining or... I can point out the positive side of life. I choose the
positive side of life.

"Yeah, right, it's not that easy," I protested.

"Yes, it is," he said. "Life is all about choices. When you cut away
all the junk, every situation is a choice. You choose how you react
to situations. You choose how people affect your mood.
You choose to be in a good mood or bad mood. The bottom line:
It's your choice how you live your life."

I reflected on what he said. Soon hereafter, I left the Tower Industry
to start my own business. We lost touch, but I often thought about
him when I made a choice about life instead of reacting to it.

Several years later, I heard that he was involved in a serious
accident, falling some 60 feet from a communications tower.

After 18 hours of surgery and weeks of intensive care, he was
released from the hospital with rods placed in his back.
I saw him about six months after the accident.

When I asked him how he was, he replied, "If I were any better,
I'd be twins...Wanna see my scars?"
I declined to see his wounds, but I did ask him what had gone
through his mind as the accident took place.

"The first thing that went through my mind was the well-being of my
soon-to-be born daughter," he replied. "Then, as I lay on the ground, I
remembered that I had two choices: I could choose to live or...I
could choose to die. I chose to live."

"Weren't you scared? Did you lose consciousness?" I asked.
He continued, "..the paramedics were great.
They kept telling me I was going to be fine. But when they
wheeled me into the ER and I saw the expressions on the faces of the doctors and
nurses, I got really scared. In their eyes, I read 'he's a dead man'.

    I knew I needed to take action."

    "What did you do?" I asked.


    "Well, there was a big burly nurse shouting questions at me,"
    said Bob. "She asked if I was allergic to anything. 'Yes, I replied.'
    The doctors and nurses stopped working as they waited for my reply. I
    took a deep breath and yelled, 'Gravity'."

    Over their laughter, I told them, "I am choosing to live.
    Operate on me as if I am alive, not dead."

    He lived, thanks to the skill of his doctors, but also because
    of his amazing attitude... 

     

    I learned from him that every day we have the choice to live fully.


    Attitude, after all, is everything.

    Therefore do not worry about tomorrow, for tomorrow will worry about itself. 

     

    Each day has enough trouble of its own." Matthew 6:34.

    After all today is the tomorrow you worried about yesterday.

    You have two choices now:

    01. Ignore thiss.

     02. Make it readable to the people you care about.

    You know the choice I made.

     &lt;/pre&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/87414.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Stelling van Bas Henzing</title><link>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87408.aspx</link><pubDate>Tue, 18 Apr 2006 20:29:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87408.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/87408.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2006/04/18/87408.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/87408.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/87408.aspx</trackback:ping><description>'Ervaren alpinisten laten vaak het leven omdat zij er &lt;b&gt; onterecht &lt;/b&gt; van uit gaan dat de berg weet dat zij ervaring hebben'
&lt;p&gt;&lt;br&gt;
Stelling bij het proefschrift 'Aerosol Modelling Spatial Distribution and Effects on Radiation' van Bas Henzing&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/87408.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Optimized SED</title><link>http://blogger.xs4all.nl/borstr/archive/2006/03/03/80561.aspx</link><pubDate>Fri, 03 Mar 2006 01:12:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2006/03/03/80561.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/80561.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2006/03/03/80561.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/80561.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/80561.aspx</trackback:ping><description>&lt;pre&gt;For the site of the badminton club i use a menu file with the following structure
=-=
..|Jubileum commissie|jubcommissie.php||||1
..|Geschiedenis|geschiedenis.php|Geschiedenis|||0
.|Jubileum|jubileum.php|Jubileum|||1
..|Doedag 1 April 2006|doedag.php|Gezellige doe dag 1 april 2006|||1
..|Clinic NK Badminton 5 februari 2006|jubclinic.php|Clinic bij de NK Badminton 5 februari 2006|||1
...|Verslag Berend|jubclinberend.php||||1
...|Verslag Marlieke|jubclinmarlieke.php||||1
...|Verslag Nick|jubclinnick.php||||1
=-=-=
All the files are generated from a single source.
This file, in turn retrieves the specific part to display.
In this way my navigation in the site is always correct.

The problem was to extract the file names 
First i did this with the following sed command sequence:
"s/^[.a-z A-Z0-9]*|//;s/^[a-z A-Z]*|//;s/|[!-~ ]*$//"  
This went wrong with the big descriptions.
And, most of all, it was not really an elegant solution.
After some pondering (and some light reading in a perl manual) the following string gave me an elegant solution:
"s/[^|]*|//;s/[^|]*|//;s/|[!-~ ]*$//" 
The separators are | so if they are not found, than loop until they are found.

The following file is used to generate all the basic files:
=-=
@echo off
Echo starten
echo Aanmaken filelist
sed "s/[^|]*|//;s/[^|]*|//;s/|[!-~ ]*$//" bcb-menu.txt &gt;1.txt
Echo aanmaken files
echo on
for /f  "skip=1" %%a in (1.txt) do copy index.php %%a
=-=-=

So i am able to adapt my menu-structure rather fast.&lt;/pre&gt;&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/80561.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>Robert Borst</dc:creator><title>Upgrade ADSL Modem and Voip</title><link>http://blogger.xs4all.nl/borstr/archive/2006/02/14/78357.aspx</link><pubDate>Tue, 14 Feb 2006 00:38:00 GMT</pubDate><guid>http://blogger.xs4all.nl/borstr/archive/2006/02/14/78357.aspx</guid><wfw:comment>http://blogger.xs4all.nl/borstr/comments/78357.aspx</wfw:comment><comments>http://blogger.xs4all.nl/borstr/archive/2006/02/14/78357.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/borstr/comments/commentRss/78357.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/borstr/services/trackbacks/78357.aspx</trackback:ping><description>After some days waiting i got confirmation of the helpdesk that i was able to upgrade my ADSL modem. (The royal dutch telephone company wrote that an update could only be done with the previous bios instead of the older one i have..... they were wrong.)

Took about 30 mins (the most was the making of screendumps to get a backup of the settings..)

Seems to be working ok.

The voip only worked if you go to the XS4all support site and run a modem-voip-setup script.

But now it works ok. 
I now have 2 voip numbers and working nicely&lt;img src ="http://blogger.xs4all.nl/borstr/aggbug/78357.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>
