<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.why2025.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Felixwebercouk</id>
	<title>WHY2025 wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.why2025.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Felixwebercouk"/>
	<link rel="alternate" type="text/html" href="https://wiki.why2025.org/Special:Contributions/Felixwebercouk"/>
	<updated>2026-04-17T05:00:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.12</generator>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=How_to_develop_an_app&amp;diff=20561</id>
		<title>How to develop an app</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=How_to_develop_an_app&amp;diff=20561"/>
		<updated>2025-08-16T19:44:39Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: Clarify goal of local building&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How to develop an app for the badge ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This is living documentation, check often for updates&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
WARNING: the documentation might be out of date. But it might be better than no documentation.&lt;br /&gt;
We try to update as soon as possible.&lt;br /&gt;
&lt;br /&gt;
For now, the documentation is focused on Linux. MacOS might work, for Windows, you probably need WSL.&lt;br /&gt;
&lt;br /&gt;
=== Clone the firmware repo ===&lt;br /&gt;
&lt;br /&gt;
Also read the [https://gitlab.com/why2025/team-badge/firmware README].&lt;br /&gt;
&lt;br /&gt;
 git clone https://gitlab.com/why2025/team-badge/firmware.git&lt;br /&gt;
&lt;br /&gt;
=== Install ESP-IDF ===&lt;br /&gt;
&lt;br /&gt;
Follow instructions here&lt;br /&gt;
&lt;br /&gt;
[https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/index.html#installation ESP32 installation]&lt;br /&gt;
&lt;br /&gt;
At the point where you run &amp;lt;code&amp;gt;install.sh&amp;lt;/code&amp;gt;, give &amp;lt;code&amp;gt;esp32p4&amp;lt;/code&amp;gt; as argument.&lt;br /&gt;
&lt;br /&gt;
 ./install.sh esp32p4&lt;br /&gt;
&lt;br /&gt;
If you type&lt;br /&gt;
&lt;br /&gt;
 idf.py --version&lt;br /&gt;
&lt;br /&gt;
you should get the version number. If not, you might need to activate it.&lt;br /&gt;
&lt;br /&gt;
 . ~/esp/esp-idf/export.sh&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using NixOS with [https://github.com/mirrexagon/nixpkgs-esp-dev nixpkgs-esp-dev],&lt;br /&gt;
make sure to run &amp;lt;code&amp;gt;export ESP_IDF_VERSION=5.5&amp;lt;/code&amp;gt; after calling &amp;lt;code&amp;gt;nix develop&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Build and install ===&lt;br /&gt;
&lt;br /&gt;
First connect to the USB-C connector at the upper side of the badge.&lt;br /&gt;
&lt;br /&gt;
Go to the firmware directory of the cloned repository and build and install the firmware&lt;br /&gt;
&lt;br /&gt;
 idf.py build flash monitor&lt;br /&gt;
&lt;br /&gt;
This takes quite some time since the whole firmware is being build and flashed.&lt;br /&gt;
For updating only an app, see mpydaemon below.&lt;br /&gt;
&lt;br /&gt;
Type CTRL-] to end the monitor.&lt;br /&gt;
&lt;br /&gt;
=== Add your own app ===&lt;br /&gt;
&lt;br /&gt;
Create a new directory in &amp;lt;code&amp;gt;sdk_apps/&amp;lt;/code&amp;gt; and copy &amp;lt;code&amp;gt;sdk_apps/hello/main.c&amp;lt;/code&amp;gt; to it. Also copy &amp;lt;code&amp;gt;sdk_apps/hello/manifest.json&amp;lt;/code&amp;gt; as well and update it, and create an empty &amp;lt;code&amp;gt;storage_skel&amp;lt;/code&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
Adjust &amp;lt;code&amp;gt;flash_storage/skel/init.toml&amp;lt;/code&amp;gt; and add your app.&lt;br /&gt;
&lt;br /&gt;
Adjust &amp;lt;code&amp;gt;sdk_apps/CMakeLists.txt&amp;lt;/code&amp;gt; and add your app.&lt;br /&gt;
&lt;br /&gt;
Make changes, then build and flash again with &amp;lt;code&amp;gt;idf.py build flash monitor&amp;lt;/code&amp;gt;. Look at other apps in &amp;lt;code&amp;gt;sdk_apps&amp;lt;/code&amp;gt; for examples.&lt;br /&gt;
&lt;br /&gt;
See &amp;lt;code&amp;gt;sdk_apps/sdl_test/sdl_test.c&amp;lt;/code&amp;gt; for an example on how to use SDL3 (specifically graphics).&lt;br /&gt;
&lt;br /&gt;
After changing &amp;lt;code&amp;gt;init.toml&amp;lt;/code&amp;gt;, you might want to delete a directory:&lt;br /&gt;
&lt;br /&gt;
 rm -rf build/storage_staging/&lt;br /&gt;
&lt;br /&gt;
=== Build locally ===&lt;br /&gt;
&lt;br /&gt;
To build locally, call &amp;lt;code&amp;gt;get_idf&amp;lt;/code&amp;gt; after installing ESP-IDF (or have another &amp;lt;code&amp;gt;riscv32-esp-elf-gcc&amp;lt;/code&amp;gt; command available) and run-&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
riscv32-esp-elf-gcc \&lt;br /&gt;
  -O2 -flto -fPIC -fdata-sections -ffunction-sections \&lt;br /&gt;
  -fno-builtin -fno-builtin-function -fno-common -fno-jump-tables \&lt;br /&gt;
  -fno-tree-switch-conversion -fstrict-volatile-bitfields -fvisibility=hidden \&lt;br /&gt;
  -g3 -mabi=ilp32f -march=rv32imafc_zicsr_zifencei \&lt;br /&gt;
  -nostartfiles -nostdlib -shared \&lt;br /&gt;
  -Wl,--strip-debug -Wl,--gc-sections -e main \&lt;br /&gt;
  -isystem build/sdk_staging/include \&lt;br /&gt;
  -o build/app_elfs/[your_app].elf \&lt;br /&gt;
  sdk_apps/[your_app]/main.c&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(Replace [your_app].)&lt;br /&gt;
&lt;br /&gt;
This mirrors the flags used in CMakeLists.txt and will build an .elf to run on the WHY2025 badge, possibly to be copied to the badge with [https://wiki.why2025.org/index.php?title=How_to_develop_an_app#Use_mpydaemon mpydaemon/mpytool.sh].&lt;br /&gt;
&lt;br /&gt;
=== Test locally ===&lt;br /&gt;
&lt;br /&gt;
To improve development speed, you want to develop and test locally.&lt;br /&gt;
&lt;br /&gt;
The badge uses SDL3, which is a OS independent hardware layer that can be used on your computer.&lt;br /&gt;
&lt;br /&gt;
Install SDL3:&lt;br /&gt;
&lt;br /&gt;
 https://github.com/libsdl-org/SDL/blob/main/INSTALL.md&lt;br /&gt;
&lt;br /&gt;
On Linux, you might need to install the packages described here: [https://wiki.libsdl.org/SDL3/README-linux SDL Wiki Linux]&lt;br /&gt;
&lt;br /&gt;
After this, you might want to run&lt;br /&gt;
&lt;br /&gt;
 sudo ldconfig&lt;br /&gt;
&lt;br /&gt;
Now go inside your app directory and you can compile your app for your OS:&lt;br /&gt;
&lt;br /&gt;
 gcc myapp.c -o myapp -I /usr/local/include/SDL3 -L/usr/local/lib -lSDL3&lt;br /&gt;
&lt;br /&gt;
(adjust paths as needed)&lt;br /&gt;
&lt;br /&gt;
Now you can run the app locally:&lt;br /&gt;
&lt;br /&gt;
 ./myapp&lt;br /&gt;
&lt;br /&gt;
=== Use mpydaemon ===&lt;br /&gt;
&lt;br /&gt;
Use mpydaemon to update only your app. You need an SD card installed.&lt;br /&gt;
&lt;br /&gt;
See [https://gitlab.com/why2025/team-badge/micropython/-/tree/master/mpydaemon mpydeamon]&lt;br /&gt;
&lt;br /&gt;
=== Share ===&lt;br /&gt;
&lt;br /&gt;
If you made an app that you want to share, upload it to&lt;br /&gt;
&lt;br /&gt;
[https://badge.why2025.org/ BadgeHub]&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=How_to_develop_an_app&amp;diff=20560</id>
		<title>How to develop an app</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=How_to_develop_an_app&amp;diff=20560"/>
		<updated>2025-08-16T19:40:44Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: Add local machine .elf building instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How to develop an app for the badge ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This is living documentation, check often for updates&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
WARNING: the documentation might be out of date. But it might be better than no documentation.&lt;br /&gt;
We try to update as soon as possible.&lt;br /&gt;
&lt;br /&gt;
For now, the documentation is focused on Linux. MacOS might work, for Windows, you probably need WSL.&lt;br /&gt;
&lt;br /&gt;
=== Clone the firmware repo ===&lt;br /&gt;
&lt;br /&gt;
Also read the [https://gitlab.com/why2025/team-badge/firmware README].&lt;br /&gt;
&lt;br /&gt;
 git clone https://gitlab.com/why2025/team-badge/firmware.git&lt;br /&gt;
&lt;br /&gt;
=== Install ESP-IDF ===&lt;br /&gt;
&lt;br /&gt;
Follow instructions here&lt;br /&gt;
&lt;br /&gt;
[https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/index.html#installation ESP32 installation]&lt;br /&gt;
&lt;br /&gt;
At the point where you run &amp;lt;code&amp;gt;install.sh&amp;lt;/code&amp;gt;, give &amp;lt;code&amp;gt;esp32p4&amp;lt;/code&amp;gt; as argument.&lt;br /&gt;
&lt;br /&gt;
 ./install.sh esp32p4&lt;br /&gt;
&lt;br /&gt;
If you type&lt;br /&gt;
&lt;br /&gt;
 idf.py --version&lt;br /&gt;
&lt;br /&gt;
you should get the version number. If not, you might need to activate it.&lt;br /&gt;
&lt;br /&gt;
 . ~/esp/esp-idf/export.sh&lt;br /&gt;
&lt;br /&gt;
If you&#039;re using NixOS with [https://github.com/mirrexagon/nixpkgs-esp-dev nixpkgs-esp-dev],&lt;br /&gt;
make sure to run &amp;lt;code&amp;gt;export ESP_IDF_VERSION=5.5&amp;lt;/code&amp;gt; after calling &amp;lt;code&amp;gt;nix develop&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Build and install ===&lt;br /&gt;
&lt;br /&gt;
First connect to the USB-C connector at the upper side of the badge.&lt;br /&gt;
&lt;br /&gt;
Go to the firmware directory of the cloned repository and build and install the firmware&lt;br /&gt;
&lt;br /&gt;
 idf.py build flash monitor&lt;br /&gt;
&lt;br /&gt;
This takes quite some time since the whole firmware is being build and flashed.&lt;br /&gt;
For updating only an app, see mpydaemon below.&lt;br /&gt;
&lt;br /&gt;
Type CTRL-] to end the monitor.&lt;br /&gt;
&lt;br /&gt;
=== Add your own app ===&lt;br /&gt;
&lt;br /&gt;
Create a new directory in &amp;lt;code&amp;gt;sdk_apps/&amp;lt;/code&amp;gt; and copy &amp;lt;code&amp;gt;sdk_apps/hello/main.c&amp;lt;/code&amp;gt; to it. Also copy &amp;lt;code&amp;gt;sdk_apps/hello/manifest.json&amp;lt;/code&amp;gt; as well and update it, and create an empty &amp;lt;code&amp;gt;storage_skel&amp;lt;/code&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
Adjust &amp;lt;code&amp;gt;flash_storage/skel/init.toml&amp;lt;/code&amp;gt; and add your app.&lt;br /&gt;
&lt;br /&gt;
Adjust &amp;lt;code&amp;gt;sdk_apps/CMakeLists.txt&amp;lt;/code&amp;gt; and add your app.&lt;br /&gt;
&lt;br /&gt;
Make changes, then build and flash again with &amp;lt;code&amp;gt;idf.py build flash monitor&amp;lt;/code&amp;gt;. Look at other apps in &amp;lt;code&amp;gt;sdk_apps&amp;lt;/code&amp;gt; for examples.&lt;br /&gt;
&lt;br /&gt;
See &amp;lt;code&amp;gt;sdk_apps/sdl_test/sdl_test.c&amp;lt;/code&amp;gt; for an example on how to use SDL3 (specifically graphics).&lt;br /&gt;
&lt;br /&gt;
After changing &amp;lt;code&amp;gt;init.toml&amp;lt;/code&amp;gt;, you might want to delete a directory:&lt;br /&gt;
&lt;br /&gt;
 rm -rf build/storage_staging/&lt;br /&gt;
&lt;br /&gt;
=== Build locally ===&lt;br /&gt;
&lt;br /&gt;
To build locally, call &amp;lt;code&amp;gt;get_idf&amp;lt;/code&amp;gt; after installing ESP-IDF (or have another &amp;lt;code&amp;gt;riscv32-esp-elf-gcc&amp;lt;/code&amp;gt; command available) and run-&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
riscv32-esp-elf-gcc \&lt;br /&gt;
  -O2 -flto -fPIC -fdata-sections -ffunction-sections \&lt;br /&gt;
  -fno-builtin -fno-builtin-function -fno-common -fno-jump-tables \&lt;br /&gt;
  -fno-tree-switch-conversion -fstrict-volatile-bitfields -fvisibility=hidden \&lt;br /&gt;
  -g3 -mabi=ilp32f -march=rv32imafc_zicsr_zifencei \&lt;br /&gt;
  -nostartfiles -nostdlib -shared \&lt;br /&gt;
  -Wl,--strip-debug -Wl,--gc-sections -e main \&lt;br /&gt;
  -isystem build/sdk_staging/include \&lt;br /&gt;
  -o build/app_elfs/[your_app].elf \&lt;br /&gt;
  sdk_apps/[your_app]/main.c&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(Replace [your_app].)&lt;br /&gt;
&lt;br /&gt;
This mirrors the flags used in CMakeLists.txt.&lt;br /&gt;
&lt;br /&gt;
=== Test locally ===&lt;br /&gt;
&lt;br /&gt;
To improve development speed, you want to develop and test locally.&lt;br /&gt;
&lt;br /&gt;
The badge uses SDL3, which is a OS independent hardware layer that can be used on your computer.&lt;br /&gt;
&lt;br /&gt;
Install SDL3:&lt;br /&gt;
&lt;br /&gt;
 https://github.com/libsdl-org/SDL/blob/main/INSTALL.md&lt;br /&gt;
&lt;br /&gt;
On Linux, you might need to install the packages described here: [https://wiki.libsdl.org/SDL3/README-linux SDL Wiki Linux]&lt;br /&gt;
&lt;br /&gt;
After this, you might want to run&lt;br /&gt;
&lt;br /&gt;
 sudo ldconfig&lt;br /&gt;
&lt;br /&gt;
Now go inside your app directory and you can compile your app for your OS:&lt;br /&gt;
&lt;br /&gt;
 gcc myapp.c -o myapp -I /usr/local/include/SDL3 -L/usr/local/lib -lSDL3&lt;br /&gt;
&lt;br /&gt;
(adjust paths as needed)&lt;br /&gt;
&lt;br /&gt;
Now you can run the app locally:&lt;br /&gt;
&lt;br /&gt;
 ./myapp&lt;br /&gt;
&lt;br /&gt;
=== Use mpydaemon ===&lt;br /&gt;
&lt;br /&gt;
Use mpydaemon to update only your app. You need an SD card installed.&lt;br /&gt;
&lt;br /&gt;
See [https://gitlab.com/why2025/team-badge/micropython/-/tree/master/mpydaemon mpydeamon]&lt;br /&gt;
&lt;br /&gt;
=== Share ===&lt;br /&gt;
&lt;br /&gt;
If you made an app that you want to share, upload it to&lt;br /&gt;
&lt;br /&gt;
[https://badge.why2025.org/ BadgeHub]&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=17719</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=17719"/>
		<updated>2025-08-05T10:48:30Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Bringing=gazebo, 🏳️🌈, purty fairy lights, speaker, tildagon x2, camping stove&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|Arrival=2025-08-07&lt;br /&gt;
|Departure=2025-08-14&lt;br /&gt;
|EMail=me@felixweber.co.uk&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|HackerSpace=Leighhack, Manchester&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10365</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10365"/>
		<updated>2025-06-10T12:17:04Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Bringing=gazebo, 🏳️🌈, purty fairy lights, speaker, tildagon x2, camping stove&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|Arrival=2025-08-06&lt;br /&gt;
|Departure=2025-08-14&lt;br /&gt;
|EMail=me@felixweber.co.uk&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|HackerSpace=Leighhack, Manchester&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=Village:UK_Refuge&amp;diff=10326</id>
		<title>Village:UK Refuge</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=Village:UK_Refuge&amp;diff=10326"/>
		<updated>2025-06-09T11:56:57Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Has name=UK Refuge&lt;br /&gt;
|Has description=A village for those visiting from the UK, with social space and chill vibes.&lt;br /&gt;
|Related to village=Village:EMF&lt;br /&gt;
|Village is open to newcomers=Yes&lt;br /&gt;
|Provides session location=No&lt;br /&gt;
|Location=52.69204, 4.74995&lt;br /&gt;
|Has orga contact=tony.goacher@hotmail.co.uk&lt;br /&gt;
|On site orga contact=Email or +447789715991&lt;br /&gt;
|Village citizen count=9&lt;br /&gt;
|Village Needs power=Smaller Village (up to 2x 230V/Schuko)&lt;br /&gt;
|Village size needed=50&lt;br /&gt;
|Village hacktents num=0&lt;br /&gt;
|Village brings big stuff=No&lt;br /&gt;
|Village Special Vehicle=TrakTrike. About 2.5mx1.5m&lt;br /&gt;
|Village planning notes=A group of those visiting from the UK (primarily North West England) but anyone is welcome!&lt;br /&gt;
Social space (may?) include Manchester Hackspace&#039;s gazebo, a speaker, and villagers&#039; furniture.&lt;br /&gt;
}}&lt;br /&gt;
A group of those visiting from the UK (primarily North West England) but anyone is welcome!&lt;br /&gt;
Social space to include a  gazebo, fairy lights. a speaker, and villagers&#039; furniture.&lt;br /&gt;
&lt;br /&gt;
Location not considered(?) yet.&lt;br /&gt;
&lt;br /&gt;
The awesome lists and tips below are borrowed from [[Village:TechInc]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
=for participants=&lt;br /&gt;
&lt;br /&gt;
===things that would be nice to have at our village:===&lt;br /&gt;
* things that provide shade (very important), such as tarps&lt;br /&gt;
* a speaker for chill beats&lt;br /&gt;
* some chairs&lt;br /&gt;
* all the flags!!!&lt;br /&gt;
* enough extension cords and stekkerblokken, preferably meant for outdoor use&lt;br /&gt;
* a few outdoor-proof lights, for practical use or for aesthetics and vibes.&lt;br /&gt;
&lt;br /&gt;
===pro tips for surviving hackercamps===&lt;br /&gt;
* earplugs for sleeping are a must&lt;br /&gt;
* shade is everything&lt;br /&gt;
* blinkenlights everywhere&lt;br /&gt;
* use glowsticks on tent wires to prevent accidents in the dark&lt;br /&gt;
* if a talk you want to attend is full or you&#039;re running late, you can watch them live at streaming.media.ccc.de.&lt;br /&gt;
&lt;br /&gt;
remember to check the foodcourt page for current info on guaranteed food-for-money sources at camp https://wiki.why2025.org/Team:Foodcourt&lt;br /&gt;
of course, there are many other ways to acquire food at camp, but they typically require a bit more elbow grease and good timing.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
TrakTike needs about 800W to charge.&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10325</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10325"/>
		<updated>2025-06-09T11:56:00Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Bringing=gazebo, maybe 2 chairs, fairy lights, bluetooth speaker, tildagon x2, multifuel stove, insanity&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|Arrival=2025-08-06&lt;br /&gt;
|Departure=2025-08-14&lt;br /&gt;
|EMail=me@felixweber.co.uk&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|HackerSpace=Leighhack, Manchester&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10324</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10324"/>
		<updated>2025-06-09T11:48:04Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Bringing=bluetooth speaker, tildagon x2, multifuel stove, insanity&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|Arrival=2025-08-06&lt;br /&gt;
|Departure=2025-08-14&lt;br /&gt;
|EMail=me@felixweber.co.uk&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|HackerSpace=Leighhack, Manchester&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=File:Village-UK_Refuge.svg&amp;diff=10095</id>
		<title>File:Village-UK Refuge.svg</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=File:Village-UK_Refuge.svg&amp;diff=10095"/>
		<updated>2025-06-03T12:34:35Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10072</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10072"/>
		<updated>2025-06-02T22:00:54Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Bringing=bluetooth speaker, tildagon x2, multifuel stove, insanity&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|EMail=me@felixweber.co.uk&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|HackerSpace=Leighhack, Manchester&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10071</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10071"/>
		<updated>2025-06-02T21:50:20Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Bringing=bluetooth speaker, tildagon x2, multifuel stove, insanity&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=Village:UK_Refuge&amp;diff=10070</id>
		<title>Village:UK Refuge</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=Village:UK_Refuge&amp;diff=10070"/>
		<updated>2025-06-02T21:46:23Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Has name=UK Refuge&lt;br /&gt;
|Has description=A village for those visiting from the UK, with social space and chill vibes.&lt;br /&gt;
|Related to village=Village:EMF&lt;br /&gt;
|Village is open to newcomers=Yes&lt;br /&gt;
|Provides session location=No&lt;br /&gt;
|Location=52.69204, 4.74995&lt;br /&gt;
|Has orga contact=tony.goacher@hotmail.co.uk&lt;br /&gt;
|On site orga contact=Email or +447789715991&lt;br /&gt;
|Village citizen count=9&lt;br /&gt;
|Village Needs power=Smaller Village (up to 2x 230V/Schuko)&lt;br /&gt;
|Village size needed=50&lt;br /&gt;
|Village hacktents num=0&lt;br /&gt;
|Village brings big stuff=No&lt;br /&gt;
|Village Special Vehicle=TrakTrike. About 2.5mx1.5m&lt;br /&gt;
|Village planning notes=A group of those visiting from the UK (primarily North West England) but anyone is welcome!&lt;br /&gt;
Social space (may?) include Manchester Hackspace&#039;s gazebo, a speaker, and villagers&#039; furniture.&lt;br /&gt;
}}&lt;br /&gt;
A group of those visiting from the UK (primarily North West England) but anyone is welcome!&lt;br /&gt;
Social space (may?) include Manchester Hackspace&#039;s gazebo, a speaker, and villagers&#039; furniture.&lt;br /&gt;
&lt;br /&gt;
Location not considered(?) yet.&lt;br /&gt;
&lt;br /&gt;
The awesome lists and tips below are borrowed from [[Village:TechInc]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
=for participants=&lt;br /&gt;
&lt;br /&gt;
===things that would be nice to have at our village:===&lt;br /&gt;
* things that provide shade (very important), such as tarps&lt;br /&gt;
* a speaker for chill beats&lt;br /&gt;
* some chairs&lt;br /&gt;
* all the flags!!!&lt;br /&gt;
* enough extension cords and stekkerblokken, preferably meant for outdoor use&lt;br /&gt;
* a few outdoor-proof lights, for practical use or for aesthetics and vibes.&lt;br /&gt;
&lt;br /&gt;
===pro tips for surviving hackercamps===&lt;br /&gt;
* earplugs for sleeping are a must&lt;br /&gt;
* shade is everything&lt;br /&gt;
* blinkenlights everywhere&lt;br /&gt;
* use glowsticks on tent wires to prevent accidents in the dark&lt;br /&gt;
* if a talk you want to attend is full or you&#039;re running late, you can watch them live at streaming.media.ccc.de.&lt;br /&gt;
&lt;br /&gt;
remember to check the foodcourt page for current info on guaranteed food-for-money sources at camp https://wiki.why2025.org/Team:Foodcourt&lt;br /&gt;
of course, there are many other ways to acquire food at camp, but they typically require a bit more elbow grease and good timing.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
TrakTike needs about 800W to charge.&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=Village:UK_Refuge&amp;diff=10005</id>
		<title>Village:UK Refuge</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=Village:UK_Refuge&amp;diff=10005"/>
		<updated>2025-06-01T13:27:39Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Village&lt;br /&gt;
|Has name=UK Refuge&lt;br /&gt;
|Has description=A village for those from the UK who aren&#039;t in any other villages.&lt;br /&gt;
|Related to village=Village:EMF&lt;br /&gt;
|Village is open to newcomers=Yes&lt;br /&gt;
|Provides session location=No&lt;br /&gt;
|Location=52.69204, 4.74995&lt;br /&gt;
|Has orga contact=tony.goacher@hotmail.co.uk&lt;br /&gt;
|On site orga contact=Email or +447789715991&lt;br /&gt;
|Village citizen count=9&lt;br /&gt;
|Village Needs power=Smaller Village (up to 2x 230V/Schuko)&lt;br /&gt;
|Village size needed=50&lt;br /&gt;
|Village hacktents num=0&lt;br /&gt;
|Village brings big stuff=No&lt;br /&gt;
|Village Special Vehicle=TrakTrike. About 2.5mx1.5m&lt;br /&gt;
|Village planning notes=A group of those from the UK who do not fit into any other villages. Primarily a mix of people from the NW of England but anyone is welcome.&lt;br /&gt;
}}&lt;br /&gt;
A group of those from the UK who do not fit into any other villages. Primarily a mix of people from the NW of England but anyone is welcome.&lt;br /&gt;
TrakTike needs about 800W to charge.&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10000</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=10000"/>
		<updated>2025-06-01T08:11:53Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfo&lt;br /&gt;
|Village=Village:UK Refuge&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
	<entry>
		<id>https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=9996</id>
		<title>User:Felixwebercouk</title>
		<link rel="alternate" type="text/html" href="https://wiki.why2025.org/index.php?title=User:Felixwebercouk&amp;diff=9996"/>
		<updated>2025-05-31T20:50:20Z</updated>

		<summary type="html">&lt;p&gt;Felixwebercouk: create user page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{UserInfo&lt;br /&gt;
|NickName={{PAGENAME}}&lt;br /&gt;
|Languages=EN&lt;br /&gt;
|HackerSpace=&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Felixwebercouk</name></author>
	</entry>
</feed>