<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.emfcamp.org/2014/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vreemt</id>
	<title>Electromagnetic Field - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.emfcamp.org/2014/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vreemt"/>
	<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/wiki/Special:Contributions/Vreemt"/>
	<updated>2026-04-21T16:47:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3526</id>
		<title>TiLDA MKe</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3526"/>
		<updated>2014-09-03T08:12:02Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Hardware */  spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The TiLDA MKe project, Code name &amp;quot;ElectroMagnetic Boogaloo&amp;quot;, is being headed by [[User:Dpslwk|'RepRap' Matt]] and [[User:thinkl33t|Bob]]&lt;br /&gt;
[[File:Badge_Front.png|right|thumb|Front]]&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/E_(mathematical_constant) Why MKe?]&lt;br /&gt;
&lt;br /&gt;
=Aim= &lt;br /&gt;
The main aim of the 2014 badge is to give camp attendees live schedule updates and notifications. As with the original TiLDA we wanted to keep with an Arduino compatible platform that will allow badge hacking during and after the camp. As with the previous badge all code and design files are available.&lt;br /&gt;
&lt;br /&gt;
==Battery Warning==&lt;br /&gt;
'''Always make sure you plug your battery in the right way round!'''  If you don't, the charge controller will let out its magic smoke and die / become damaged and die later.  The badge itself will still work, but it wont have the ability to charge anymore.  &lt;br /&gt;
&lt;br /&gt;
We think this is the cause of the charge controller issues a small number of badges had at the event was due to this mistake being made during final assembly on-site. &lt;br /&gt;
&lt;br /&gt;
'''Lithium Batteries are dangerous!'''  While these batteries are better protected than the MK1 batteries, they are still scary.  Do not short your battery, and if it starts bulging or gets punctured, '''DO NOT USE IT AGAIN''' and dispose of it properly.&lt;br /&gt;
&lt;br /&gt;
==Features and Functions==&lt;br /&gt;
[[File:Badge_Back.png|right|thumb|Back]]&lt;br /&gt;
* Torch mode - Press the light button next to the screen. It will only light up fully if it's hung upside down to avoid blinding&lt;br /&gt;
* Snake&lt;br /&gt;
* Tetris&lt;br /&gt;
* Weather Forecast&lt;br /&gt;
* Schedule&lt;br /&gt;
* Can receive notifications about upcoming schedule items you're interested in. Visit schedule.emf.camp to set up your account.&lt;br /&gt;
&lt;br /&gt;
'''Please note that there's a known issue with the badge freezing'''. We're trying to work out what's causing this, but in the meantime pressing &amp;quot;reset&amp;quot; should get the badge back to life. Help with debugging is highly welcome!&lt;br /&gt;
&lt;br /&gt;
== How to get going ==&lt;br /&gt;
=== Set up your environment ===&lt;br /&gt;
* Plug your badge into your computer via USB&lt;br /&gt;
* Download Arduino IDE 1.5.7 from http://arduino.cc/en/main/software#toc3&lt;br /&gt;
* “git clone” or download TiLDA source code from https://github.com/emfcamp/Mk2-Firmware&lt;br /&gt;
* Start the Arduino IDE. &lt;br /&gt;
* Now you have to change the sketchbook-folder to be the folder you just cloned. To do this use File | Preferences | “Set Sketchbook location”. On MacOS, this is Arduino | Preferences &lt;br /&gt;
* Restart the Arduino IDE&lt;br /&gt;
* Open sketch “EMF2014”&lt;br /&gt;
* Set Tools | Board to MKe v0.333 (RTOS Core)&lt;br /&gt;
* Set Tools | Port to correct port (you might have to research this - some operating systems like Windows require you to install drivers or become a member of a certain group)&lt;br /&gt;
** On MacOS this is will start /dev/tty.usbmodem with 4 digits, and change for each port&lt;br /&gt;
** On Linux this is usually /dev/ttyACM0 but may be a higher number if you have other USB Serial devices&lt;br /&gt;
* Hit the upload button&lt;br /&gt;
* Wait&lt;br /&gt;
* Woohoo - You just successfully uploaded code to your badge&lt;br /&gt;
&lt;br /&gt;
=== Your first “Hello world” app ===&lt;br /&gt;
There’s a “HelloWorldApp.cpp” file in which you can play around. In order for it to show up on the Homescreen you have to uncomment line 51 in AppManager.cpp and flash the changed code to the badge. Great app pull requests are appreciated!&lt;br /&gt;
&lt;br /&gt;
=== Why are things so different from standard Arduino code? ===&lt;br /&gt;
We’re using a library called FreeRTOS that allows us to multitask - something that’s normally not possible with standard Arduino code. This allows us to run multiple tasks at the same time. FreeRTOS uses preemptive scheduling to switch between the task. Due to this we have to be very careful about how we do some things. For example we can’t just define interrupts for buttons in every task (imagine the mess!) or write to the serial port directly (your task might stop in the middle of the message). &lt;br /&gt;
&lt;br /&gt;
We’ve also spend quite a lot of time to make the build-in components as easy to use as possible without having every task to write lots of boilerplate code. If you feel like using the build-in components on the badge, chances are we already wrote a wrapper for them that is already used by one of the other tasks. &lt;br /&gt;
&lt;br /&gt;
Have a look at the “Documentation” section in this document for a full list of API functions. You will avoid a lot of headaches if you stick to those.&lt;br /&gt;
=== How to use the badge with pure Arduino code ===&lt;br /&gt;
If you prefer you can always start from scratch without FreeRTOS or any of our code, just keep in mind that you won’t be able to receive messages via radio or use any of the API features we already added. Just start a new sketch in the Arduino IDE for that and get going. If you want to load the main firmware again just change the sketch to “EMF2014” and upload again.&lt;br /&gt;
=== Debugging and Gotchas ===&lt;br /&gt;
* The USB serial is set up to 115220 baud. There are lots of terminals that can connect to them&lt;br /&gt;
* If you can’t revive a badge you can short the two erase pins and press the reset button while holding it down.&lt;br /&gt;
* Avoid busy waiting, use FreeRTOS queues and Tilda::delay() instead&lt;br /&gt;
* Don’t use low level functions like interrupts or serial ports directly unless you really, really know how FreeRTOS will handle them. For general logging you can use Tilda::log()&lt;br /&gt;
=== Code structure ===&lt;br /&gt;
* FreeRTOS has the concept of “Tasks” which work like threads. We’ve wrappered them in a class called “Task” (for background stuff) and “Apps” (for foreground, one-at-a-time things)&lt;br /&gt;
* Everything needs to be in the main EMF2014 folder. Subfolders are not allowed. This is an Arduino IDE restriction :(&lt;br /&gt;
=== Radio infrastructure ===&lt;br /&gt;
The radio infrastructure is distributed between DKs. Every “gateway” has a Raspberry Pi with two Ciseco USB radios. We never had the chance to actually try it with a large number of badges in the same spot, so please don’t expect it to work perfectly.&lt;br /&gt;
&lt;br /&gt;
=== Contribute ===&lt;br /&gt;
Send us a pull request via [https://github.com/emfcamp/Mk2-Firmware GitHub] - We’ll do our best to review and merge the good ones during EMF so others can use them.&lt;br /&gt;
&lt;br /&gt;
=Hardware=&lt;br /&gt;
&lt;br /&gt;
The following hardware has been included on the badge.&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmel.com/products/microcontrollers/arm/sam3x.aspx Atmel ATSAM3X8E]&lt;br /&gt;
** This is the same chip as the [http://arduino.cc/en/Main/ArduinoBoardDue Arduino Due] and gives us the base platform for the badge&lt;br /&gt;
** 32bit ARM Cortex M3 * 84MHz&lt;br /&gt;
** 512KBytes Flash RAM&lt;br /&gt;
** 96KBytes of SRAM&lt;br /&gt;
* A 128x64 pixel monochrome LCD display&lt;br /&gt;
* [http://shop.ciseco.co.uk/srf-wireless-rf-radio-surface-mount/ Ciseco SRF Radio]&lt;br /&gt;
** 868Mhz RF Transceiver&lt;br /&gt;
** Simple UART interface&lt;br /&gt;
** Low power sleep mode&lt;br /&gt;
* [http://www.invensense.com/mems/gyro/mpu6050.html MPU-6050] 3-axis Accelerometer and 3-axis gyro&lt;br /&gt;
** I2C interface&lt;br /&gt;
** Tri-Axis angular rate sensor (gyro) with a sensitivity up to 131 LSBs/dps and a full-scale range of ±250, ±500, ±1000, and ±2000dps&lt;br /&gt;
** Tri-Axis accelerometer with a programmable full scale range of ±2g, ±4g, ±8g and ±16g&lt;br /&gt;
** Digital Motion Processing™ (DMP™) engine offloads complex MotionFusion, sensor timing synchronisation and gesture detection&lt;br /&gt;
* PMIC &amp;amp; LiPo&lt;br /&gt;
* Joystick&lt;br /&gt;
* Buttons&lt;br /&gt;
* RGB LEDs&lt;br /&gt;
* IR&lt;br /&gt;
* Arduino Headers&lt;br /&gt;
* Pads for wearable tech&lt;br /&gt;
&lt;br /&gt;
= Firmware Documentation =&lt;br /&gt;
== Debugging ==&lt;br /&gt;
===Tilda::log(String text)===&lt;br /&gt;
&lt;br /&gt;
This logs “text” to the serial console. To read it connect to it via the Arduino IDE Serial Monitor. Don’t use “SerialUSB.println” or similar -- it’s not thread-safe and you might end up with utter nonsense.&lt;br /&gt;
== Buttons ==&lt;br /&gt;
The badge has 8 buttons: Up, Down, Left, Right, Center (on the joystick), A, B and Light. You can use arduino-style “digitalRead(BUTTON_RIGHT)” to read the current status of any button, but you can’t define your own interrupt (because we already did that). This doesn’t mean you can’t wait for a certain button to be pressed, it just means you have to approach it slightly differently:&lt;br /&gt;
&lt;br /&gt;
Example: A simple app displaying the button code&lt;br /&gt;
 void ButtonApp::task() {&lt;br /&gt;
     ButtonSubscription allButtons = Tilda::createButtonSubscription(LIGHT | A | B | UP | DOWN | LEFT | RIGHT | CENTER);&lt;br /&gt;
 &lt;br /&gt;
     while(true) {&lt;br /&gt;
         Button button = allButtons.waitForPress(1000);&lt;br /&gt;
         if (button == A) {&lt;br /&gt;
             debug::log(“You pressed button A”);&lt;br /&gt;
         } else if (button == LEFT) {&lt;br /&gt;
             debug::log(“You pressed LEFT”);&lt;br /&gt;
         } else if (button == NONE) {&lt;br /&gt;
             debug::log(“No button has been pressed in 1000ms”); &lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription Tilda::createButtonSubscription(&amp;lt;buttons&amp;gt;)===&lt;br /&gt;
&lt;br /&gt;
Registers a subscriptions for a defined set of buttons and returns a ButtonSubscription. Multiple Buttons can be combined via “|” (see example above). One button can not be subscribed by more than 10 subscriptions (which shouldn’t really happen, but keep it in mind). &lt;br /&gt;
&lt;br /&gt;
Don’t use this function in a constructor, it requires FreeRTOS to be running. Using it inside the task() function is the only safe place for it.&lt;br /&gt;
&lt;br /&gt;
===Button ButtonSubscription::waitForPress(TimeInTicks timeout)===&lt;br /&gt;
&lt;br /&gt;
This is normally called in a loop. It causes the task to block until one of the buttons has been pressed. If the timeout occurs before any button has been pressed “NONE” will be returned. &lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::waitForPress()===&lt;br /&gt;
&lt;br /&gt;
The same as above, but without the timeout.&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::clear()===&lt;br /&gt;
&lt;br /&gt;
This should be called after an App has been suspended, just before it’s going to be resumed. It causes the Queue to be cleared which could otherwise lead to buttons being reported that have been pressed while other apps were in the foreground. Have a look at the FlashLightApp for an example.&lt;br /&gt;
&lt;br /&gt;
==LEDs==&lt;br /&gt;
===Tilda::setLedColor(Led led, Color color);===&lt;br /&gt;
===Tilde::setLedColor(Color color);===&lt;br /&gt;
&lt;br /&gt;
Sets the color of all or one led. Color is an object that takes red, green and blue as a value between 0 and 255 each. If no led is defined both leds will be set to the same color.&lt;br /&gt;
&lt;br /&gt;
Example: A simple color-changing task&lt;br /&gt;
 void ColorfulTask::task() {&lt;br /&gt;
     while(true) {&lt;br /&gt;
         Tilda::setLedColor(LED1, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::setLedColor(LED2, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==Display==&lt;br /&gt;
&lt;br /&gt;
The Display Library is based on GLCDv3 (http://playground.arduino.cc/Code/GLCDks0108) but adapted to support our screen.  The Init routine is called in the setup, and the LCDTask takes care of ensuring the screen is updated every 40ms if required (Unlike the original GLCD library, screen updates are decoupled from the graphics routines.)&lt;br /&gt;
&lt;br /&gt;
Also available is M2tklib (https://code.google.com/p/m2tklib/) which is a nice toolkit library.  Further details on using this will come later, but expect the main loop to be handled for you, and just passing the menu structure you require for your app.&lt;br /&gt;
&lt;br /&gt;
Right now, you can call the GLCD functions directly with GLCD.DrawBitmap() for example.  This is going to change to be accessed through the GUITask class in the near future, to ensure only one task at a time writes to the screen.  Expect this to be simply GUITask in place of GLCD, along with a registering a redraw call back to GUITask.&lt;br /&gt;
&lt;br /&gt;
Extra features that are included, GLCD.SetRotation() will handle rotation of the screen for you, and GLCD.CurrentWidth() and GLCD.CurrentHeight will give you the correct Width and Height for the current orientation.  GLCD.Width and GLCD.Height constants are not available, and the GLCD predefined Text areas will not be rotated for you, if you require this define your own text areas.&lt;br /&gt;
&lt;br /&gt;
== Sound == &lt;br /&gt;
There's a piezo on the board, but we haven't added code for it to the current firmware. Pull requests are very welcome!&lt;br /&gt;
&lt;br /&gt;
== IMU ==&lt;br /&gt;
=== Tilda::getOrientation ===&lt;br /&gt;
returns &amp;quot; ORIENTATION_HELD&amp;quot;, &amp;quot;ORIENTATION_RIGHT&amp;quot; (joystick to the right of the screen), &amp;quot;ORIENTATION_HUNG&amp;quot; or &amp;quot;ORIENTATION_LEFT&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Flash Storage ==&lt;br /&gt;
We have 2mb of flash storage, but we're not using it in the main firmware - Please get this working!&lt;br /&gt;
== Data: Schedule ==&lt;br /&gt;
===Tilda::getDataStore().getSchedule(day, location) ===&lt;br /&gt;
== Date: Weather Forecast ==&lt;br /&gt;
===Tilda::getDataStore().getWeatherForecast()===&lt;br /&gt;
== Radio ==&lt;br /&gt;
There's no way of sending messages in the current version of the firmware, sorry :(&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
=== Tilda::delay(uint16_t delayInMs) === &lt;br /&gt;
&lt;br /&gt;
Works like Arduino’s delay(), but is FreeRTOS-safe. It’s safe to use this function before FreeRTOS has started.&lt;br /&gt;
&lt;br /&gt;
=== tilda::getClock() ===&lt;br /&gt;
&lt;br /&gt;
Returns an instance of https://github.com/MarkusLange/Arduino-Due-RTC-Library/blob/master/rtc_clock.h&lt;br /&gt;
&lt;br /&gt;
==Settings==&lt;br /&gt;
===uint16_t tilda::getBadgeId()===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==2.12. Battery==&lt;br /&gt;
===float TiLDA::getBatteryVoltage()===&lt;br /&gt;
Returns the current voltage as a float&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getBatteryPercent()===&lt;br /&gt;
Returns the current voltage as a percentage&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getChargeState()===&lt;br /&gt;
Returns the charge state&lt;br /&gt;
&lt;br /&gt;
0 Charging&lt;br /&gt;
1 Not Charging&lt;br /&gt;
&lt;br /&gt;
=Hacking=&lt;br /&gt;
To use our board definition you will need to first get the Arduino 1.5.7 IDE from [http://arduino.cc/en/Main/Software#toc3 here]&amp;lt;br/&amp;gt;&lt;br /&gt;
Next you can download the TiLDA MKe Firmware project from either the [https://github.com/emfcamp/Mk2-Firmware github repo] or via [https://github.com/emfcamp/Mk2-Firmware/archive/master.zip direct download]&amp;lt;br/&amp;gt;&lt;br /&gt;
Now copy the &amp;quot;hardware&amp;quot; folder to your Sketchbook folder, this is usually ~/Sketchbook/&amp;lt;br&amp;gt;&lt;br /&gt;
or&amp;lt;br/&amp;gt;&lt;br /&gt;
Alternative option is to set the Arduino 1.5.7 sketchbook folder to the Mk2-Firmware directory.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Start the Arduino IDE and your will be able to select TiLDA MKe v0.333 for the Tools-&amp;gt;Board menu&lt;br /&gt;
&lt;br /&gt;
* Draft 3d print-able and laser-able case files [http://www.thingiverse.com/thing:436815 here]&lt;br /&gt;
* A Python script (via [https://twitter.com/trotmaster99 @trotmaster99]) that converts a monochrome bitmap image into a format suitable for the Tilda can be found [http://pastebin.com/8XeazQjT here].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=github&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source =&lt;br /&gt;
&lt;br /&gt;
All the source code and designs are on openly available on Github:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Hardware Hardware] - the full board design&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Documentation Documentation] - a dump of relevant parts datasheets&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Firmware Firmware] - source code for the badge software&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Software Software] - server-side software for the network&lt;br /&gt;
&lt;br /&gt;
[[Category: Badges]]&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3525</id>
		<title>TiLDA MKe</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3525"/>
		<updated>2014-09-03T08:11:05Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Radio infrastructure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The TiLDA MKe project, Code name &amp;quot;ElectroMagnetic Boogaloo&amp;quot;, is being headed by [[User:Dpslwk|'RepRap' Matt]] and [[User:thinkl33t|Bob]]&lt;br /&gt;
[[File:Badge_Front.png|right|thumb|Front]]&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/E_(mathematical_constant) Why MKe?]&lt;br /&gt;
&lt;br /&gt;
=Aim= &lt;br /&gt;
The main aim of the 2014 badge is to give camp attendees live schedule updates and notifications. As with the original TiLDA we wanted to keep with an Arduino compatible platform that will allow badge hacking during and after the camp. As with the previous badge all code and design files are available.&lt;br /&gt;
&lt;br /&gt;
==Battery Warning==&lt;br /&gt;
'''Always make sure you plug your battery in the right way round!'''  If you don't, the charge controller will let out its magic smoke and die / become damaged and die later.  The badge itself will still work, but it wont have the ability to charge anymore.  &lt;br /&gt;
&lt;br /&gt;
We think this is the cause of the charge controller issues a small number of badges had at the event was due to this mistake being made during final assembly on-site. &lt;br /&gt;
&lt;br /&gt;
'''Lithium Batteries are dangerous!'''  While these batteries are better protected than the MK1 batteries, they are still scary.  Do not short your battery, and if it starts bulging or gets punctured, '''DO NOT USE IT AGAIN''' and dispose of it properly.&lt;br /&gt;
&lt;br /&gt;
==Features and Functions==&lt;br /&gt;
[[File:Badge_Back.png|right|thumb|Back]]&lt;br /&gt;
* Torch mode - Press the light button next to the screen. It will only light up fully if it's hung upside down to avoid blinding&lt;br /&gt;
* Snake&lt;br /&gt;
* Tetris&lt;br /&gt;
* Weather Forecast&lt;br /&gt;
* Schedule&lt;br /&gt;
* Can receive notifications about upcoming schedule items you're interested in. Visit schedule.emf.camp to set up your account.&lt;br /&gt;
&lt;br /&gt;
'''Please note that there's a known issue with the badge freezing'''. We're trying to work out what's causing this, but in the meantime pressing &amp;quot;reset&amp;quot; should get the badge back to life. Help with debugging is highly welcome!&lt;br /&gt;
&lt;br /&gt;
== How to get going ==&lt;br /&gt;
=== Set up your environment ===&lt;br /&gt;
* Plug your badge into your computer via USB&lt;br /&gt;
* Download Arduino IDE 1.5.7 from http://arduino.cc/en/main/software#toc3&lt;br /&gt;
* “git clone” or download TiLDA source code from https://github.com/emfcamp/Mk2-Firmware&lt;br /&gt;
* Start the Arduino IDE. &lt;br /&gt;
* Now you have to change the sketchbook-folder to be the folder you just cloned. To do this use File | Preferences | “Set Sketchbook location”. On MacOS, this is Arduino | Preferences &lt;br /&gt;
* Restart the Arduino IDE&lt;br /&gt;
* Open sketch “EMF2014”&lt;br /&gt;
* Set Tools | Board to MKe v0.333 (RTOS Core)&lt;br /&gt;
* Set Tools | Port to correct port (you might have to research this - some operating systems like Windows require you to install drivers or become a member of a certain group)&lt;br /&gt;
** On MacOS this is will start /dev/tty.usbmodem with 4 digits, and change for each port&lt;br /&gt;
** On Linux this is usually /dev/ttyACM0 but may be a higher number if you have other USB Serial devices&lt;br /&gt;
* Hit the upload button&lt;br /&gt;
* Wait&lt;br /&gt;
* Woohoo - You just successfully uploaded code to your badge&lt;br /&gt;
&lt;br /&gt;
=== Your first “Hello world” app ===&lt;br /&gt;
There’s a “HelloWorldApp.cpp” file in which you can play around. In order for it to show up on the Homescreen you have to uncomment line 51 in AppManager.cpp and flash the changed code to the badge. Great app pull requests are appreciated!&lt;br /&gt;
&lt;br /&gt;
=== Why are things so different from standard Arduino code? ===&lt;br /&gt;
We’re using a library called FreeRTOS that allows us to multitask - something that’s normally not possible with standard Arduino code. This allows us to run multiple tasks at the same time. FreeRTOS uses preemptive scheduling to switch between the task. Due to this we have to be very careful about how we do some things. For example we can’t just define interrupts for buttons in every task (imagine the mess!) or write to the serial port directly (your task might stop in the middle of the message). &lt;br /&gt;
&lt;br /&gt;
We’ve also spend quite a lot of time to make the build-in components as easy to use as possible without having every task to write lots of boilerplate code. If you feel like using the build-in components on the badge, chances are we already wrote a wrapper for them that is already used by one of the other tasks. &lt;br /&gt;
&lt;br /&gt;
Have a look at the “Documentation” section in this document for a full list of API functions. You will avoid a lot of headaches if you stick to those.&lt;br /&gt;
=== How to use the badge with pure Arduino code ===&lt;br /&gt;
If you prefer you can always start from scratch without FreeRTOS or any of our code, just keep in mind that you won’t be able to receive messages via radio or use any of the API features we already added. Just start a new sketch in the Arduino IDE for that and get going. If you want to load the main firmware again just change the sketch to “EMF2014” and upload again.&lt;br /&gt;
=== Debugging and Gotchas ===&lt;br /&gt;
* The USB serial is set up to 115220 baud. There are lots of terminals that can connect to them&lt;br /&gt;
* If you can’t revive a badge you can short the two erase pins and press the reset button while holding it down.&lt;br /&gt;
* Avoid busy waiting, use FreeRTOS queues and Tilda::delay() instead&lt;br /&gt;
* Don’t use low level functions like interrupts or serial ports directly unless you really, really know how FreeRTOS will handle them. For general logging you can use Tilda::log()&lt;br /&gt;
=== Code structure ===&lt;br /&gt;
* FreeRTOS has the concept of “Tasks” which work like threads. We’ve wrappered them in a class called “Task” (for background stuff) and “Apps” (for foreground, one-at-a-time things)&lt;br /&gt;
* Everything needs to be in the main EMF2014 folder. Subfolders are not allowed. This is an Arduino IDE restriction :(&lt;br /&gt;
=== Radio infrastructure ===&lt;br /&gt;
The radio infrastructure is distributed between DKs. Every “gateway” has a Raspberry Pi with two Ciseco USB radios. We never had the chance to actually try it with a large number of badges in the same spot, so please don’t expect it to work perfectly.&lt;br /&gt;
&lt;br /&gt;
=== Contribute ===&lt;br /&gt;
Send us a pull request via [https://github.com/emfcamp/Mk2-Firmware GitHub] - We’ll do our best to review and merge the good ones during EMF so others can use them.&lt;br /&gt;
&lt;br /&gt;
=Hardware=&lt;br /&gt;
&lt;br /&gt;
The following hardware has been included on the badge.&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmel.com/products/microcontrollers/arm/sam3x.aspx Atmel ATSAM3X8E]&lt;br /&gt;
** This is the same chip as the [http://arduino.cc/en/Main/ArduinoBoardDue Arduino Due] and gives us the base platform for the badge&lt;br /&gt;
** 32bit ARM Cortex M3 * 84MHz&lt;br /&gt;
** 512KBytes Flash RAM&lt;br /&gt;
** 96KBytes of SRAM&lt;br /&gt;
* A 128x64 pixel monochrome LCD display&lt;br /&gt;
* [http://shop.ciseco.co.uk/srf-wireless-rf-radio-surface-mount/ Ciseco SRF Radio]&lt;br /&gt;
** 868Mhz RF Transceiver&lt;br /&gt;
** Simple UART interface&lt;br /&gt;
** Low power sleep mode&lt;br /&gt;
* [http://www.invensense.com/mems/gyro/mpu6050.html MPU-6050] 3-axis Accelerometer and 3-axis gyro&lt;br /&gt;
** I2C interface&lt;br /&gt;
** Tri-Axis angular rate sensor (gyro) with a sensitivity up to 131 LSBs/dps and a full-scale range of ±250, ±500, ±1000, and ±2000dps&lt;br /&gt;
** Tri-Axis accelerometer with a programmable full scale range of ±2g, ±4g, ±8g and ±16g&lt;br /&gt;
** Digital Motion Processing™ (DMP™) engine offloads complex MotionFusion, sensor timing synchronization and gesture detection&lt;br /&gt;
* PMIC &amp;amp; LiPo&lt;br /&gt;
* Joystick&lt;br /&gt;
* Buttons&lt;br /&gt;
* RGB LED's&lt;br /&gt;
* IR&lt;br /&gt;
* Arduino Headers&lt;br /&gt;
* Pads for wearable tech&lt;br /&gt;
&lt;br /&gt;
= Firmware Documentation =&lt;br /&gt;
== Debugging ==&lt;br /&gt;
===Tilda::log(String text)===&lt;br /&gt;
&lt;br /&gt;
This logs “text” to the serial console. To read it connect to it via the Arduino IDE Serial Monitor. Don’t use “SerialUSB.println” or similar -- it’s not thread-safe and you might end up with utter nonsense.&lt;br /&gt;
== Buttons ==&lt;br /&gt;
The badge has 8 buttons: Up, Down, Left, Right, Center (on the joystick), A, B and Light. You can use arduino-style “digitalRead(BUTTON_RIGHT)” to read the current status of any button, but you can’t define your own interrupt (because we already did that). This doesn’t mean you can’t wait for a certain button to be pressed, it just means you have to approach it slightly differently:&lt;br /&gt;
&lt;br /&gt;
Example: A simple app displaying the button code&lt;br /&gt;
 void ButtonApp::task() {&lt;br /&gt;
     ButtonSubscription allButtons = Tilda::createButtonSubscription(LIGHT | A | B | UP | DOWN | LEFT | RIGHT | CENTER);&lt;br /&gt;
 &lt;br /&gt;
     while(true) {&lt;br /&gt;
         Button button = allButtons.waitForPress(1000);&lt;br /&gt;
         if (button == A) {&lt;br /&gt;
             debug::log(“You pressed button A”);&lt;br /&gt;
         } else if (button == LEFT) {&lt;br /&gt;
             debug::log(“You pressed LEFT”);&lt;br /&gt;
         } else if (button == NONE) {&lt;br /&gt;
             debug::log(“No button has been pressed in 1000ms”); &lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription Tilda::createButtonSubscription(&amp;lt;buttons&amp;gt;)===&lt;br /&gt;
&lt;br /&gt;
Registers a subscriptions for a defined set of buttons and returns a ButtonSubscription. Multiple Buttons can be combined via “|” (see example above). One button can not be subscribed by more than 10 subscriptions (which shouldn’t really happen, but keep it in mind). &lt;br /&gt;
&lt;br /&gt;
Don’t use this function in a constructor, it requires FreeRTOS to be running. Using it inside the task() function is the only safe place for it.&lt;br /&gt;
&lt;br /&gt;
===Button ButtonSubscription::waitForPress(TimeInTicks timeout)===&lt;br /&gt;
&lt;br /&gt;
This is normally called in a loop. It causes the task to block until one of the buttons has been pressed. If the timeout occurs before any button has been pressed “NONE” will be returned. &lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::waitForPress()===&lt;br /&gt;
&lt;br /&gt;
The same as above, but without the timeout.&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::clear()===&lt;br /&gt;
&lt;br /&gt;
This should be called after an App has been suspended, just before it’s going to be resumed. It causes the Queue to be cleared which could otherwise lead to buttons being reported that have been pressed while other apps were in the foreground. Have a look at the FlashLightApp for an example.&lt;br /&gt;
&lt;br /&gt;
==LEDs==&lt;br /&gt;
===Tilda::setLedColor(Led led, Color color);===&lt;br /&gt;
===Tilde::setLedColor(Color color);===&lt;br /&gt;
&lt;br /&gt;
Sets the color of all or one led. Color is an object that takes red, green and blue as a value between 0 and 255 each. If no led is defined both leds will be set to the same color.&lt;br /&gt;
&lt;br /&gt;
Example: A simple color-changing task&lt;br /&gt;
 void ColorfulTask::task() {&lt;br /&gt;
     while(true) {&lt;br /&gt;
         Tilda::setLedColor(LED1, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::setLedColor(LED2, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==Display==&lt;br /&gt;
&lt;br /&gt;
The Display Library is based on GLCDv3 (http://playground.arduino.cc/Code/GLCDks0108) but adapted to support our screen.  The Init routine is called in the setup, and the LCDTask takes care of ensuring the screen is updated every 40ms if required (Unlike the original GLCD library, screen updates are decoupled from the graphics routines.)&lt;br /&gt;
&lt;br /&gt;
Also available is M2tklib (https://code.google.com/p/m2tklib/) which is a nice toolkit library.  Further details on using this will come later, but expect the main loop to be handled for you, and just passing the menu structure you require for your app.&lt;br /&gt;
&lt;br /&gt;
Right now, you can call the GLCD functions directly with GLCD.DrawBitmap() for example.  This is going to change to be accessed through the GUITask class in the near future, to ensure only one task at a time writes to the screen.  Expect this to be simply GUITask in place of GLCD, along with a registering a redraw call back to GUITask.&lt;br /&gt;
&lt;br /&gt;
Extra features that are included, GLCD.SetRotation() will handle rotation of the screen for you, and GLCD.CurrentWidth() and GLCD.CurrentHeight will give you the correct Width and Height for the current orientation.  GLCD.Width and GLCD.Height constants are not available, and the GLCD predefined Text areas will not be rotated for you, if you require this define your own text areas.&lt;br /&gt;
&lt;br /&gt;
== Sound == &lt;br /&gt;
There's a piezo on the board, but we haven't added code for it to the current firmware. Pull requests are very welcome!&lt;br /&gt;
&lt;br /&gt;
== IMU ==&lt;br /&gt;
=== Tilda::getOrientation ===&lt;br /&gt;
returns &amp;quot; ORIENTATION_HELD&amp;quot;, &amp;quot;ORIENTATION_RIGHT&amp;quot; (joystick to the right of the screen), &amp;quot;ORIENTATION_HUNG&amp;quot; or &amp;quot;ORIENTATION_LEFT&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Flash Storage ==&lt;br /&gt;
We have 2mb of flash storage, but we're not using it in the main firmware - Please get this working!&lt;br /&gt;
== Data: Schedule ==&lt;br /&gt;
===Tilda::getDataStore().getSchedule(day, location) ===&lt;br /&gt;
== Date: Weather Forecast ==&lt;br /&gt;
===Tilda::getDataStore().getWeatherForecast()===&lt;br /&gt;
== Radio ==&lt;br /&gt;
There's no way of sending messages in the current version of the firmware, sorry :(&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
=== Tilda::delay(uint16_t delayInMs) === &lt;br /&gt;
&lt;br /&gt;
Works like Arduino’s delay(), but is FreeRTOS-safe. It’s safe to use this function before FreeRTOS has started.&lt;br /&gt;
&lt;br /&gt;
=== tilda::getClock() ===&lt;br /&gt;
&lt;br /&gt;
Returns an instance of https://github.com/MarkusLange/Arduino-Due-RTC-Library/blob/master/rtc_clock.h&lt;br /&gt;
&lt;br /&gt;
==Settings==&lt;br /&gt;
===uint16_t tilda::getBadgeId()===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==2.12. Battery==&lt;br /&gt;
===float TiLDA::getBatteryVoltage()===&lt;br /&gt;
Returns the current voltage as a float&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getBatteryPercent()===&lt;br /&gt;
Returns the current voltage as a percentage&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getChargeState()===&lt;br /&gt;
Returns the charge state&lt;br /&gt;
&lt;br /&gt;
0 Charging&lt;br /&gt;
1 Not Charging&lt;br /&gt;
&lt;br /&gt;
=Hacking=&lt;br /&gt;
To use our board definition you will need to first get the Arduino 1.5.7 IDE from [http://arduino.cc/en/Main/Software#toc3 here]&amp;lt;br/&amp;gt;&lt;br /&gt;
Next you can download the TiLDA MKe Firmware project from either the [https://github.com/emfcamp/Mk2-Firmware github repo] or via [https://github.com/emfcamp/Mk2-Firmware/archive/master.zip direct download]&amp;lt;br/&amp;gt;&lt;br /&gt;
Now copy the &amp;quot;hardware&amp;quot; folder to your Sketchbook folder, this is usually ~/Sketchbook/&amp;lt;br&amp;gt;&lt;br /&gt;
or&amp;lt;br/&amp;gt;&lt;br /&gt;
Alternative option is to set the Arduino 1.5.7 sketchbook folder to the Mk2-Firmware directory.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Start the Arduino IDE and your will be able to select TiLDA MKe v0.333 for the Tools-&amp;gt;Board menu&lt;br /&gt;
&lt;br /&gt;
* Draft 3d print-able and laser-able case files [http://www.thingiverse.com/thing:436815 here]&lt;br /&gt;
* A Python script (via [https://twitter.com/trotmaster99 @trotmaster99]) that converts a monochrome bitmap image into a format suitable for the Tilda can be found [http://pastebin.com/8XeazQjT here].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=github&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source =&lt;br /&gt;
&lt;br /&gt;
All the source code and designs are on openly available on Github:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Hardware Hardware] - the full board design&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Documentation Documentation] - a dump of relevant parts datasheets&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Firmware Firmware] - source code for the badge software&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Software Software] - server-side software for the network&lt;br /&gt;
&lt;br /&gt;
[[Category: Badges]]&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3524</id>
		<title>TiLDA MKe</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3524"/>
		<updated>2014-09-03T08:07:55Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Aim */ spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The TiLDA MKe project, Code name &amp;quot;ElectroMagnetic Boogaloo&amp;quot;, is being headed by [[User:Dpslwk|'RepRap' Matt]] and [[User:thinkl33t|Bob]]&lt;br /&gt;
[[File:Badge_Front.png|right|thumb|Front]]&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/E_(mathematical_constant) Why MKe?]&lt;br /&gt;
&lt;br /&gt;
=Aim= &lt;br /&gt;
The main aim of the 2014 badge is to give camp attendees live schedule updates and notifications. As with the original TiLDA we wanted to keep with an Arduino compatible platform that will allow badge hacking during and after the camp. As with the previous badge all code and design files are available.&lt;br /&gt;
&lt;br /&gt;
==Battery Warning==&lt;br /&gt;
'''Always make sure you plug your battery in the right way round!'''  If you don't, the charge controller will let out its magic smoke and die / become damaged and die later.  The badge itself will still work, but it wont have the ability to charge anymore.  &lt;br /&gt;
&lt;br /&gt;
We think this is the cause of the charge controller issues a small number of badges had at the event was due to this mistake being made during final assembly on-site. &lt;br /&gt;
&lt;br /&gt;
'''Lithium Batteries are dangerous!'''  While these batteries are better protected than the MK1 batteries, they are still scary.  Do not short your battery, and if it starts bulging or gets punctured, '''DO NOT USE IT AGAIN''' and dispose of it properly.&lt;br /&gt;
&lt;br /&gt;
==Features and Functions==&lt;br /&gt;
[[File:Badge_Back.png|right|thumb|Back]]&lt;br /&gt;
* Torch mode - Press the light button next to the screen. It will only light up fully if it's hung upside down to avoid blinding&lt;br /&gt;
* Snake&lt;br /&gt;
* Tetris&lt;br /&gt;
* Weather Forecast&lt;br /&gt;
* Schedule&lt;br /&gt;
* Can receive notifications about upcoming schedule items you're interested in. Visit schedule.emf.camp to set up your account.&lt;br /&gt;
&lt;br /&gt;
'''Please note that there's a known issue with the badge freezing'''. We're trying to work out what's causing this, but in the meantime pressing &amp;quot;reset&amp;quot; should get the badge back to life. Help with debugging is highly welcome!&lt;br /&gt;
&lt;br /&gt;
== How to get going ==&lt;br /&gt;
=== Set up your environment ===&lt;br /&gt;
* Plug your badge into your computer via USB&lt;br /&gt;
* Download Arduino IDE 1.5.7 from http://arduino.cc/en/main/software#toc3&lt;br /&gt;
* “git clone” or download TiLDA source code from https://github.com/emfcamp/Mk2-Firmware&lt;br /&gt;
* Start the Arduino IDE. &lt;br /&gt;
* Now you have to change the sketchbook-folder to be the folder you just cloned. To do this use File | Preferences | “Set Sketchbook location”. On MacOS, this is Arduino | Preferences &lt;br /&gt;
* Restart the Arduino IDE&lt;br /&gt;
* Open sketch “EMF2014”&lt;br /&gt;
* Set Tools | Board to MKe v0.333 (RTOS Core)&lt;br /&gt;
* Set Tools | Port to correct port (you might have to research this - some operating systems like Windows require you to install drivers or become a member of a certain group)&lt;br /&gt;
** On MacOS this is will start /dev/tty.usbmodem with 4 digits, and change for each port&lt;br /&gt;
** On Linux this is usually /dev/ttyACM0 but may be a higher number if you have other USB Serial devices&lt;br /&gt;
* Hit the upload button&lt;br /&gt;
* Wait&lt;br /&gt;
* Woohoo - You just successfully uploaded code to your badge&lt;br /&gt;
&lt;br /&gt;
=== Your first “Hello world” app ===&lt;br /&gt;
There’s a “HelloWorldApp.cpp” file in which you can play around. In order for it to show up on the Homescreen you have to uncomment line 51 in AppManager.cpp and flash the changed code to the badge. Great app pull requests are appreciated!&lt;br /&gt;
&lt;br /&gt;
=== Why are things so different from standard Arduino code? ===&lt;br /&gt;
We’re using a library called FreeRTOS that allows us to multitask - something that’s normally not possible with standard Arduino code. This allows us to run multiple tasks at the same time. FreeRTOS uses preemptive scheduling to switch between the task. Due to this we have to be very careful about how we do some things. For example we can’t just define interrupts for buttons in every task (imagine the mess!) or write to the serial port directly (your task might stop in the middle of the message). &lt;br /&gt;
&lt;br /&gt;
We’ve also spend quite a lot of time to make the build-in components as easy to use as possible without having every task to write lots of boilerplate code. If you feel like using the build-in components on the badge, chances are we already wrote a wrapper for them that is already used by one of the other tasks. &lt;br /&gt;
&lt;br /&gt;
Have a look at the “Documentation” section in this document for a full list of API functions. You will avoid a lot of headaches if you stick to those.&lt;br /&gt;
=== How to use the badge with pure Arduino code ===&lt;br /&gt;
If you prefer you can always start from scratch without FreeRTOS or any of our code, just keep in mind that you won’t be able to receive messages via radio or use any of the API features we already added. Just start a new sketch in the Arduino IDE for that and get going. If you want to load the main firmware again just change the sketch to “EMF2014” and upload again.&lt;br /&gt;
=== Debugging and Gotchas ===&lt;br /&gt;
* The USB serial is set up to 115220 baud. There are lots of terminals that can connect to them&lt;br /&gt;
* If you can’t revive a badge you can short the two erase pins and press the reset button while holding it down.&lt;br /&gt;
* Avoid busy waiting, use FreeRTOS queues and Tilda::delay() instead&lt;br /&gt;
* Don’t use low level functions like interrupts or serial ports directly unless you really, really know how FreeRTOS will handle them. For general logging you can use Tilda::log()&lt;br /&gt;
=== Code structure ===&lt;br /&gt;
* FreeRTOS has the concept of “Tasks” which work like threads. We’ve wrappered them in a class called “Task” (for background stuff) and “Apps” (for foreground, one-at-a-time things)&lt;br /&gt;
* Everything needs to be in the main EMF2014 folder. Subfolders are not allowed. This is an Arduino IDE restriction :(&lt;br /&gt;
=== Radio infrastructure ===&lt;br /&gt;
The radio infrastructure is distributed between DKs. Every “gateway” has a Raspberry Pi with two Ciseco usb radios. We never had the chance to actually try it with that many badges in the same spot, so please don’t expect it to work perfectly.&lt;br /&gt;
=== Contribute ===&lt;br /&gt;
Send us a pull request via [https://github.com/emfcamp/Mk2-Firmware GitHub] - We’ll do our best to review and merge the good ones during EMF so others can use them.&lt;br /&gt;
&lt;br /&gt;
=Hardware=&lt;br /&gt;
&lt;br /&gt;
The following hardware has been included on the badge.&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmel.com/products/microcontrollers/arm/sam3x.aspx Atmel ATSAM3X8E]&lt;br /&gt;
** This is the same chip as the [http://arduino.cc/en/Main/ArduinoBoardDue Arduino Due] and gives us the base platform for the badge&lt;br /&gt;
** 32bit ARM Cortex M3 * 84MHz&lt;br /&gt;
** 512KBytes Flash RAM&lt;br /&gt;
** 96KBytes of SRAM&lt;br /&gt;
* A 128x64 pixel monochrome LCD display&lt;br /&gt;
* [http://shop.ciseco.co.uk/srf-wireless-rf-radio-surface-mount/ Ciseco SRF Radio]&lt;br /&gt;
** 868Mhz RF Transceiver&lt;br /&gt;
** Simple UART interface&lt;br /&gt;
** Low power sleep mode&lt;br /&gt;
* [http://www.invensense.com/mems/gyro/mpu6050.html MPU-6050] 3-axis Accelerometer and 3-axis gyro&lt;br /&gt;
** I2C interface&lt;br /&gt;
** Tri-Axis angular rate sensor (gyro) with a sensitivity up to 131 LSBs/dps and a full-scale range of ±250, ±500, ±1000, and ±2000dps&lt;br /&gt;
** Tri-Axis accelerometer with a programmable full scale range of ±2g, ±4g, ±8g and ±16g&lt;br /&gt;
** Digital Motion Processing™ (DMP™) engine offloads complex MotionFusion, sensor timing synchronization and gesture detection&lt;br /&gt;
* PMIC &amp;amp; LiPo&lt;br /&gt;
* Joystick&lt;br /&gt;
* Buttons&lt;br /&gt;
* RGB LED's&lt;br /&gt;
* IR&lt;br /&gt;
* Arduino Headers&lt;br /&gt;
* Pads for wearable tech&lt;br /&gt;
&lt;br /&gt;
= Firmware Documentation =&lt;br /&gt;
== Debugging ==&lt;br /&gt;
===Tilda::log(String text)===&lt;br /&gt;
&lt;br /&gt;
This logs “text” to the serial console. To read it connect to it via the Arduino IDE Serial Monitor. Don’t use “SerialUSB.println” or similar -- it’s not thread-safe and you might end up with utter nonsense.&lt;br /&gt;
== Buttons ==&lt;br /&gt;
The badge has 8 buttons: Up, Down, Left, Right, Center (on the joystick), A, B and Light. You can use arduino-style “digitalRead(BUTTON_RIGHT)” to read the current status of any button, but you can’t define your own interrupt (because we already did that). This doesn’t mean you can’t wait for a certain button to be pressed, it just means you have to approach it slightly differently:&lt;br /&gt;
&lt;br /&gt;
Example: A simple app displaying the button code&lt;br /&gt;
 void ButtonApp::task() {&lt;br /&gt;
     ButtonSubscription allButtons = Tilda::createButtonSubscription(LIGHT | A | B | UP | DOWN | LEFT | RIGHT | CENTER);&lt;br /&gt;
 &lt;br /&gt;
     while(true) {&lt;br /&gt;
         Button button = allButtons.waitForPress(1000);&lt;br /&gt;
         if (button == A) {&lt;br /&gt;
             debug::log(“You pressed button A”);&lt;br /&gt;
         } else if (button == LEFT) {&lt;br /&gt;
             debug::log(“You pressed LEFT”);&lt;br /&gt;
         } else if (button == NONE) {&lt;br /&gt;
             debug::log(“No button has been pressed in 1000ms”); &lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription Tilda::createButtonSubscription(&amp;lt;buttons&amp;gt;)===&lt;br /&gt;
&lt;br /&gt;
Registers a subscriptions for a defined set of buttons and returns a ButtonSubscription. Multiple Buttons can be combined via “|” (see example above). One button can not be subscribed by more than 10 subscriptions (which shouldn’t really happen, but keep it in mind). &lt;br /&gt;
&lt;br /&gt;
Don’t use this function in a constructor, it requires FreeRTOS to be running. Using it inside the task() function is the only safe place for it.&lt;br /&gt;
&lt;br /&gt;
===Button ButtonSubscription::waitForPress(TimeInTicks timeout)===&lt;br /&gt;
&lt;br /&gt;
This is normally called in a loop. It causes the task to block until one of the buttons has been pressed. If the timeout occurs before any button has been pressed “NONE” will be returned. &lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::waitForPress()===&lt;br /&gt;
&lt;br /&gt;
The same as above, but without the timeout.&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::clear()===&lt;br /&gt;
&lt;br /&gt;
This should be called after an App has been suspended, just before it’s going to be resumed. It causes the Queue to be cleared which could otherwise lead to buttons being reported that have been pressed while other apps were in the foreground. Have a look at the FlashLightApp for an example.&lt;br /&gt;
&lt;br /&gt;
==LEDs==&lt;br /&gt;
===Tilda::setLedColor(Led led, Color color);===&lt;br /&gt;
===Tilde::setLedColor(Color color);===&lt;br /&gt;
&lt;br /&gt;
Sets the color of all or one led. Color is an object that takes red, green and blue as a value between 0 and 255 each. If no led is defined both leds will be set to the same color.&lt;br /&gt;
&lt;br /&gt;
Example: A simple color-changing task&lt;br /&gt;
 void ColorfulTask::task() {&lt;br /&gt;
     while(true) {&lt;br /&gt;
         Tilda::setLedColor(LED1, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::setLedColor(LED2, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==Display==&lt;br /&gt;
&lt;br /&gt;
The Display Library is based on GLCDv3 (http://playground.arduino.cc/Code/GLCDks0108) but adapted to support our screen.  The Init routine is called in the setup, and the LCDTask takes care of ensuring the screen is updated every 40ms if required (Unlike the original GLCD library, screen updates are decoupled from the graphics routines.)&lt;br /&gt;
&lt;br /&gt;
Also available is M2tklib (https://code.google.com/p/m2tklib/) which is a nice toolkit library.  Further details on using this will come later, but expect the main loop to be handled for you, and just passing the menu structure you require for your app.&lt;br /&gt;
&lt;br /&gt;
Right now, you can call the GLCD functions directly with GLCD.DrawBitmap() for example.  This is going to change to be accessed through the GUITask class in the near future, to ensure only one task at a time writes to the screen.  Expect this to be simply GUITask in place of GLCD, along with a registering a redraw call back to GUITask.&lt;br /&gt;
&lt;br /&gt;
Extra features that are included, GLCD.SetRotation() will handle rotation of the screen for you, and GLCD.CurrentWidth() and GLCD.CurrentHeight will give you the correct Width and Height for the current orientation.  GLCD.Width and GLCD.Height constants are not available, and the GLCD predefined Text areas will not be rotated for you, if you require this define your own text areas.&lt;br /&gt;
&lt;br /&gt;
== Sound == &lt;br /&gt;
There's a piezo on the board, but we haven't added code for it to the current firmware. Pull requests are very welcome!&lt;br /&gt;
&lt;br /&gt;
== IMU ==&lt;br /&gt;
=== Tilda::getOrientation ===&lt;br /&gt;
returns &amp;quot; ORIENTATION_HELD&amp;quot;, &amp;quot;ORIENTATION_RIGHT&amp;quot; (joystick to the right of the screen), &amp;quot;ORIENTATION_HUNG&amp;quot; or &amp;quot;ORIENTATION_LEFT&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Flash Storage ==&lt;br /&gt;
We have 2mb of flash storage, but we're not using it in the main firmware - Please get this working!&lt;br /&gt;
== Data: Schedule ==&lt;br /&gt;
===Tilda::getDataStore().getSchedule(day, location) ===&lt;br /&gt;
== Date: Weather Forecast ==&lt;br /&gt;
===Tilda::getDataStore().getWeatherForecast()===&lt;br /&gt;
== Radio ==&lt;br /&gt;
There's no way of sending messages in the current version of the firmware, sorry :(&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
=== Tilda::delay(uint16_t delayInMs) === &lt;br /&gt;
&lt;br /&gt;
Works like Arduino’s delay(), but is FreeRTOS-safe. It’s safe to use this function before FreeRTOS has started.&lt;br /&gt;
&lt;br /&gt;
=== tilda::getClock() ===&lt;br /&gt;
&lt;br /&gt;
Returns an instance of https://github.com/MarkusLange/Arduino-Due-RTC-Library/blob/master/rtc_clock.h&lt;br /&gt;
&lt;br /&gt;
==Settings==&lt;br /&gt;
===uint16_t tilda::getBadgeId()===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==2.12. Battery==&lt;br /&gt;
===float TiLDA::getBatteryVoltage()===&lt;br /&gt;
Returns the current voltage as a float&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getBatteryPercent()===&lt;br /&gt;
Returns the current voltage as a percentage&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getChargeState()===&lt;br /&gt;
Returns the charge state&lt;br /&gt;
&lt;br /&gt;
0 Charging&lt;br /&gt;
1 Not Charging&lt;br /&gt;
&lt;br /&gt;
=Hacking=&lt;br /&gt;
To use our board definition you will need to first get the Arduino 1.5.7 IDE from [http://arduino.cc/en/Main/Software#toc3 here]&amp;lt;br/&amp;gt;&lt;br /&gt;
Next you can download the TiLDA MKe Firmware project from either the [https://github.com/emfcamp/Mk2-Firmware github repo] or via [https://github.com/emfcamp/Mk2-Firmware/archive/master.zip direct download]&amp;lt;br/&amp;gt;&lt;br /&gt;
Now copy the &amp;quot;hardware&amp;quot; folder to your Sketchbook folder, this is usually ~/Sketchbook/&amp;lt;br&amp;gt;&lt;br /&gt;
or&amp;lt;br/&amp;gt;&lt;br /&gt;
Alternative option is to set the Arduino 1.5.7 sketchbook folder to the Mk2-Firmware directory.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Start the Arduino IDE and your will be able to select TiLDA MKe v0.333 for the Tools-&amp;gt;Board menu&lt;br /&gt;
&lt;br /&gt;
* Draft 3d print-able and laser-able case files [http://www.thingiverse.com/thing:436815 here]&lt;br /&gt;
* A Python script (via [https://twitter.com/trotmaster99 @trotmaster99]) that converts a monochrome bitmap image into a format suitable for the Tilda can be found [http://pastebin.com/8XeazQjT here].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=github&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source =&lt;br /&gt;
&lt;br /&gt;
All the source code and designs are on openly available on Github:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Hardware Hardware] - the full board design&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Documentation Documentation] - a dump of relevant parts datasheets&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Firmware Firmware] - source code for the badge software&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Software Software] - server-side software for the network&lt;br /&gt;
&lt;br /&gt;
[[Category: Badges]]&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3522</id>
		<title>TiLDA MKe</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=TiLDA_MKe&amp;diff=3522"/>
		<updated>2014-09-03T08:05:55Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* How to get going */ spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The TiLDA MKe project, Code name &amp;quot;ElectroMagnetic Boogaloo&amp;quot;, is being headed by [[User:Dpslwk|'RepRap' Matt]] and [[User:thinkl33t|Bob]]&lt;br /&gt;
[[File:Badge_Front.png|right|thumb|Front]]&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/E_(mathematical_constant) Why MKe?]&lt;br /&gt;
&lt;br /&gt;
=Aim= &lt;br /&gt;
The main aim of the 2014 badge is to give camp attendees live schedule updates and notifications. As with the original TiLDA we wanted to keep with an Arduino compatible platform that will allow badge hacking during and after the camp. As with previous badge all code and design files are available.&lt;br /&gt;
&lt;br /&gt;
==Battery Warning==&lt;br /&gt;
'''Always make sure you plug your battery in the right way round!'''  If you dont, the charge controller will let out its magic smoke and die / become damaged and die later.  The badge itself will still work, but it wont have the ability to charge anymore.  &lt;br /&gt;
&lt;br /&gt;
We think this is the cause of the charge controller issues a small number of badges had at the event was due to this mistake being made during final assembly on-site. &lt;br /&gt;
&lt;br /&gt;
'''Lithium Batteries are dangerous!'''  While these batteries are better protected than the MK1 batteries, they are still scary.  Do not short your battery, and if it starts bulging or gets punctured, '''DO NOT USE IT AGAIN''' and dispose of it properly.&lt;br /&gt;
&lt;br /&gt;
==Features and Functions==&lt;br /&gt;
[[File:Badge_Back.png|right|thumb|Back]]&lt;br /&gt;
* Torch mode - Press the light button next to the screen. It will only light up fully if it's hung upside down to avoid blinding&lt;br /&gt;
* Snake&lt;br /&gt;
* Tetris&lt;br /&gt;
* Weather Forecast&lt;br /&gt;
* Schedule&lt;br /&gt;
* Can receive notifications about upcoming schedule items you're interested in. Visit schedule.emf.camp to set up your account.&lt;br /&gt;
&lt;br /&gt;
'''Please note that there's a known issue with the badge freezing'''. We're trying to work out what's causing this, but in the meantime pressing &amp;quot;reset&amp;quot; should get the badge back to life. Help with debugging is highly welcome!&lt;br /&gt;
&lt;br /&gt;
== How to get going ==&lt;br /&gt;
=== Set up your environment ===&lt;br /&gt;
* Plug your badge into your computer via USB&lt;br /&gt;
* Download Arduino IDE 1.5.7 from http://arduino.cc/en/main/software#toc3&lt;br /&gt;
* “git clone” or download TiLDA source code from https://github.com/emfcamp/Mk2-Firmware&lt;br /&gt;
* Start the Arduino IDE. &lt;br /&gt;
* Now you have to change the sketchbook-folder to be the folder you just cloned. To do this use File | Preferences | “Set Sketchbook location”. On MacOS, this is Arduino | Preferences &lt;br /&gt;
* Restart the Arduino IDE&lt;br /&gt;
* Open sketch “EMF2014”&lt;br /&gt;
* Set Tools | Board to MKe v0.333 (RTOS Core)&lt;br /&gt;
* Set Tools | Port to correct port (you might have to research this - some operating systems like Windows require you to install drivers or become a member of a certain group)&lt;br /&gt;
** On MacOS this is will start /dev/tty.usbmodem with 4 digits, and change for each port&lt;br /&gt;
** On Linux this is usually /dev/ttyACM0 but may be a higher number if you have other USB Serial devices&lt;br /&gt;
* Hit the upload button&lt;br /&gt;
* Wait&lt;br /&gt;
* Woohoo - You just successfully uploaded code to your badge&lt;br /&gt;
&lt;br /&gt;
=== Your first “Hello world” app ===&lt;br /&gt;
There’s a “HelloWorldApp.cpp” file in which you can play around. In order for it to show up on the Homescreen you have to uncomment line 51 in AppManager.cpp and flash the changed code to the badge. Great app pull requests are appreciated!&lt;br /&gt;
&lt;br /&gt;
=== Why are things so different from standard Arduino code? ===&lt;br /&gt;
We’re using a library called FreeRTOS that allows us to multitask - something that’s normally not possible with standard Arduino code. This allows us to run multiple tasks at the same time. FreeRTOS uses preemptive scheduling to switch between the task. Due to this we have to be very careful about how we do some things. For example we can’t just define interrupts for buttons in every task (imagine the mess!) or write to the serial port directly (your task might stop in the middle of the message). &lt;br /&gt;
&lt;br /&gt;
We’ve also spend quite a lot of time to make the build-in components as easy to use as possible without having every task to write lots of boilerplate code. If you feel like using the build-in components on the badge, chances are we already wrote a wrapper for them that is already used by one of the other tasks. &lt;br /&gt;
&lt;br /&gt;
Have a look at the “Documentation” section in this document for a full list of API functions. You will avoid a lot of headaches if you stick to those.&lt;br /&gt;
=== How to use the badge with pure Arduino code ===&lt;br /&gt;
If you prefer you can always start from scratch without FreeRTOS or any of our code, just keep in mind that you won’t be able to receive messages via radio or use any of the API features we already added. Just start a new sketch in the Arduino IDE for that and get going. If you want to load the main firmware again just change the sketch to “EMF2014” and upload again.&lt;br /&gt;
=== Debugging and Gotchas ===&lt;br /&gt;
* The USB serial is set up to 115220 baud. There are lots of terminals that can connect to them&lt;br /&gt;
* If you can’t revive a badge you can short the two erase pins and press the reset button while holding it down.&lt;br /&gt;
* Avoid busy waiting, use FreeRTOS queues and Tilda::delay() instead&lt;br /&gt;
* Don’t use low level functions like interrupts or serial ports directly unless you really, really know how FreeRTOS will handle them. For general logging you can use Tilda::log()&lt;br /&gt;
=== Code structure ===&lt;br /&gt;
* FreeRTOS has the concept of “Tasks” which work like threads. We’ve wrappered them in a class called “Task” (for background stuff) and “Apps” (for foreground, one-at-a-time things)&lt;br /&gt;
* Everything needs to be in the main EMF2014 folder. Subfolders are not allowed. This is an Arduino IDE restriction :(&lt;br /&gt;
=== Radio infrastructure ===&lt;br /&gt;
The radio infrastructure is distributed between DKs. Every “gateway” has a Raspberry Pi with two Ciseco usb radios. We never had the chance to actually try it with that many badges in the same spot, so please don’t expect it to work perfectly.&lt;br /&gt;
=== Contribute ===&lt;br /&gt;
Send us a pull request via [https://github.com/emfcamp/Mk2-Firmware GitHub] - We’ll do our best to review and merge the good ones during EMF so others can use them.&lt;br /&gt;
&lt;br /&gt;
=Hardware=&lt;br /&gt;
&lt;br /&gt;
The following hardware has been included on the badge.&lt;br /&gt;
&lt;br /&gt;
* [http://www.atmel.com/products/microcontrollers/arm/sam3x.aspx Atmel ATSAM3X8E]&lt;br /&gt;
** This is the same chip as the [http://arduino.cc/en/Main/ArduinoBoardDue Arduino Due] and gives us the base platform for the badge&lt;br /&gt;
** 32bit ARM Cortex M3 * 84MHz&lt;br /&gt;
** 512KBytes Flash RAM&lt;br /&gt;
** 96KBytes of SRAM&lt;br /&gt;
* A 128x64 pixel monochrome LCD display&lt;br /&gt;
* [http://shop.ciseco.co.uk/srf-wireless-rf-radio-surface-mount/ Ciseco SRF Radio]&lt;br /&gt;
** 868Mhz RF Transceiver&lt;br /&gt;
** Simple UART interface&lt;br /&gt;
** Low power sleep mode&lt;br /&gt;
* [http://www.invensense.com/mems/gyro/mpu6050.html MPU-6050] 3-axis Accelerometer and 3-axis gyro&lt;br /&gt;
** I2C interface&lt;br /&gt;
** Tri-Axis angular rate sensor (gyro) with a sensitivity up to 131 LSBs/dps and a full-scale range of ±250, ±500, ±1000, and ±2000dps&lt;br /&gt;
** Tri-Axis accelerometer with a programmable full scale range of ±2g, ±4g, ±8g and ±16g&lt;br /&gt;
** Digital Motion Processing™ (DMP™) engine offloads complex MotionFusion, sensor timing synchronization and gesture detection&lt;br /&gt;
* PMIC &amp;amp; LiPo&lt;br /&gt;
* Joystick&lt;br /&gt;
* Buttons&lt;br /&gt;
* RGB LED's&lt;br /&gt;
* IR&lt;br /&gt;
* Arduino Headers&lt;br /&gt;
* Pads for wearable tech&lt;br /&gt;
&lt;br /&gt;
= Firmware Documentation =&lt;br /&gt;
== Debugging ==&lt;br /&gt;
===Tilda::log(String text)===&lt;br /&gt;
&lt;br /&gt;
This logs “text” to the serial console. To read it connect to it via the Arduino IDE Serial Monitor. Don’t use “SerialUSB.println” or similar -- it’s not thread-safe and you might end up with utter nonsense.&lt;br /&gt;
== Buttons ==&lt;br /&gt;
The badge has 8 buttons: Up, Down, Left, Right, Center (on the joystick), A, B and Light. You can use arduino-style “digitalRead(BUTTON_RIGHT)” to read the current status of any button, but you can’t define your own interrupt (because we already did that). This doesn’t mean you can’t wait for a certain button to be pressed, it just means you have to approach it slightly differently:&lt;br /&gt;
&lt;br /&gt;
Example: A simple app displaying the button code&lt;br /&gt;
 void ButtonApp::task() {&lt;br /&gt;
     ButtonSubscription allButtons = Tilda::createButtonSubscription(LIGHT | A | B | UP | DOWN | LEFT | RIGHT | CENTER);&lt;br /&gt;
 &lt;br /&gt;
     while(true) {&lt;br /&gt;
         Button button = allButtons.waitForPress(1000);&lt;br /&gt;
         if (button == A) {&lt;br /&gt;
             debug::log(“You pressed button A”);&lt;br /&gt;
         } else if (button == LEFT) {&lt;br /&gt;
             debug::log(“You pressed LEFT”);&lt;br /&gt;
         } else if (button == NONE) {&lt;br /&gt;
             debug::log(“No button has been pressed in 1000ms”); &lt;br /&gt;
         }&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription Tilda::createButtonSubscription(&amp;lt;buttons&amp;gt;)===&lt;br /&gt;
&lt;br /&gt;
Registers a subscriptions for a defined set of buttons and returns a ButtonSubscription. Multiple Buttons can be combined via “|” (see example above). One button can not be subscribed by more than 10 subscriptions (which shouldn’t really happen, but keep it in mind). &lt;br /&gt;
&lt;br /&gt;
Don’t use this function in a constructor, it requires FreeRTOS to be running. Using it inside the task() function is the only safe place for it.&lt;br /&gt;
&lt;br /&gt;
===Button ButtonSubscription::waitForPress(TimeInTicks timeout)===&lt;br /&gt;
&lt;br /&gt;
This is normally called in a loop. It causes the task to block until one of the buttons has been pressed. If the timeout occurs before any button has been pressed “NONE” will be returned. &lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::waitForPress()===&lt;br /&gt;
&lt;br /&gt;
The same as above, but without the timeout.&lt;br /&gt;
&lt;br /&gt;
===ButtonSubscription::clear()===&lt;br /&gt;
&lt;br /&gt;
This should be called after an App has been suspended, just before it’s going to be resumed. It causes the Queue to be cleared which could otherwise lead to buttons being reported that have been pressed while other apps were in the foreground. Have a look at the FlashLightApp for an example.&lt;br /&gt;
&lt;br /&gt;
==LEDs==&lt;br /&gt;
===Tilda::setLedColor(Led led, Color color);===&lt;br /&gt;
===Tilde::setLedColor(Color color);===&lt;br /&gt;
&lt;br /&gt;
Sets the color of all or one led. Color is an object that takes red, green and blue as a value between 0 and 255 each. If no led is defined both leds will be set to the same color.&lt;br /&gt;
&lt;br /&gt;
Example: A simple color-changing task&lt;br /&gt;
 void ColorfulTask::task() {&lt;br /&gt;
     while(true) {&lt;br /&gt;
         Tilda::setLedColor(LED1, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 255, 0}); // Green&lt;br /&gt;
         Tilda::setLedColor(LED2, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
         Tilda::setLedColor(LED1, {0, 0, 255}); // Blue&lt;br /&gt;
         Tilda::setLedColor(LED2, {255, 0, 0}); // Red&lt;br /&gt;
         Tilda::delay(300);&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==Display==&lt;br /&gt;
&lt;br /&gt;
The Display Library is based on GLCDv3 (http://playground.arduino.cc/Code/GLCDks0108) but adapted to support our screen.  The Init routine is called in the setup, and the LCDTask takes care of ensuring the screen is updated every 40ms if required (Unlike the original GLCD library, screen updates are decoupled from the graphics routines.)&lt;br /&gt;
&lt;br /&gt;
Also available is M2tklib (https://code.google.com/p/m2tklib/) which is a nice toolkit library.  Further details on using this will come later, but expect the main loop to be handled for you, and just passing the menu structure you require for your app.&lt;br /&gt;
&lt;br /&gt;
Right now, you can call the GLCD functions directly with GLCD.DrawBitmap() for example.  This is going to change to be accessed through the GUITask class in the near future, to ensure only one task at a time writes to the screen.  Expect this to be simply GUITask in place of GLCD, along with a registering a redraw call back to GUITask.&lt;br /&gt;
&lt;br /&gt;
Extra features that are included, GLCD.SetRotation() will handle rotation of the screen for you, and GLCD.CurrentWidth() and GLCD.CurrentHeight will give you the correct Width and Height for the current orientation.  GLCD.Width and GLCD.Height constants are not available, and the GLCD predefined Text areas will not be rotated for you, if you require this define your own text areas.&lt;br /&gt;
&lt;br /&gt;
== Sound == &lt;br /&gt;
There's a piezo on the board, but we haven't added code for it to the current firmware. Pull requests are very welcome!&lt;br /&gt;
&lt;br /&gt;
== IMU ==&lt;br /&gt;
=== Tilda::getOrientation ===&lt;br /&gt;
returns &amp;quot; ORIENTATION_HELD&amp;quot;, &amp;quot;ORIENTATION_RIGHT&amp;quot; (joystick to the right of the screen), &amp;quot;ORIENTATION_HUNG&amp;quot; or &amp;quot;ORIENTATION_LEFT&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Flash Storage ==&lt;br /&gt;
We have 2mb of flash storage, but we're not using it in the main firmware - Please get this working!&lt;br /&gt;
== Data: Schedule ==&lt;br /&gt;
===Tilda::getDataStore().getSchedule(day, location) ===&lt;br /&gt;
== Date: Weather Forecast ==&lt;br /&gt;
===Tilda::getDataStore().getWeatherForecast()===&lt;br /&gt;
== Radio ==&lt;br /&gt;
There's no way of sending messages in the current version of the firmware, sorry :(&lt;br /&gt;
&lt;br /&gt;
== Time ==&lt;br /&gt;
&lt;br /&gt;
=== Tilda::delay(uint16_t delayInMs) === &lt;br /&gt;
&lt;br /&gt;
Works like Arduino’s delay(), but is FreeRTOS-safe. It’s safe to use this function before FreeRTOS has started.&lt;br /&gt;
&lt;br /&gt;
=== tilda::getClock() ===&lt;br /&gt;
&lt;br /&gt;
Returns an instance of https://github.com/MarkusLange/Arduino-Due-RTC-Library/blob/master/rtc_clock.h&lt;br /&gt;
&lt;br /&gt;
==Settings==&lt;br /&gt;
===uint16_t tilda::getBadgeId()===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==2.12. Battery==&lt;br /&gt;
===float TiLDA::getBatteryVoltage()===&lt;br /&gt;
Returns the current voltage as a float&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getBatteryPercent()===&lt;br /&gt;
Returns the current voltage as a percentage&lt;br /&gt;
&lt;br /&gt;
===uint8_t TiLDA::getChargeState()===&lt;br /&gt;
Returns the charge state&lt;br /&gt;
&lt;br /&gt;
0 Charging&lt;br /&gt;
1 Not Charging&lt;br /&gt;
&lt;br /&gt;
=Hacking=&lt;br /&gt;
To use our board definition you will need to first get the Arduino 1.5.7 IDE from [http://arduino.cc/en/Main/Software#toc3 here]&amp;lt;br/&amp;gt;&lt;br /&gt;
Next you can download the TiLDA MKe Firmware project from either the [https://github.com/emfcamp/Mk2-Firmware github repo] or via [https://github.com/emfcamp/Mk2-Firmware/archive/master.zip direct download]&amp;lt;br/&amp;gt;&lt;br /&gt;
Now copy the &amp;quot;hardware&amp;quot; folder to your Sketchbook folder, this is usually ~/Sketchbook/&amp;lt;br&amp;gt;&lt;br /&gt;
or&amp;lt;br/&amp;gt;&lt;br /&gt;
Alternative option is to set the Arduino 1.5.7 sketchbook folder to the Mk2-Firmware directory.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Start the Arduino IDE and your will be able to select TiLDA MKe v0.333 for the Tools-&amp;gt;Board menu&lt;br /&gt;
&lt;br /&gt;
* Draft 3d print-able and laser-able case files [http://www.thingiverse.com/thing:436815 here]&lt;br /&gt;
* A Python script (via [https://twitter.com/trotmaster99 @trotmaster99]) that converts a monochrome bitmap image into a format suitable for the Tilda can be found [http://pastebin.com/8XeazQjT here].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=github&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Source =&lt;br /&gt;
&lt;br /&gt;
All the source code and designs are on openly available on Github:&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Hardware Hardware] - the full board design&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Documentation Documentation] - a dump of relevant parts datasheets&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Firmware Firmware] - source code for the badge software&lt;br /&gt;
* [https://github.com/emfcamp/Mk2-Software Software] - server-side software for the network&lt;br /&gt;
&lt;br /&gt;
[[Category: Badges]]&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=3312</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=3312"/>
		<updated>2014-08-29T15:27:28Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Friday: King-size pannenkoeken (Dutch pancakes) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013.org] so he can send you a payment request. Please do this '''before''' Tuesday 26 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. Search for an illegally parked volkswagen van.&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 18:00 CEST &amp;lt;font color=red&amp;gt;19:00 in island time.&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
There will be a poffertjes pan late Friday night, so Dutch mini pancakes may happen at some point during the weekend...&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JHR|JHR]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Oly|Oly]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ms7821|Mark]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Maow|Maow]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:TallPaul|TallPaul]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Kjmac|Kjmac]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Timpcc|Timpcc]]&lt;br /&gt;
|-&lt;br /&gt;
| --[[User:Stackoverflow128|Stackoverflow128]] ([[User talk:Stackoverflow128|talk]]) 10:28, 26 August 2014 (UTC)&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lucy|Lucy]]&lt;br /&gt;
|-&lt;br /&gt;
| (hannahdenno)&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Alistair|Alistair]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ian Larsen|Ian Larsen]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jon|Jon]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ali Bird|Ali Bird]]&lt;br /&gt;
|-&lt;br /&gt;
| (Richard)&lt;br /&gt;
|-&lt;br /&gt;
| Cookie&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
===Friday: Fresh stroopwafels, baked before your very eyes ===&lt;br /&gt;
'''Type:''' Demo and opportunity for purchase&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 1 per instant foodgasm&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
&amp;lt;font size=4&amp;gt;CANCELLED! :(&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Sorry, but I wasn't able to get everything needed together, and all the frozen stuff won't stay frozen until Saturday on its own, so we'll have to think up another treat! (will keep you posted on this page)'''''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's], and Vegetarian (not Vegan though) Groentekroketten. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/s&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| Matthew&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JHR|JHR]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Alistair|Alistair]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jon|Jon]]&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
===Saturday: Fresh stroopwafels, baked before your very eyes ===&lt;br /&gt;
'''Type:''' Demo and opportunity for purchase&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 1 per instant foodgasm&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 (as it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Almost there... (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]] (just me)&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Alistair|Alistair]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jon|Jon]]&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
===Sunday: Fresh stroopwafels, baked before your very eyes ===&lt;br /&gt;
'''Type:''' Demo and opportunity for purchase&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 1 per instant foodgasm&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Oly|Oly]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| Matthew&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
Tom Flint &amp;amp; Frank Greig (2 pledges please)&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=3311</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=3311"/>
		<updated>2014-08-29T15:26:55Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Schedule */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013.org] so he can send you a payment request. Please do this '''before''' Tuesday 26 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. Search for an illegally parked volkswagen van.&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 18:00 CEST &amp;lt;font color=red&amp;gt;19:00 in island time.&amp;lt;/font&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JHR|JHR]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Oly|Oly]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ms7821|Mark]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Maow|Maow]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:TallPaul|TallPaul]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Kjmac|Kjmac]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Timpcc|Timpcc]]&lt;br /&gt;
|-&lt;br /&gt;
| --[[User:Stackoverflow128|Stackoverflow128]] ([[User talk:Stackoverflow128|talk]]) 10:28, 26 August 2014 (UTC)&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lucy|Lucy]]&lt;br /&gt;
|-&lt;br /&gt;
| (hannahdenno)&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Alistair|Alistair]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ian Larsen|Ian Larsen]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jon|Jon]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ali Bird|Ali Bird]]&lt;br /&gt;
|-&lt;br /&gt;
| (Richard)&lt;br /&gt;
|-&lt;br /&gt;
| Cookie&lt;br /&gt;
|-&lt;br /&gt;
|...&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
There will be a poffertjes pan late Friday night, so Dutch mini pancakes may happen at some point during the weekend...&lt;br /&gt;
&lt;br /&gt;
===Friday: Fresh stroopwafels, baked before your very eyes ===&lt;br /&gt;
'''Type:''' Demo and opportunity for purchase&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 1 per instant foodgasm&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
&amp;lt;font size=4&amp;gt;CANCELLED! :(&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''''Sorry, but I wasn't able to get everything needed together, and all the frozen stuff won't stay frozen until Saturday on its own, so we'll have to think up another treat! (will keep you posted on this page)'''''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;s&amp;gt;'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's], and Vegetarian (not Vegan though) Groentekroketten. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/s&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| Matthew&lt;br /&gt;
|-&lt;br /&gt;
| [[User:JHR|JHR]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Alistair|Alistair]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jon|Jon]]&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
===Saturday: Fresh stroopwafels, baked before your very eyes ===&lt;br /&gt;
'''Type:''' Demo and opportunity for purchase&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 1 per instant foodgasm&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 (as it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Almost there... (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]] (just me)&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Alistair|Alistair]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jon|Jon]]&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
===Sunday: Fresh stroopwafels, baked before your very eyes ===&lt;br /&gt;
'''Type:''' Demo and opportunity for purchase&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 1 per instant foodgasm&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Oly|Oly]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| Matthew&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
Tom Flint &amp;amp; Frank Greig (2 pledges please)&lt;br /&gt;
|}&lt;br /&gt;
''Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;''&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=3103</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=3103"/>
		<updated>2014-08-27T12:34:19Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''''Supremacy''' redirects here. For other uses see [[Villages|Villages]]''.&lt;br /&gt;
----{{VillageOrange&lt;br /&gt;
|Picture=Flag3.gif&lt;br /&gt;
|Name=Village:Slackers On Holiday&lt;br /&gt;
|Description= We are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Cloud Printing, Painting Orange, Putting stickers everywhere, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, Lock picking, Nose picking, Hardcore hacking, Trolling like a pro.&lt;br /&gt;
|Location=51.96726,-0.79358&lt;br /&gt;
}}&amp;lt;span style=&amp;quot;z-index:30&amp;quot;&amp;gt;[[File:Dutch-flag-010.jpg]][[Image:Camp_holland_badge.png|300px]]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
[[image:pumpkinquality.jpg|thumb|right|308px|Camp Holland: Service With A Smile.]]&lt;br /&gt;
[[image:kazanjwz.jpg|thumb|right|308px|Waar is dat feestje? Hier is dat feestje!]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; width: auto; height: 80px; overflow: hidden; display: block;&amp;quot;&amp;gt;[[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] *insecure input*? Problem?&amp;lt;/span&amp;gt;&lt;br /&gt;
We need no text, we need hackers and hacks. Hacking is about hacking.&lt;br /&gt;
&lt;br /&gt;
[[File:Windmillblue.gif]]&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
None of the content of this page reflects what our plans really are. &amp;lt;del&amp;gt;You just have to come and see.&amp;lt;/del&amp;gt; You'll see.&lt;br /&gt;
&lt;br /&gt;
== FAQ ==&lt;br /&gt;
Q: Is this a successful hack42 project?&lt;br /&gt;
A: Yes.&lt;br /&gt;
Q: Can I join?&lt;br /&gt;
A: Do your devices plug into Schuko? Can you stand dutch-talk in the early morning?&lt;br /&gt;
Q: Is this [https://hack42.nl/ Hack42] only?&lt;br /&gt;
A: No, just some live there.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands animated flag.gif]][[File:Netherlands 240-animated-flag-gifs.gif]]&lt;br /&gt;
&lt;br /&gt;
# [[User:BugBlue|Users:BugBlue]] - Herr Troll&lt;br /&gt;
# [[User:gmc|Users:User:gmc]] - Mr. Fox&lt;br /&gt;
# [[User:jos|Users:User:jos]] - Master Unlocker&lt;br /&gt;
# [[User:Lurwah|Users:User:Lurwah]] - Food hacker&lt;br /&gt;
# [[User:Cookie|Users:User:Cookie]] - 3D artiste extraordinaire&lt;br /&gt;
# [[User:Stitch|Users:User:Stitch]] - &amp;amp;Uuml;ber-Awesomiser&lt;br /&gt;
# [[User:Relocker|Users:User:Relocker]] - Master Locker&lt;br /&gt;
# [[User:AK47|Users:User:AK47]] - NOC Elite Force&lt;br /&gt;
# [[User:Vreemt|Users:User:Vreemt]] - UK Ambassador&lt;br /&gt;
# [[User:Vreemt_appendix|Users:User:Vreemt's +1]] - Native-speaking spy*&lt;br /&gt;
# [[User:diggie|Users:User:diggie]] - The Dutch Chef, ork bork bork!&lt;br /&gt;
# [[User:DavidVB|Users:User:DavidVB]] - Brazilian-Belgian fake-Dutchman*&lt;br /&gt;
# [[User:SA007|Users:User:SA007]] - Lead Solderer&lt;br /&gt;
# [[User:Eightdot|Users:User:8.]] - High grade low-level expert&lt;br /&gt;
# [[User:hobbybob|Users:User:hobbybob]] - LaserPyroQuadcopter GoToGuy&lt;br /&gt;
# [[User:Moem|Users:User:Moem]] Stroopwafelmeister&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;*) Deze persoon valt onder het gedoogbeleid. Dat is namelijk ook heel Nederlands...&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands 240-animated-flag-gifs.gif]][[File:Netherlands animated flag.gif]]&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Escalate WIN to a new level.&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:[[Traditional Dutch Cooking Workshops and Nomzing]]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:[[Dutch Deli]]&lt;br /&gt;
&lt;br /&gt;
== NO FOREIGNERS BEYOND THIS POINT ==&lt;br /&gt;
By reading this section of the wiki you agree not to be a foreigner.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; width: 100%; height: 80px; overflow: hidden; display: block;&amp;quot;&amp;gt;[[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]][[image:polonaise.gif]]*insecure input*? Problem?&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flag netherlands.gif~c200.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
: Rookmachine&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
: Moem&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
:''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + inhoud + zooi&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) 1,5m snoer&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3, min. 1 schuko)&lt;br /&gt;
: waterkoker, mokken, bestek&lt;br /&gt;
: schoonmaak (zeep, spons, doekje, theedoeken, afwasmiddel)&lt;br /&gt;
: sterretjes (klein vuurwerk)&lt;br /&gt;
: losse thee en metalen theepot, random thee&lt;br /&gt;
: plastic shotglazen&lt;br /&gt;
&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
: klein koelkastje type camping&lt;br /&gt;
: meuk voor orga&lt;br /&gt;
: RGB spots w/ controller&lt;br /&gt;
: more meuk voor orga&lt;br /&gt;
&lt;br /&gt;
* [[User:stitch|Users:User:stitch]]&lt;br /&gt;
: Zooi&lt;br /&gt;
: Extra tentje voor opslag&lt;br /&gt;
: Rookmachine&lt;br /&gt;
&lt;br /&gt;
* [[User:diggie|Site:UserManagement:AllUsers:Users:UserGroup:User:Account:Profile:diggie]]&lt;br /&gt;
: VW Camper met 250Wh zonnepaneel, keukentje en nieuwe 60 liter koelkascht (inclu mini-vriesvak voor de ijsblokjes voor in de booze)&lt;br /&gt;
: grote aanhanger met ultieme retro gaming zooi&lt;br /&gt;
: Verlengsnoeren tig meter met 16A blauw en/of schuko stekkers&lt;br /&gt;
: Verdeelblok&lt;br /&gt;
: 32A CEE blauw stekker, ifneedbe&lt;br /&gt;
: 2 klapstoelen&lt;br /&gt;
: raspberry pi's&lt;br /&gt;
: luidsprekerts (los)&lt;br /&gt;
: many tools&lt;br /&gt;
: vlaggen en vlaggetjes&lt;br /&gt;
: fatsoenlijk bier&lt;br /&gt;
: overleden UPS (a.k.a. 12V-240V omvormer project)&lt;br /&gt;
:'''Indien handig:'''&lt;br /&gt;
:: 2 pers. poptentje&lt;br /&gt;
:: skottelbraai (&amp;amp;empty;42cm pannenkoeken bakken?)&lt;br /&gt;
&lt;br /&gt;
* [[User:Moem|Users:User:Moem]]&lt;br /&gt;
: Eigen tent en bed&lt;br /&gt;
: Tafel (oprolbaar)&lt;br /&gt;
: Oublie-ijzer, beslagkom, strooppan, weegschaal&lt;br /&gt;
: Stroop&lt;br /&gt;
: recept voor VERSE STROOPWAFELS aka instant foodgasms&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]]&lt;br /&gt;
&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Glazen wegwerpglazen&lt;br /&gt;
: Meel, suiker, bastard sugar, gist, eieren, melk, kaneel, boterrrr&lt;br /&gt;
: Meer?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width:1800px; left:-201px; display: block; z-index:0; background-color:orange; height: 79px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width: 176px; left:-201px; display: block; z-index:0; background-color:orange; height: 3200px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2572</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2572"/>
		<updated>2014-08-21T10:02:28Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Sunday (afternoon): Erwtensoep (Green pea soup) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013] so he can send you a payment request. Please do this before 25 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. We'll let you know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 17:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's]. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 GMT (it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]] (just me)&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 GMT or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2571</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2571"/>
		<updated>2014-08-21T09:58:06Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Sunday (afternoon): Erwtensoep (Green pea soup) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013] so he can send you a payment request. Please do this before 25 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. We'll let you know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 17:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's]. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 GMT (it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 GMT or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2570</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2570"/>
		<updated>2014-08-21T09:48:34Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Sunday (evening): Braai (BBQ) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013] so he can send you a payment request. Please do this before 25 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. We'll let you know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 17:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's]. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 GMT (it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 GMT or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2569</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2569"/>
		<updated>2014-08-21T09:47:45Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Saturday: Frituur (deep-fried stuff) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013] so he can send you a payment request. Please do this before 25 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. We'll let you know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 17:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's]. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 GMT (it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 GMT or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2568</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2568"/>
		<updated>2014-08-21T09:46:47Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Sunday (evening): Braai (BBQ) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013] so he can send you a payment request. Please do this before 25 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. We'll let you know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 17:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's]. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 GMT (it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 GMT or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Vreemt|Vreemt]]&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2567</id>
		<title>Traditional Dutch Cooking Workshops and Nomzing</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Traditional_Dutch_Cooking_Workshops_and_Nomzing&amp;diff=2567"/>
		<updated>2014-08-21T09:39:03Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Saturday: Frituur (deep-fried stuff) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll be cooking some traditional Dutch dishes at [[Villages:Village:Camp_Holland|Camp Holland]]. Why? Because we can, and sharing food is fun!&lt;br /&gt;
&lt;br /&gt;
==What?==&lt;br /&gt;
We'll cook food, tell you how to make it yourself, and let you eat it.&lt;br /&gt;
&lt;br /&gt;
'''Please pledge to pay and be present by putting your name in the tables below, and sending an e-mail to [mailto:diggie@ohm2013.org diggie@ohm2013] so he can send you a payment request. Please do this before 25 August, so we know how much food to bring over from #Holland'''&lt;br /&gt;
&lt;br /&gt;
==Location==&lt;br /&gt;
Somewhere near [[Villages:Village:Camp_Holland|Camp Holland]]. We'll let you know.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Schedule==&lt;br /&gt;
&lt;br /&gt;
===Friday: King-size pannenkoeken (Dutch pancakes) ===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; pancake party&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 17:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per pancake (&amp;amp;empty;42 cm!! These easily feed one generic-sized adult)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Toppings include bacon, cheese, strawberry jam, [http://nl.wikipedia.org/wiki/Stroop stroop], sugar, etc.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Msemtd|Michael Erskine]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Saturday: Frituur (deep-fried stuff)===&lt;br /&gt;
'''Type:''' Snackbar&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 18:00 GMT&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 4 per person (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:orange&amp;quot;&amp;gt;Pretty sure this will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
As common as pie in The Netherlands, we'll make fries, [http://nl.wikipedia.org/wiki/Kroket kroketten], [http://nl.wikipedia.org/wiki/Frikadel frikandellen], [http://nl.wikipedia.org/wiki/Kaassouffle kaassouffle's]. With real Dutch Mayonnaise.&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Sully|Sully]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Vreemt|Vreemt]] +1&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (afternoon): Erwtensoep (Green pea soup)===&lt;br /&gt;
'''Type:''' Workshop &amp;amp; tasting session&amp;lt;br&amp;gt;&lt;br /&gt;
'''Start time:''' Around 15:00 GMT (it needs some time to cook)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 2 per participant (you'll get at least one portion of the soup)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Not enough pledges yet (Pledge below!)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
With [http://nl.wikipedia.org/wiki/Rookworst rookworst], bacon, [http://nl.wikipedia.org/wiki/Roggebrood roggebrood] with [http://nl.wikipedia.org/wiki/Katenspek cooked bacon], and much more&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Sunday (evening): Braai (BBQ)===&lt;br /&gt;
'''Type:''' Just eating (gezellig!)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Time:''' Around 19:00 GMT or so&amp;lt;br&amp;gt;&lt;br /&gt;
'''Price:''' &amp;amp;pound; 10 per participant (all you can eat)&amp;lt;br&amp;gt;&lt;br /&gt;
'''Status:''' &amp;lt;span style=&amp;quot;color:green&amp;quot;&amp;gt;This will happen&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{|class=&amp;quot;sortable wikitable&amp;quot;&lt;br /&gt;
!User&lt;br /&gt;
|-&lt;br /&gt;
| [[User:diggie|diggie]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Jos|Jos]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Eightdot|Eightdot]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:gmc|Users:User:gmc]]&lt;br /&gt;
|-&lt;br /&gt;
| [[User:BugBlue|BugBlue]] ([[User talk:BugBlue|talk]])&lt;br /&gt;
|-&lt;br /&gt;
| (Your name here...) Lazy users just type &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=2371</id>
		<title>User:Vreemt</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=2371"/>
		<updated>2014-08-19T15:14:08Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attendee&lt;br /&gt;
|name=Sandra&lt;br /&gt;
|village=Village:Slackers On Holiday&lt;br /&gt;
|Arrival=2014/08/29 22:00&lt;br /&gt;
|Departure=2014/08/31 20:00&lt;br /&gt;
|IRC=vreemt or nyx&lt;br /&gt;
|Twitter=vreemt&lt;br /&gt;
}}&lt;br /&gt;
Paklijst:&lt;br /&gt;
some tools, kettle, tent+inside stuff, chair?, NL multiplug with UK adapter, things, more stuff etc&lt;br /&gt;
&lt;br /&gt;
Travel:&lt;br /&gt;
250km via M6, just under 3hrs&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=2370</id>
		<title>User:Vreemt</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=2370"/>
		<updated>2014-08-19T15:10:38Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attendee&lt;br /&gt;
|name=Sandra&lt;br /&gt;
|village=Village:Slackers On Holiday&lt;br /&gt;
|Arrival=2014/08/29 22:00&lt;br /&gt;
|Departure=2014/08/31 20:00&lt;br /&gt;
|IRC=vreemt or nyx&lt;br /&gt;
|Twitter=vreemt&lt;br /&gt;
}}&lt;br /&gt;
Paklijst:&lt;br /&gt;
some tools, kettle, tent+inside stuff, chair?, NL multiplug with UK adapter, things, more stuff etc&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=2369</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=2369"/>
		<updated>2014-08-19T14:44:42Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''''Supremacy''' redirects here. For other uses see [[Villages|Villages]]''.&lt;br /&gt;
----{{VillageOrange&lt;br /&gt;
|Picture=Camp_holland_badge.png&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Cloud Printing, Painting Orange, Putting stickers everywhere, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, Lock picking, Nose picking, Hardcore hacking, Trolling like a pro.&lt;br /&gt;
|Location=51.96726,-0.79358&lt;br /&gt;
}}&amp;lt;span style=&amp;quot;z-index:30&amp;quot;&amp;gt;[[File:Dutch-flag-010.jpg]]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] &lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks. Hacking is about hacking.&lt;br /&gt;
&lt;br /&gt;
[[File:Windmillblue.gif]]&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
None of the content of this page reflects what our plans really are. &amp;lt;del&amp;gt;You just have to come and see.&amp;lt;/del&amp;gt; You'll see.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands animated flag.gif]][[File:Netherlands 240-animated-flag-gifs.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:BugBlue]] CEO&lt;br /&gt;
* [[User:gmc|Users:User:gmc]] CEO &lt;br /&gt;
* [[User:jos|Users:User:jos]] CEO &lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]] CEO &lt;br /&gt;
* [[User:Cookie|Users:User:Cookie]] CEO &lt;br /&gt;
* [[User:Stitch|Users:User:Stitch]] CEO &lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]] CEO &lt;br /&gt;
* [[User:AK47|Users:User:AK47]] CEO &lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]] '''+1''' CEO &lt;br /&gt;
* [[User:diggie|Users:User:diggie]] CEO &lt;br /&gt;
* [[User:DavidVB|Users:User:DavidVB]] CEO&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands 240-animated-flag-gifs.gif]][[File:Netherlands animated flag.gif]]&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Escalate WIN to a new level.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flag netherlands.gif~c200.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
: Rookmachine&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
:''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + inhoud + zooi&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) 1,5m snoer&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3, min. 1 schuko)&lt;br /&gt;
: waterkoker, mokken, bestek&lt;br /&gt;
: schoonmaak (zeep, spons, doekje, theedoeken, afwasmiddel)&lt;br /&gt;
: verschillende smaken eenkops thee, engelse thee&lt;br /&gt;
: sterretjes (klein vuurwerk)&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
: klein koelkastje type camping&lt;br /&gt;
: meuk voor orga&lt;br /&gt;
: RGB spots w/ controller&lt;br /&gt;
: more meuk voor orga&lt;br /&gt;
&lt;br /&gt;
* [[User:stitch|Users:User:stitch]]&lt;br /&gt;
: Zooi&lt;br /&gt;
: Extra tentje voor opslag&lt;br /&gt;
: Rookmachine&lt;br /&gt;
&lt;br /&gt;
* [[User:diggie|Site:UserManagement:AllUsers:Users:UserGroup:User:Account:Profile:diggie]]&lt;br /&gt;
: VW Camper met 250Wh zonnepaneel, keukentje en nieuwe 60 liter koelkascht (inclu mini-vriesvak voor de ijsblokjes voor in de booze)&lt;br /&gt;
: grote aanhanger met ultieme retro gaming zooi&lt;br /&gt;
: Verlengsnoeren tig meter met 16A blauw en/of schuko stekkers&lt;br /&gt;
: Verdeelblok&lt;br /&gt;
: 32A CEE blauw stekker, ifneedbe&lt;br /&gt;
: 2 klapstoelen&lt;br /&gt;
: raspberry pi's&lt;br /&gt;
: luidsprekerts (los)&lt;br /&gt;
: many tools&lt;br /&gt;
: vlaggen en vlaggetjes&lt;br /&gt;
: fatsoenlijk bier&lt;br /&gt;
: overleden UPS (a.k.a. 12V-240V omvormer project)&lt;br /&gt;
:'''Indien handig:'''&lt;br /&gt;
:: 2 pers. poptentje&lt;br /&gt;
:: skottelbraai (&amp;amp;empty;42cm pannenkoeken bakken?)&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]]&lt;br /&gt;
&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Glazen wegwerpglazen&lt;br /&gt;
: Meer?&lt;br /&gt;
&lt;br /&gt;
== Dutch Shopping List for the British (and Germanz NOC) ==&lt;br /&gt;
: VLA (some boxes. different flavours)&lt;br /&gt;
: Stroopwafels (some boxes)&lt;br /&gt;
: Kruidnoten (pepernoten) (A lot)&lt;br /&gt;
: Appelstroop (WTF!?!?)&lt;br /&gt;
: Speculaas (some boxes)&lt;br /&gt;
: Pindakaas (the real stuff)&lt;br /&gt;
: Speculoos (not ordered, but we like to give)&lt;br /&gt;
: Hagelslag (why?)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width:1800px; left:-201px; display: block; z-index:0; background-color:orange; height: 79px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width: 176px; left:-201px; display: block; z-index:0; background-color:orange; height: 3200px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=2363</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=2363"/>
		<updated>2014-08-19T14:33:08Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Dutch Shopping List for the Brittish (and Germanz NOC) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''''Supremacy''' redirects here. For other uses see [[Villages|Villages]]''.&lt;br /&gt;
----{{VillageOrange&lt;br /&gt;
|Picture=Camp_holland_badge.png&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Cloud Printing, Painting Orange, Putting stickers everywhere, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, Lock picking, Nose picking, Hardcore hacking, Trolling like a pro.&lt;br /&gt;
|Location=51.96726,-0.79358&lt;br /&gt;
}}&amp;lt;span style=&amp;quot;z-index:30&amp;quot;&amp;gt;[[File:Dutch-flag-010.jpg]]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] &lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks. Hacking is about hacking.&lt;br /&gt;
&lt;br /&gt;
[[File:Windmillblue.gif]]&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
None of the content of this page reflects what our plans really are. &amp;lt;del&amp;gt;You just have to come and see.&amp;lt;/del&amp;gt; You'll see.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands animated flag.gif]][[File:Netherlands 240-animated-flag-gifs.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:BugBlue]] CEO&lt;br /&gt;
* [[User:gmc|Users:User:gmc]] CEO &lt;br /&gt;
* [[User:jos|Users:User:jos]] CEO &lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]] CEO &lt;br /&gt;
* [[User:Cookie|Users:User:Cookie]] CEO &lt;br /&gt;
* [[User:Stitch|Users:User:Stitch]] CEO &lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]] CEO &lt;br /&gt;
* [[User:AK47|Users:User:AK47]] CEO &lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]] '''+1''' CEO &lt;br /&gt;
* [[User:diggie|Users:User:diggie]] CEO &lt;br /&gt;
* [[User:DavidVB|Users:User:DavidVB]] CEO&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands 240-animated-flag-gifs.gif]][[File:Netherlands animated flag.gif]]&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Escalate WIN to a new level.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flag netherlands.gif~c200.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
: Rookmachine&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
:''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + inhoud&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) 1,5m snoer&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3, min. 1 schuko)&lt;br /&gt;
: waterkoker, mokken, bestek &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: schoonmaak (zeep, spons, doekje, theedoeken, afwasmiddel)&lt;br /&gt;
: verschillende smaken eenkops thee, engelse thee&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: afwasteil? emmer?&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
: klein koelkastje type camping&lt;br /&gt;
: meuk voor orga&lt;br /&gt;
: RGB spots w/ controller&lt;br /&gt;
: more meuk voor orga&lt;br /&gt;
&lt;br /&gt;
* [[User:stitch|Users:User:stitch]]&lt;br /&gt;
: Zooi&lt;br /&gt;
: Extra tentje voor opslag&lt;br /&gt;
: Rookmachine&lt;br /&gt;
&lt;br /&gt;
* [[User:diggie|Site:UserManagement:AllUsers:Users:UserGroup:User:Account:Profile:diggie]]&lt;br /&gt;
: VW Camper met 250Wh zonnepaneel, keukentje en nieuwe 60 liter koelkascht (inclu mini-vriesvak voor de ijsblokjes voor in de booze)&lt;br /&gt;
: grote aanhanger met ultieme retro gaming zooi&lt;br /&gt;
: Verlengsnoeren tig meter met 16A blauw en/of schuko stekkers&lt;br /&gt;
: Verdeelblok&lt;br /&gt;
: 32A CEE blauw stekker, ifneedbe&lt;br /&gt;
: 2 klapstoelen&lt;br /&gt;
: raspberry pi's&lt;br /&gt;
: luidsprekerts (los)&lt;br /&gt;
: many tools&lt;br /&gt;
: vlaggen en vlaggetjes&lt;br /&gt;
: fatsoenlijk bier&lt;br /&gt;
: overleden UPS (a.k.a. 12V-240V omvormer project)&lt;br /&gt;
:'''Indien handig:'''&lt;br /&gt;
:: 2 pers. poptentje&lt;br /&gt;
:: skottelbraai (&amp;amp;empty;42cm pannenkoeken bakken?)&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]]&lt;br /&gt;
&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Glazen wegwerpglazen&lt;br /&gt;
: Meer?&lt;br /&gt;
&lt;br /&gt;
== Dutch Shopping List for the British (and Germanz NOC) ==&lt;br /&gt;
: VLA (some boxes. different flavours)&lt;br /&gt;
: Stroopwafels (some boxes)&lt;br /&gt;
: Kruidnoten (pepernoten) (A lot)&lt;br /&gt;
: Appelstroop (WTF!?!?)&lt;br /&gt;
: Speculaas (some boxes)&lt;br /&gt;
: Pindakaas (the real stuff)&lt;br /&gt;
: Speculoos (not ordered, but we like to give)&lt;br /&gt;
: Hagelslag (why?)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width:1800px; left:-201px; display: block; z-index:0; background-color:orange; height: 79px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width: 176px; left:-201px; display: block; z-index:0; background-color:orange; height: 3200px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1916</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1916"/>
		<updated>2014-08-17T21:38:04Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */ vreemt bijgewerkt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''''Supremacy''' redirects here. For other uses see [[Villages|Villages]]''.&lt;br /&gt;
----{{VillageOrange&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
|Location= 51.96726,-0.79358&lt;br /&gt;
}}&amp;lt;span style=&amp;quot;z-index:30&amp;quot;&amp;gt;[[File:Dutch-flag-010.jpg]]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] [[File:Flag3.gif|100px]] &lt;br /&gt;
We need no text, we need hackers and hacks. Hacking is about hacking.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
None of the content of this page reflects what our plans really are. &amp;lt;del&amp;gt;You just have to come and see.&amp;lt;/del&amp;gt; You'll see.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands animated flag.gif]][[File:Netherlands 240-animated-flag-gifs.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:AK47|Users:User:User:AK47]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
* [[User:diggie|Users:User:diggie]]&lt;br /&gt;
&lt;br /&gt;
[[File:Netherlands 240-animated-flag-gifs.gif]][[File:Netherlands animated flag.gif]]&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Escalate WIN to a new level.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
&lt;br /&gt;
[[File:Flag netherlands.gif~c200.gif]]&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + inhoud&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) 1,5m snoer&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3, min. 1 schuko)&lt;br /&gt;
: waterkoker, mokken, bestek &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: schoonmaak (zeep, spons, doekje, theedoeken, afwasmiddel)&lt;br /&gt;
: verschillende smaken eenkops thee, engelse thee&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: afwasteil? emmer?&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
: klein koelkastje type camping&lt;br /&gt;
: meuk voor orga&lt;br /&gt;
: RGB spots w/ controller&lt;br /&gt;
: more meuk voor orga&lt;br /&gt;
&lt;br /&gt;
* [[User:stitch|Users:User:stitch]]&lt;br /&gt;
: Zooi&lt;br /&gt;
: Extra tentje voor opslag&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
&lt;br /&gt;
[[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]] [[File:Netherla.gif]]&lt;br /&gt;
&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Glazen wegwerpglazen&lt;br /&gt;
: Meer?&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width:1800px; left:-201px; display: block; z-index:0; background-color:orange; height: 79px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:transparent; position: absolute; top: -135px; width: 176px; left:-201px; display: block; z-index:0; background-color:orange; height: 3200px;&amp;quot;&amp;gt;l&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1624</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1624"/>
		<updated>2014-08-13T10:32:47Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3, min. 1 schuko)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, afwasborstel, sponsje, doekje, theedoeken, afwasmiddel, bleek spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: afwasteil? emmer?&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
:: sterretjes (klein vuurwerk, mag dat?)&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1623</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1623"/>
		<updated>2014-08-13T10:32:13Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3, waarschijnlijk 1 schuko)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, afwasborstel, sponsje, doekje, theedoeken, afwasmiddel, bleek spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: afwasteil? emmer?&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
:: sterretjes (klein vuurwerk, mag dat?)&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1622</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1622"/>
		<updated>2014-08-13T10:31:58Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 3)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, afwasborstel, sponsje, doekje, theedoeken, afwasmiddel, bleek spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: afwasteil? emmer?&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
:: sterretjes (klein vuurwerk, mag dat?)&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1621</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1621"/>
		<updated>2014-08-13T10:31:25Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
''NB. mijn zooi heeft UK stekkers tenzij anders vermeld''&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, afwasborstel, sponsje, doekje, theedoeken, afwasmiddel, bleek spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
:'''indien gewenst'''&lt;br /&gt;
:: afwasteil? emmer?&lt;br /&gt;
:: linksys router (NL stekker)? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
:: losse thee en metalen theepot&lt;br /&gt;
:: plastic shotglazen&lt;br /&gt;
:: sterretjes (klein vuurwerk, mag dat?)&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1620</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1620"/>
		<updated>2014-08-13T10:28:51Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, afwasborstel, sponsje, doekje, theedoeken, afwasmiddel, bleek spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
: plastic shotglazen&lt;br /&gt;
: sterretjes&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1619</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1619"/>
		<updated>2014-08-13T10:28:38Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, afwasborstel, sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
: plastic shotglazen&lt;br /&gt;
: sterretjes&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1618</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1618"/>
		<updated>2014-08-13T10:28:16Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: schoonmaak (zeep, sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
: plastic shotglazen&lt;br /&gt;
: sterretjes&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1617</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1617"/>
		<updated>2014-08-13T10:26:48Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes (en UK stekkerdoos voor eigen gebruik)&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos voor algemeen gebruik (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: afwaszooi (sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
: plastic shotglazen&lt;br /&gt;
: sterretjes&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1616</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1616"/>
		<updated>2014-08-13T10:25:41Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: afwaszooi (sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
: plastic shotglazen&lt;br /&gt;
: sterretjes&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1615</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1615"/>
		<updated>2014-08-13T10:24:41Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos (indoor, 5 schuko plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: afwaszooi (sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1614</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1614"/>
		<updated>2014-08-13T10:23:41Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos (indoor, 5 plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: afwaszooi (sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
'''indien gewenst'''&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1613</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1613"/>
		<updated>2014-08-13T10:23:09Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */  thee toegevoegd&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos (indoor, 5 plugs) - lengte snoer TBC&lt;br /&gt;
: NL &amp;gt; UK adapters (qty TBC, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: afwaszooi (sponsje, doekje, theedoeken, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
: verschillende smaken thee, engelse thee&lt;br /&gt;
&lt;br /&gt;
===indien gewenst===&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes)&lt;br /&gt;
: losse thee en metalen theepot&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1612</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1612"/>
		<updated>2014-08-13T10:18:14Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Wie doet neemt wat mee */  vreemt toegevoegd&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;br /&gt;
&lt;br /&gt;
== Wie doet neemt wat mee ==&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
: Tent&lt;br /&gt;
: Verlengsnoer 25 meter schuko&lt;br /&gt;
: 32A CEE rood -&amp;gt; 3x schuko en 2x 16A CEE rood&lt;br /&gt;
: 2 stoelen&lt;br /&gt;
&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
: Hangmat&lt;br /&gt;
&lt;br /&gt;
* [[User:vreemt|Users:User:vreemt]]&lt;br /&gt;
: Tent + luchtbed + beddengoed + indoor tent lichtjes&lt;br /&gt;
: 1 stoel, zitkleed&lt;br /&gt;
: NL stekkerdoos (indoor, 5 plugs) - zal lengte snoer checken&lt;br /&gt;
: NL &amp;gt; UK adapters (moet ze tellen, minimaal 2)&lt;br /&gt;
: wasknijpers&lt;br /&gt;
: waterkoker, mokken &lt;br /&gt;
: schroevendraaier, ductape en ander klein gereedschap&lt;br /&gt;
: bestek, metaal en plastic&lt;br /&gt;
: afwaszooi (sponsje, doekje, afwasmiddel, schoonmaak spray)&lt;br /&gt;
: papier &amp;amp; schrijfwaren (lekker ouderwets)&lt;br /&gt;
&lt;br /&gt;
: indien gewenst --&lt;br /&gt;
: afwasteil? emmer?&lt;br /&gt;
: linksys router? + meerdere cat5 kabels (verschillende lengtes) - indien gewenst!!&lt;br /&gt;
&lt;br /&gt;
== Lokaal kopen/huren/regelen ==&lt;br /&gt;
: Chips&lt;br /&gt;
: Thee!&lt;br /&gt;
: Koffie&lt;br /&gt;
: Sapjes&lt;br /&gt;
: Wegwerpglazen&lt;br /&gt;
: Kast voor in tent om spullen op te slaan&lt;br /&gt;
: Meer?&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=1611</id>
		<title>User:Vreemt</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=1611"/>
		<updated>2014-08-13T10:09:07Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: added Paklijst&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attendee&lt;br /&gt;
|name=Sandra&lt;br /&gt;
|village=Village:Slackers On Holiday&lt;br /&gt;
|Arrival=2014/08/29 22:00&lt;br /&gt;
|Departure=2014/08/31 20:00&lt;br /&gt;
|IRC=vreemt or nyx&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Paklijst:&lt;br /&gt;
tools, kettle, tent+inside stuff, chair, NL multiplug with UK adapter, things, more stuff etc&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=1610</id>
		<title>User:Vreemt</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=1610"/>
		<updated>2014-08-13T10:05:01Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attendee&lt;br /&gt;
|name=Sandra&lt;br /&gt;
|village=Village:Slackers On Holiday&lt;br /&gt;
|Arrival=2014/08/29 22:00&lt;br /&gt;
|Departure=2014/08/31 20:00&lt;br /&gt;
|IRC=vreemt or nyx&lt;br /&gt;
}}&lt;br /&gt;
I have a tent (:&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=1603</id>
		<title>User:Vreemt</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=User:Vreemt&amp;diff=1603"/>
		<updated>2014-08-13T08:42:59Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: Created page with &amp;quot;{{Attendee |name=Sandra |village=Slackers on Holiday |Arrival=2014/08/29 22:00 |Departure=2014/08/31 22:00 |IRC=vreemt or nyx }} I have a tent (:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Attendee&lt;br /&gt;
|name=Sandra&lt;br /&gt;
|village=Slackers on Holiday&lt;br /&gt;
|Arrival=2014/08/29 22:00&lt;br /&gt;
|Departure=2014/08/31 22:00&lt;br /&gt;
|IRC=vreemt or nyx&lt;br /&gt;
}}&lt;br /&gt;
I have a tent (:&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
	<entry>
		<id>https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1602</id>
		<title>Villages:Village:Slackers On Holiday</title>
		<link rel="alternate" type="text/html" href="https://wiki.emfcamp.org/2014/w/index.php?title=Villages:Village:Slackers_On_Holiday&amp;diff=1602"/>
		<updated>2014-08-13T08:42:01Z</updated>

		<summary type="html">&lt;p&gt;Vreemt: /* Inhabitants:Inhabitant */ Vreemt+1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Name=Slackers On Holiday&lt;br /&gt;
|Description= We Are Awesome, we park where we damn well please!&lt;br /&gt;
|Contact=BugBlue&lt;br /&gt;
|Activities=Painting Orange, Retrogaming, Shopping, Visiting THE MUSEUM, Radiostuff, lock picking, hardcore hacking, trolling like a pro.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Vlag halfstok.jpg]]&lt;br /&gt;
&lt;br /&gt;
We need no text, we need hackers and hacks.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We drive on the right side of the road. Beware.&lt;br /&gt;
&lt;br /&gt;
== Inhabitants:Inhabitant ==&lt;br /&gt;
&lt;br /&gt;
* [[User:BugBlue|Users:User:BugBlue]]&lt;br /&gt;
* [[User:gmc|Users:User:gmc]]&lt;br /&gt;
* [[User:jos|Users:User:jos]]&lt;br /&gt;
* [[User:Lurwah|Users:User:Lurwah]]&lt;br /&gt;
* [[User:Cookie|Users:User:User:Cookie]]&lt;br /&gt;
* [[User:Stitch|Users:User:User:Stitch]]&lt;br /&gt;
* [[User:Relocker|Users:User:Relocker]]&lt;br /&gt;
* [[User:Vreemt|Users:User:Vreemt]]+1&lt;br /&gt;
&lt;br /&gt;
== Agendas:Agenda ==&lt;br /&gt;
&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:World domination&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the SportCenters:BadmintonCenters:BadmintonCenter:[http://www.nbc.uk.com/index.html NBC]&lt;br /&gt;
* Agendas:Agenda:AgendaItems:AgendaItem:Visit to the Sights:Museums:Musem:[http://www.bletchleypark.org.uk/ world domination intelligence centre]&lt;/div&gt;</summary>
		<author><name>Vreemt</name></author>
	</entry>
</feed>