Skittles Vodka

Update (2022) Something i’ve been doing for years now.

Making skittle vodka.

If i remember it well, is was a students solution to get a cheap ‘fancy’ drink. Vodka is cheap, and skittles or other candy was easily obtainable.

Buy a bottle of vodka, not too cheap, but certainly not a pricy one.
Get some bag’s of kittles. (does are mixed so you have to sort them by color/taste)
Take some small bottles and fill them each with a skittle color, and fill the rest of the bottle with Vodka.
Now we wait from the skittles to dissolve completely.
Strain the dissolved foamy mixture using a paper kitchentowel into another bottle.
( i have 6 bottles, 5 for each color skittle and one to transfer one to the other )
Sometimes i’ll do it a second time, to get a clearer result.

Ready to drink

Most of the times, i take a longdrink glass, pour some skittle vodka in it add ice and fill the rest with 7-UP.

Web controller for Acdsee

UPDATE: 2023 It’s still working

I made a webcontroller for viewing images on a big TV.

Using a Acdsee instance with MCE Controller installed and a webserver.

https://tig.github.io/mcec/example_commands.html

Rate the picture 1-5, clear rating, slideshow start, escape, open/close image, zoom-in out and zoom-reset. Previous and next image fullscreen and delete/yes

Some used defined keys (see php file)

 if ($cmd=="I"){ $put="chars:+"; };
 if ($cmd=="O"){ $put="chars:-"; };
 if ($cmd=="R"){ $put="chars:*"; };
 if ($cmd=="Y"){ $put="chars:y"; };
 if ($cmd=="F"){ $put="chars:f"; };
 if ($cmd=="D"){ $put="delete"; };
 if ($cmd=="N"){ $put="right"; };
 if ($cmd=="P"){ $put="left"; };
 if ($cmd=="ENTER"){ $put="enter"; };
 if ($cmd=="ESC"){ $put="escape"; };

PHP Script for the buttons and creating the TCP packets for MCE.

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<?php
  $ip           = "remoteserver";
  $port         = "5150";

if (empty($put)) $put = "";
if (empty($line)) $line = "";
$cmd=$_POST['cmd'];
 if ($cmd=="I"){ $put="chars:+"; };
 if ($cmd=="O"){ $put="chars:-"; };
 if ($cmd=="R"){ $put="chars:*"; };
 if ($cmd=="Y"){ $put="chars:y"; };
 if ($cmd=="F"){ $put="chars:f"; };
 if ($cmd=="D"){ $put="delete"; };
 if ($cmd=="N"){ $put="right"; };
 if ($cmd=="P"){ $put="left"; };
 if ($cmd=="ENTER"){ $put="enter"; };
 if ($cmd=="ESC"){ $put="escape"; };
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
    $task = send_cmd("$put", $fp);

 if ($cmd=="1" || $cmd=="2" || $cmd=="3" || $cmd=="4" || $cmd=="5" || $cmd=="0"){
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftdown:ctrl", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("$cmd", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftup:ctrl", $fp);
  fclose($fp);
        };
if ($cmd=="S") {
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftdown:alt", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("$cmd", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftup:alt", $fp);
  fclose($fp);
        };

 if ($cmd=="fnietF"){
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftdown:shift", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftdown:ctrl", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("$cmd", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftup:ctrl", $fp);
  fclose($fp);
  $fp = stream_socket_client("tcp://".$ip.":".$port, $errno, $errstr, 30);
        send_cmd("shiftup:shift", $fp);
  fclose($fp);
        };



//}
  echo "<html><head><title></title></head>";
  echo "<body><center><H1>";
$callself=$_SERVER['PHP_SELF'];
echo "<div data-role=\"controlgroup\" data-type=\"horizontal\">";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"1\"><input type=\"submit\" value=\"1\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"2\"><input type=\"submit\" value=\"2\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"3\"><input type=\"submit\" value=\"3\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"4\"><input type=\"submit\" value=\"4\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"5\"><input type=\"submit\" value=\"5\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"0\"><input type=\"submit\" value=\"Rate Clear\" /></form>\n";
echo "</div>";

echo "<div data-role=\"controlgroup\" data-type=\"horizontal\">";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"S\"><input type=\"submit\" value=\"SLIDESHOW\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"ESC\"><input type=\"submit\" value=\"ESC\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"ENTER\"><input type=\"submit\" value=\"OPEN/CLOSE\" /></form>\n";
  fclose($fp);
echo "</div>";

echo "<div data-role=\"controlgroup\" data-type=\"horizontal\">";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"I\"><input type=\"submit\" value=\"ZOOMIN\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"R\"><input type=\"submit\" value=\"ZOOMRESET\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"O\"><input type=\"submit\" value=\"ZOOMOUT\" /></form>\n";
echo "</div>";

echo "<div data-role=\"controlgroup\" data-type=\"horizontal\">";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"P\"><input type=\"submit\" value=\"PREV\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"D\"><input type=\"submit\" value=\"DEL\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"Y\"><input type=\"submit\" value=\"Y\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"F\"><input type=\"submit\" value=\"FULL\" /></form>\n";
    echo "<form data-transition=\"none\" style=\"display:inline;\" name=\"input\" action=\"$callself\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"N\"><input type=\"submit\" value=\"NEXT\" /></form>\n";
echo "</div>";
  echo "</body></html>";
  function send_cmd($cmd, $fp){
    fwrite($fp, $cmd);
    fwrite($fp, "\n");
        return;
  }
?>

Little drawing about one of the greatest pipers.

May he rest in peace.

He was a great driving force for current pipers like: Ross Ainsley and Ali Hutton.

His music was innovate. Not alway liked by purists.
He listened a lot to Breton music, and used a lot of cross-fingering to play extra notes.

The (bad) comic about him.

See the Gordon Duncan Memorial Trust at https://www.gordonduncan.co.uk/

Great tunes:

Some of the tunes I play:

  • Mexican Hat Dance
  • Thunderstruck/Angus Thing
  • Full moono down under
  • Muineira De Poio
  • Smeseno Horo
  • 98 Jig
  • Soup Dragon (Banjo)
  • Belly Dancer (started this on Border Pipes because of the tuning)
  • Sleeping Tune
  • Andy Renwick’s Ferret
  • Pressed of time (Mandoline)
  • Fourth Floor
  • High Drive (smallpipe with our Folk Band)
  • Zeeto the Bubbleman (long time ago)

Wooden candle holder xmas tree

While we were in Zweden for several months (2011). Coline for work, and i tagged along. ( Working using VPN )

We saw a wooden xmas thingy, Coline liked it very much.

Picture we took in Sweden 2011

I made it myself because it was not a ‘thing’ yet in the Netherlands. Now you can buy these everywhere.

Medieval prison and woodwork

This year we did an Eastern Europe trip.
Every country left and down from Germany.

One of the countries was Romania. And we visited a lot of Castles.
So I became interested in recreating one of the scenes I saw.

It was a square medieval prison. I was captured by the natural materials being used in the displays.
Stone, wood, metal, rope and straw.

I was working on a Da Vinci model at the time. (We visited a Da Vinci exposition in Den Haag.)
I love his designs.

So I build a prison, with a straw bed. Some mini items like a water jug and a piece of bread.

Then I made some torture devices.

I found some parts recently, hopefully the rest will turn up soon.

Flogging pole

Example of the bed (also lost .. during moving??)

Making Sake

(2011) Second or third time making sake.

UPDATE: 20140914 Making sake again

UPDATE: 20170611 Making sake again

See also : https://www.henriaanstoot.nl/2013/08/02/makgeolli-2/

Rice you should use: Shuzo Kotekimai or Sakamai

One of the first recipes i’ve used was this one: (Google translated)

1500g broken or finely ground rice
1400 grams of sugar
juice of 2 lemons
500 g of raisins
yeast nutrient salt
yeast neutral
water up to 5 liters

Finely chop the raisins and mix them with the rice.
Pour 4 liters of boiling water, in which the sugar has been dissolved, over this.
Let the mixture cool and add the lemon juice, yeast and nutrient salts.
After 3 weeks, you need to strain the mixture and pour it into a fermentation bottle.
After the bottle is closed with a water seal and the volume is brought to 5 liters,
the fermentation process can proceed normally.
Continue to act according to the regulations.

Remark
This wine needs an initial fermentation period of 3 weeks. The must must go in
be carefully protected at that time. This can best be done by
primary process in a large bottle, closed with a wad of cotton wool.
The bottle should be shaken daily. It is very possible that after 3 weeks the
fermentation process is well advanced. This depends on various factors.
So there is the possibility that the secondary fermentation process could be very short.
Sake is at its best when lightly sweetened. So sweeten the wine carefully after it
has stabilized. Taste the wine when it is heated (about 50 degrees Celsius)
and then sweeten it with small amounts of sugar.

Another recipe i’ve used (source Grapestomper?)


Ingredients:

2-1/2 pounds, rice (husked or raw)
1/2 pint, grape concentrate or 1lb of light raisins
7 pints, hot water
2-1/2 pounds, corn sugar or honey
3 teaspoons, acid blend
3/4 teaspoon, yeast energizer (nutrient)
1 tablet, Campden
1 pack, sherry yeast

Procedure:

Wash and coarsely crush rice.
Place rice and chopped raisins in nylon straining bag, tie top and place in primary fermentation container.

Pour hot water over rice and stir in all ingredients except yeast and energizer (nutrient).
(Use grape concentrate if not using raisins)

Wait 48 hours.

Add yeast and energizer and cover primary.
Stir daily, checking gravity and pressing pulp lightly.
When gravity reaches 1.050 (2-3 days), add 1/4 pound dissolved sugar or honey per gallon.

When gravity drops to 1.030 (6-7 days) strain juice from bag.

Siphon wine into secondary fermentation container and attach airlock.
At specific gravity 1.020 add another 1/4lb of dissolved sugar or honey per gallon.

When fermentation is complete. SG of 1.000 or less, siphon off into a clean secondary container and attach airlock.

Siphon every 2 months to aid in clearing.
Bottle when fermentation ceases or when ready.

It is possible to continue building up alcohol by adding additional sugar until fermentation ceases. For a sweeter drink, add 1/2 teaspoon stabilizer and 1/4 pound dissolved sugar, per gallon, before bottling.
Of course, you can adjust this recipe according to your past wine making experiences.

3th recipe i’ve used (Source?)

Koji-Kin for sake
By using these trace elements it is possible to convert the starch present in the rice to sugars, just as happens during the brewing of beer. The rice therefore gets the name RICE MALT (the Japanese KOME-KOJI). This sachet contains 10g of these spores (Koji-Kin). This one traces turn the rice into an enzyme-rich rice malt, resulting in a complex and
special aroma that can be compared to the mold used in cheese making. It making this drink is done in 2 steps: first you make your rice malt and then other steamed rice added to make the Sake. Make sure all materials used properly have been cleaned.
Step 1: Making the rice malt
Needed: 400 g rice (small grain) and ½ teaspoon of this Koji-Kin.
Required materials: a sieve, a steamer or material to do this, a cotton cloth to collect the condensation moisture.
1. Wash the 400 g of rice until the water runs clear, then leave the rice for an hour and a half soak in water.
2. Then let the rice drain for at least 20 minutes. Steam the rice. Steamed rice is slightly translucent and not white, slightly sticky (easy to disassemble) and feels rubbery between the teeth. Make sure that the rice cannot come into contact with the water. To do this, place the cotton cloth over the rice so that the condensed water is no longer
drip on the rice.
3. Let cool to 30°C. Place the rice in an enameled or stainless steel container and add ½ tsp
Koji-Kin. Stir well. Stirring can optionally be facilitated by addition of a teaspoon of wheat flour. Cover with damp cheesecloth or a damp cloth cotton cloth. The pouch of Koji-Kin remains free of infection despite frequent opening.
Keep the rice at a temperature of 30°C for 40 hours. You can use this temperature maintain by using a hot plate or an electric cooking pot which still best insulated too. Make sure that the temperature does not exceed this 30°C!
Higher temperatures can cause the growth of the KOJI to stop. A warm and dark place is therefore necessary. Stir everything well once every 10 hours to remove all traces to distribute equally. The rice will start to turn white after about 15 hours and there will be a strong cheesy smell can be perceived. This rice is now ready to starch other steam-cooked rice to sugars.
How do you know if you have made a good rice malt?
Rice malt is always white to slightly brown in color. The smell is that of a strongly scented cheese (no mold smell), it may not be the most pleasant smell, but it normally does not stink.
You will see that, over time, small threads grow from the rice. If not these threads being white in color means that you have grown other spores than the KOJI and you can use them do not use rice malt. It is best to use a sieve to add the KOJI-KIN spores in order to distribute them evenly over the rice, stir everything thoroughly. Malt rice can be used in the freezer for later use.

Step 2: Add other steamed rice
Needed: 1500 g rice (small grain), 400 g rice malt, 5 g citric acid, 4 liters of water (chlorine-free), 5 g
champagneyeast.
Materials: a sieve, a container with a lid with a capacity of 10 liters (enamel, stainless steel or glass)
1. Wash the rice until the water runs clear, then soak the rice for an hour and a half water.
2. Steam the rice.
3. Let cool to 30°C.
4. Dissolve the citric acid in the container with 4 liters of water. This citric acid will prevent possible infection
and will also give a slightly sour taste to your sake.
5. Add the rice malt and stir well.
6. Then add the cooled, just steamed rice and stir well.
7. Add the yeast and cover with the lid. Keep it all at room temperature. The rice will be a lot of the water, after 2 days the rice breaks down into one fermenting white mush. On fermentation lower temperature will make your sake taste better. The best temperature is around 18°C.
8. Stir well at least once a day. After 2-3 days you will have a pleasant smelling sake smell perceive.
9. After two weeks, the fermentation is over. Pour everything through a sieve or any other kind filter. The filtering can take up to 24 hours. The sake is best drunk chilled, has an alcohol content from 14 to 18 vol.% alc. and can easily be served as an accompaniment to fish and cheese. Want to
if you want to give your sake a slightly sweeter character, you can still do something at the end of the fermentation
add steamed rice (it is best to use a combination of plain rice and rice malt). This starts the fermentation will return and more alcohol will be formed. Eventually, the fermentation will stop and the alcohol content can even reach 19alc. vol.% have been incurred. Of course you can taste it adjust by using sugar (sweeter) or citric acid (dryer). The shape of sake the one you have now made is called 'doburoku' and is a white cloudy drink. To make the drink longer
can be stored, you can pasteurize them (5 minutes at 55°C).


kanpai – 乾杯 (かんぱい) : a noun, but often used like an interjection to say “cheers” in Japanese.

Planning for a Cocktail night

I love making cocktails for my ladies, but for the occasional drink, now for a cocktail night.

See my other post about my cocktail bar in another post.

30th Juli I’m entertaining Arja, Coline and Monique by serving cocktails.

So i made a little list of cocktails to choose from.
I say choose, i could not have guessed i’d have to make them all!

One page of the cocktail list, with scorecards

So i made a little generator

Using a blank template png and a bash script i generated above.

#!/bin/bash
cp cocklist-leeg.png 1.png
xstart=450
ystart=300
xspace=30
yspace=40
# deze straks uitrekenen
nextitem=170
nextrow=550
ls drinks | sort -n  | grep -v totallist | while read drink; do
if [ $(echo $drink | cut -c-2 ) -gt 90 ] 
then 
	color="#ffcc00"  
else 
	color="#ff7406" 
fi
convert -font Impact.ttf -fill "$color" -pointsize 43 -annotate +$xstart+$ystart "$(echo $drink | cut -c3- )" 1.png 2.png
echo $drink
xstart2=$[$xstart + $xspace]
ystart2=$[$ystart + $yspace]
convert -font Trebuchet_MS_Bold_Italic.ttf -fill black -pointsize 30 -annotate +$xstart2+$ystart2 "$(cat "drinks/$drink")" 2.png 3.png
cp 3.png 1.png
echo -n "       "
echo $(cat "drinks/$drink")
lines=$[ $(cat "drinks/$drink"|wc -l) * 36 ]
lines=$[lines + 65]
ystart=$[$ystart + $lines]

if [ $ystart -gt 1900 ] ; then ystart=300 ; xstart=$[$xstart + $nextrow]
fi



done
cp 3.png cocktailist.png

Directory structure

makecock        # above script
Impact.ttf      # used font
Trebuchet_MS_Bold_Italic.ttf # used font
cocklist-leeg.png            # Empty template
drinks/01Alien (shooter)     # Drinks dir
drinks/07Half and half (Shooter)

Files in the drink directory have the short list of ingredients.

Blue curacau,
Whisky cream

Run the script and you end up with the above images. Have fun.

Empty template

Some drinks that evening:

I made a better cocktail bar after this adventure.
Well .. i gave three ladies an orgasm this night, not bad 🙂

I made a very bad playlist .. but I was even dancing the Macarena at 4am.

# some of the tunes LOL
01-george_ezra-budapest.mp3
01 - Nakatomi - Sing a Song.mp3
01 - Turn Down For What.flac
02.Sak Noel - Loca People - WTF.mp3
03 - Here Comes The Hotstepper.mp3
04_daft_punk-harder_better_faster_stronger-wax.mp3
[05] Mas Que Nada - Sergio Mendes and Brasil '66.mp3
084 - Tune Up! - Ravers Fantasy (Tibby Remix).mp3
09-pendulum_-_out_here-boss.mp3
15 - DJ Aligator - The Whistle Song (Blow My Whistle Baby).mp3
201) Shaggy - Boombastic [1995].mp3
All that she wants - Ace of Base.mp3
Anders Nilsen - Salsa Tequila.mp3
Aqua  Barbie girl.mp3
Bellini-_-samba_de_janero_club_mix.mp3
Benni Benassi - Satisfaction.mp3
Black Eyed Peas - My Humps.mp3
Bloodhound Gang - The Bad Touch - discoverychannel.mp3
Bloodhound Gang - Uhn Tiss Uhn Tiss Uhn Tiss.mp3
Blumchen - Heute Ist Mein Tag.mp3
Boom Boom Boom - Venga Boys.mp3
Café Del Mar.-.Volume 1.-.04.-.Penguin Cafe Orchestra  Music For A Found Harmonium.-.3astUpRoaR.mp3
Carrapicho - Tic Tic Tac.mp3
Colette - Think You Want It.mp3
Doop - Doop.MP3
Dreams.mp3
Eternal I wanna be the only one.MP3
Fire Burning - Sean Kingston.mp3
From Paris To Berlin.mp3
GANGNAM STYLE.MP3
Geen idee klinkt wel leuk.mp3
Hengelo-o-o.mp3
Hot Tamale.mp3
Iets met moonlight shadow.mp3
Ievan Polka
Jerry C - Canon Rock (backing track).wma
Kim Kay - Li La Li (From Videoclip).mp3
Kim Kay - Li la li la li.mp3
Kim Kay - Lilali.mp3
kp ft. young sam   hot tamale (a. eyvaz) - [MP3JUICES.COM].mp3
L.C.D. - Zorba's Dance.mp3
Lily Allen - Fuck You.mp3
Lloyd-Dedication_to_My_Ex_(Feat_Andre_3000__Lil_Wayne).mp3
[Los Del Rio] Macarena.mp3
LosUmbrellos_NoTengoDinero.mp3
Music For Cocktails Moments
Odorikuruu Mamboleo - Best AMV 2001.mp3
Polka power!.mp3
Populair met geinige beat
Professional widow (Remix) - Tori Amos.mp3
refugee camp-Avenues.mp3
Sail.mp3
Sander Hoogendoorn - Volvo IKEA (Official lyric video).mp3
Tamale.mp3
Tenacious D - Tribute.mp3
TOKYO GHETTO PUSSY - I KISS YOUR LIPS.MP3
V.A. - Q-Music - De Foute 111 (2011) DutchReleaseTeam
Ylvis - The Fox.mp3
YOLANDA BE COOL &  DCUP   WE NO SPEAK AMERICANO (Official Video).mp3

Kilts and pipe-bands

I’ve played with several pipe-bands, all with different kilts.

First band I’ve played with was the Concord Pipe Band.
Here we first wore Gordon Day Dress, after that the Modern Gordon.

Later i played with the 48th highlanders of Holland and City of Amsterdam.
Stewart of Fingask and Modern MacPherson Tartan.

In 2001 I played with the Highland Valley pipe band.
They wear a Modern Hunting Stewart.

On this day (2011) i got my own Kilt.
A Isle of Skye Tartan.

Old full dress uniform

New shirts for our group “Prutsers”

Design made with Inkscape

Joke about this: Someone’s granny said: “Indeed prutsers .. 3 is far to hot for those shirts”

Prutser .. as used many times on this site.

Definitions of botcher. someone who makes mistakes because of incompetence. synonyms: blunderer, bumbler, bungler, butcher, fumbler, sad sack, stumbler. type of: incompetent, incompetent person.

Used in our context: Not serious about the things we create, fast fun and easy .. then we take it apart and make something else.

"If something is worth doing, it's worth overdoing."