<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.sha2017.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Phy</id>
		<title>SHA2017 Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.sha2017.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Phy"/>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/w/Special:Contributions/Phy"/>
		<updated>2026-04-19T07:18:33Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.3</generator>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=Projects:Badge/Emulator&amp;diff=10732</id>
		<title>Projects:Badge/Emulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=Projects:Badge/Emulator&amp;diff=10732"/>
				<updated>2017-08-06T10:22:23Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Badgemenu}}&lt;br /&gt;
==Badge Emulator==&lt;br /&gt;
You can now play with the badge software before you even receive your badge!&lt;br /&gt;
&lt;br /&gt;
==Limitations==&lt;br /&gt;
&lt;br /&gt;
Apparently key-presses etc can only be caught while actively waiting.&lt;br /&gt;
Might not be much of a limitation.&lt;br /&gt;
&lt;br /&gt;
==Keys==&lt;br /&gt;
&lt;br /&gt;
Arrow keys: UP, DOWN, LEFT, RIGHT&lt;br /&gt;
&lt;br /&gt;
PageUP: A&lt;br /&gt;
&lt;br /&gt;
PageDown: B&lt;br /&gt;
&lt;br /&gt;
Home: Select&lt;br /&gt;
&lt;br /&gt;
End: Start&lt;br /&gt;
&lt;br /&gt;
Delete: Flash&lt;br /&gt;
&lt;br /&gt;
Enter: Middle (unused)&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
===Debian-based GNU/Linux===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;sudo apt-get install libncurses5-dev flex bison gperf python-serial libffi-dev libsdl2-dev libmbedtls-dev&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Or equivalent installation of requirements on your distribution.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/unix&lt;br /&gt;
make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Arch-Linux===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/unix&lt;br /&gt;
git clone https://github.com/ARMmbed/mbedtls.git&lt;br /&gt;
cd mbedtls&lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
cd ..&lt;br /&gt;
make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===NixOS===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/unix&lt;br /&gt;
nix-shell --packages gcc ncurses5 flex bison2 gperf \&lt;br /&gt;
  python35Packages.pyserial libffi SDL2 mbedtls \&lt;br /&gt;
  --pure --command make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===macOS===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/lib&lt;br /&gt;
git clone https://github.com/ARMmbed/mbedtls.git&lt;br /&gt;
cd mbedtls&lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
cd ../../unix&lt;br /&gt;
make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''if you get an error that sdl2-config is missing (/usr/local/bin/sdl2-config: No such file or directory), you can install it using e.g. homebrew, like this:''&lt;br /&gt;
brew install SDL2&lt;br /&gt;
&lt;br /&gt;
Older macOS installs have some missing headers: https://github.com/SHA2017-badge/Firmware/issues/99&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;./micropython demo.py&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
[[File:SHA2017Badge emulator.jpg|thumb|SHA2017Badge emulator running Mandelbrod]]&lt;br /&gt;
You can also just start &amp;lt;code&amp;gt;./micropython&amp;lt;/code&amp;gt; and start using the [[Projects:Badge/MicroPython|MicroPython modules]].&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;import ugfx&lt;br /&gt;
&lt;br /&gt;
ugfx.init()&lt;br /&gt;
&lt;br /&gt;
ugfx.clear(ugfx.BLACK)&lt;br /&gt;
&lt;br /&gt;
ugfx.fill_circle(60, 60, 50, ugfx.WHITE);&lt;br /&gt;
ugfx.fill_circle(60, 60, 40, ugfx.BLACK);&lt;br /&gt;
ugfx.fill_circle(60, 60, 30, ugfx.WHITE);&lt;br /&gt;
ugfx.fill_circle(60, 60, 20, ugfx.BLACK);&lt;br /&gt;
ugfx.fill_circle(60, 60, 10, ugfx.WHITE);&lt;br /&gt;
&lt;br /&gt;
ugfx.thickline(1,1,100,100,ugfx.WHITE,10,5)&lt;br /&gt;
ugfx.box(30,30,50,50,ugfx.WHITE)&lt;br /&gt;
&lt;br /&gt;
ugfx.string(150,25,&amp;quot;STILL&amp;quot;,&amp;quot;Roboto_BlackItalic24&amp;quot;,ugfx.WHITE)&lt;br /&gt;
ugfx.string(130,50,&amp;quot;Hacking&amp;quot;,&amp;quot;PermanentMarker22&amp;quot;,ugfx.WHITE)&lt;br /&gt;
len = ugfx.get_string_width(&amp;quot;Hacking&amp;quot;,&amp;quot;PermanentMarker22&amp;quot;)&lt;br /&gt;
ugfx.line(130, 72, 144 + len, 72, ugfx.WHITE)&lt;br /&gt;
ugfx.line(140 + len, 52, 140 + len, 70, ugfx.WHITE)&lt;br /&gt;
ugfx.string(140,75,&amp;quot;Anyway&amp;quot;,&amp;quot;Roboto_BlackItalic24&amp;quot;,ugfx.WHITE)&lt;br /&gt;
&lt;br /&gt;
ugfx.flush()&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use [[Projects:Badge/woezel|woezel]] to install software from the [[Projects:Badge/Hatchery|Hatchery]].&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;import woezel&lt;br /&gt;
woezel.install('game_of_life')&lt;br /&gt;
import game_of_life&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Badge emulator macOS.png|800px|frameless|center|woezel.install('game_of_life')]]&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=Projects:Badge/Emulator&amp;diff=10731</id>
		<title>Projects:Badge/Emulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=Projects:Badge/Emulator&amp;diff=10731"/>
				<updated>2017-08-06T10:18:27Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Badgemenu}}&lt;br /&gt;
==Badge Emulator==&lt;br /&gt;
You can now play with the badge software before you even receive your badge!&lt;br /&gt;
&lt;br /&gt;
==Limitations==&lt;br /&gt;
&lt;br /&gt;
Apparently key-presses etc can only be caught while actively waiting.&lt;br /&gt;
Might not be much of a limitation.&lt;br /&gt;
&lt;br /&gt;
==Keys==&lt;br /&gt;
&lt;br /&gt;
Arrow keys: UP, DOWN, LEFT, RIGHT&lt;br /&gt;
&lt;br /&gt;
PageUP: A&lt;br /&gt;
&lt;br /&gt;
PageDown: B&lt;br /&gt;
&lt;br /&gt;
Home: Select&lt;br /&gt;
&lt;br /&gt;
End: Start&lt;br /&gt;
&lt;br /&gt;
Delete: Flash&lt;br /&gt;
&lt;br /&gt;
Enter: Middle (unused)&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;sudo apt-get install libncurses5-dev flex bison gperf python-serial libffi-dev libsdl2-dev libmbedtls-dev&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Or equivalent installation of requirements on your distribution.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/unix&lt;br /&gt;
make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Arch-Linux===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/unix&lt;br /&gt;
git clone https://github.com/ARMmbed/mbedtls.git&lt;br /&gt;
cd mbedtls&lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
cd ..&lt;br /&gt;
make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===NixOS===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/unix&lt;br /&gt;
nix-shell --packages gcc ncurses5 flex bison2 gperf \&lt;br /&gt;
  python35Packages.pyserial libffi SDL2 mbedtls \&lt;br /&gt;
  --pure --command make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===macOS===&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;git clone --recursive https://github.com/SHA2017-badge/Firmware.git&lt;br /&gt;
cd Firmware/micropython/lib&lt;br /&gt;
git clone https://github.com/ARMmbed/mbedtls.git&lt;br /&gt;
cd mbedtls&lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
cd ../../unix&lt;br /&gt;
make&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''if you get an error that sdl2-config is missing (/usr/local/bin/sdl2-config: No such file or directory), you can install it using e.g. homebrew, like this:''&lt;br /&gt;
brew install SDL2&lt;br /&gt;
&lt;br /&gt;
Older macOS installs have some missing headers: https://github.com/SHA2017-badge/Firmware/issues/99&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;./micropython demo.py&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
[[File:SHA2017Badge emulator.jpg|thumb|SHA2017Badge emulator running Mandelbrod]]&lt;br /&gt;
You can also just start &amp;lt;code&amp;gt;./micropython&amp;lt;/code&amp;gt; and start using the [[Projects:Badge/MicroPython|MicroPython modules]].&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;import ugfx&lt;br /&gt;
&lt;br /&gt;
ugfx.init()&lt;br /&gt;
&lt;br /&gt;
ugfx.clear(ugfx.BLACK)&lt;br /&gt;
&lt;br /&gt;
ugfx.fill_circle(60, 60, 50, ugfx.WHITE);&lt;br /&gt;
ugfx.fill_circle(60, 60, 40, ugfx.BLACK);&lt;br /&gt;
ugfx.fill_circle(60, 60, 30, ugfx.WHITE);&lt;br /&gt;
ugfx.fill_circle(60, 60, 20, ugfx.BLACK);&lt;br /&gt;
ugfx.fill_circle(60, 60, 10, ugfx.WHITE);&lt;br /&gt;
&lt;br /&gt;
ugfx.thickline(1,1,100,100,ugfx.WHITE,10,5)&lt;br /&gt;
ugfx.box(30,30,50,50,ugfx.WHITE)&lt;br /&gt;
&lt;br /&gt;
ugfx.string(150,25,&amp;quot;STILL&amp;quot;,&amp;quot;Roboto_BlackItalic24&amp;quot;,ugfx.WHITE)&lt;br /&gt;
ugfx.string(130,50,&amp;quot;Hacking&amp;quot;,&amp;quot;PermanentMarker22&amp;quot;,ugfx.WHITE)&lt;br /&gt;
len = ugfx.get_string_width(&amp;quot;Hacking&amp;quot;,&amp;quot;PermanentMarker22&amp;quot;)&lt;br /&gt;
ugfx.line(130, 72, 144 + len, 72, ugfx.WHITE)&lt;br /&gt;
ugfx.line(140 + len, 52, 140 + len, 70, ugfx.WHITE)&lt;br /&gt;
ugfx.string(140,75,&amp;quot;Anyway&amp;quot;,&amp;quot;Roboto_BlackItalic24&amp;quot;,ugfx.WHITE)&lt;br /&gt;
&lt;br /&gt;
ugfx.flush()&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also use [[Projects:Badge/woezel|woezel]] to install software from the [[Projects:Badge/Hatchery|Hatchery]].&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;import woezel&lt;br /&gt;
woezel.install('game_of_life')&lt;br /&gt;
import game_of_life&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Badge emulator macOS.png|800px|frameless|center|woezel.install('game_of_life')]]&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=CarPooling&amp;diff=9510</id>
		<title>CarPooling</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=CarPooling&amp;diff=9510"/>
				<updated>2017-08-01T10:24:01Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: Transpose &amp;quot;Driver Announce&amp;quot;-table&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I was wondering if there was any Carpooling page for SHA2017 and someone told me to create it on the Wiki, so let's go :)&lt;br /&gt;
&lt;br /&gt;
If you want to go to SHA2017 by car and have extra seats for other nice hackers from your Area ! You can offer your spare seats !&lt;br /&gt;
&lt;br /&gt;
If this page is a mess we'll think about how to organize it geographically ;)&lt;br /&gt;
&lt;br /&gt;
== Announce Creation == &lt;br /&gt;
=== Driver Announce ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! City of departure !! Free seats !! Departure date !! Trunk size !! Contact !! Additional information&lt;br /&gt;
|-&lt;br /&gt;
| You || schiphol airport || 1 || 03/08 10pm || Small || leothemagnificent@gmail.com&lt;br /&gt;
|-&lt;br /&gt;
| lubro || Munich || up to 3 || 02/08 / 03/08 || Small(VW Polo) || lukas.brodschelm@mnet-online.de || passing Nuernberg, Frankfurt and many other Citys&lt;br /&gt;
|-&lt;br /&gt;
| phy || Marburg (Hesse, DE) || up to 2 || morning of 02/08 || Small || &amp;lt;small&amp;gt;ｓｈａ２０１７ ［（ａ）］ ０ｘ２１ ［．］ ｂｉｚ&amp;lt;/small&amp;gt; || over Siegen and Ruhr district&lt;br /&gt;
|-&lt;br /&gt;
| ottr || Frankfurt (Main) || up to 3 || 02/08 || medium || otter-chief@gmx.de ||&lt;br /&gt;
|-&lt;br /&gt;
| raboof || Deventer || 3 || morning of 3/8 || small || arnouten@bzzt.net ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
Looking for a ride Berlin to SHA ((3./4.) and back (7.)- pgy (contact [weird a] peggy-sylopp [normal punctuation mark] net)&lt;br /&gt;
&lt;br /&gt;
Looking for a rides Hamburg-&amp;gt;SHA and SHA-&amp;gt;Copenhagen! - krav (kristoffer [weird a] microdisko [normal punctuation mark] no)&lt;br /&gt;
&lt;br /&gt;
I'm looking for someone to move my small tent and sleeping bag from London to camp. - Glen &amp;lt;br&amp;gt;&lt;br /&gt;
I'm looking for a ride from Berlin to camp by the 29th - Glen&lt;br /&gt;
&lt;br /&gt;
I am in Amsterdam and am looking for a ride to the camping location. Not sure how to leave my contact info? - Anina &amp;lt;br&amp;gt;&lt;br /&gt;
Also from Amsterdam. Would love to tag along and will of course chip in for gas. Contact me via sha2017 [at] thd.ninja - THD&lt;br /&gt;
&lt;br /&gt;
I am looking for a ride from the Luzern/Zurich Area. (hammeshacks@gmail.com)&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=8257</id>
		<title>User:Phy</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=8257"/>
				<updated>2017-07-25T17:10:28Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{User&lt;br /&gt;
|Name=phy&lt;br /&gt;
|Bringing=┐(´д｀)┌&lt;br /&gt;
|Arrival=2017/08/02&lt;br /&gt;
|Departure=2017/08/09&lt;br /&gt;
}}&lt;br /&gt;
Also known as ''phi'', but the flag for this nick was ugly. However, ''phiiiiii'' (yeah, that's six &amp;quot;'''i'''&amp;quot;s) was nice, but somewhat unusable.&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=CarPooling&amp;diff=8256</id>
		<title>CarPooling</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=CarPooling&amp;diff=8256"/>
				<updated>2017-07-25T17:10:09Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I was wondering if there was any Carpooling page for SHA2017 and someone told me to create it on the Wiki, so let's go :)&lt;br /&gt;
&lt;br /&gt;
If you want to go to SHA2017 by car and have extra seats for other nice hackers from your Area ! You can offer your spare seats !&lt;br /&gt;
&lt;br /&gt;
If this page is a mess we'll think about how to organize it geographically ;)&lt;br /&gt;
&lt;br /&gt;
== Announce Creation == &lt;br /&gt;
=== Driver Announce ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Info !! You || lubro || phy &lt;br /&gt;
|-&lt;br /&gt;
| City of departure || schiphol airport || Munich || Marburg (Hesse, DE)&lt;br /&gt;
|-&lt;br /&gt;
| Free Seats || 1|| up to 3 || up to 2&lt;br /&gt;
|-&lt;br /&gt;
| Departure Date || 03/08 10pm || 02/08 / 03/08 || morning of 02/08&lt;br /&gt;
|-&lt;br /&gt;
| Trunk size || Small || Small(VW Polo) || Small&lt;br /&gt;
|-&lt;br /&gt;
| Contact || leothemagnificent@gmail.com || lukas.brodschelm@mnet-online.de || &amp;lt;small&amp;gt;ｓｈａ２０１７ ［（ａ）］ ０ｘ２１ ［．］ ｂｉｚ&amp;lt;/small&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Additional Information || || passing Nuernberg, Frankfurt and many other Citys || over Siegen and Ruhr district&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
Looking for a rides Hamburg-&amp;gt;SHA and SHA-&amp;gt;Copenhagen! - krav (kristoffer [weird a] microdisko [normal punctuation mark] no)&lt;br /&gt;
&lt;br /&gt;
I'm looking for someone to move my small tent and sleeping bag from London to camp. - Glen &amp;lt;br&amp;gt;&lt;br /&gt;
I'm looking for a ride from Berlin to camp by the 29th - Glen&lt;br /&gt;
&lt;br /&gt;
I am in Amsterdam and am looking for a ride to the camping location. Not sure how to leave my contact info? - Anina &amp;lt;br&amp;gt;&lt;br /&gt;
Also from Amsterdam. Would love to tag along and will of course chip in for gas. Contact me via sha2017 [at] thd.ninja - THD&lt;br /&gt;
&lt;br /&gt;
I am looking for a ride from the Luzern/Zurich Area. (hammeshacks@gmail.com)&lt;br /&gt;
&lt;br /&gt;
I am looking for some space in a car to transport these items (tent, air mattress, extension coord for power and network) from Berlin to Camp (ijon@c-base.org)&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=8250</id>
		<title>User:Phy</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=8250"/>
				<updated>2017-07-25T16:39:43Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{User&lt;br /&gt;
|Name=phy&lt;br /&gt;
|Bringing=┐(´д｀)┌&lt;br /&gt;
|Arrival=2017/08/02&lt;br /&gt;
|Departure=2017/08/09&lt;br /&gt;
|EMail=ｓｈａ２０１７ ［（ａ）］ ０ｘ２１ ［．］ ｂｉｚ&lt;br /&gt;
}}&lt;br /&gt;
Also known as ''phi'', but the flag for this nick was ugly. However, ''phiiiiii'' (yeah, that's six &amp;quot;'''i'''&amp;quot;s) was nice, but somewhat unusable.&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=CarPooling&amp;diff=8248</id>
		<title>CarPooling</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=CarPooling&amp;diff=8248"/>
				<updated>2017-07-25T16:38:11Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I was wondering if there was any Carpooling page for SHA2017 and someone told me to create it on the Wiki, so let's go :)&lt;br /&gt;
&lt;br /&gt;
If you want to go to SHA2017 by car and have extra seats for other nice hackers from your Area ! You can offer your spare seats !&lt;br /&gt;
&lt;br /&gt;
If this page is a mess we'll think about how to organize it geographically ;)&lt;br /&gt;
&lt;br /&gt;
== Announce Creation == &lt;br /&gt;
=== Driver Announce ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Info !! You || lubro ||&lt;br /&gt;
|-&lt;br /&gt;
| City of departure || schiphol airport || Munich || &lt;br /&gt;
|-&lt;br /&gt;
| Free Seats || 1|| up to 3 ||&lt;br /&gt;
|-&lt;br /&gt;
| Departure Date || 03/08 10pm || 02/08 / 03/08 ||&lt;br /&gt;
|-&lt;br /&gt;
| Trunk size || Small || Small(VW Polo) ||&lt;br /&gt;
|-&lt;br /&gt;
| Contact || leothemagnificent@gmail.com || lukas.brodschelm@mnet-online.de ||&lt;br /&gt;
|-&lt;br /&gt;
| Additional Information || || passing Nuernberg, Frankfurt and many other Citys ||&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We're driving from Marburg (Hesse, Germany) -&amp;gt; SHA at 02.08.17 and have some space for up to two people (or dubious luggage). - phy &amp;lt;small&amp;gt;(ｓｈａ２０１７ ［（ａ）］ ０ｘ２１ ［．］ ｂｉｚ)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
Looking for a rides Hamburg-&amp;gt;SHA and SHA-&amp;gt;Copenhagen! - krav (kristoffer [weird a] microdisko [normal punctuation mark] no)&lt;br /&gt;
&lt;br /&gt;
I'm looking for someone to move my small tent and sleeping bag from London to camp. - Glen &amp;lt;br&amp;gt;&lt;br /&gt;
I'm looking for a ride from Berlin to camp by the 29th - Glen&lt;br /&gt;
&lt;br /&gt;
I am in Amsterdam and am looking for a ride to the camping location. Not sure how to leave my contact info? - Anina &amp;lt;br&amp;gt;&lt;br /&gt;
Also from Amsterdam. Would love to tag along and will of course chip in for gas. Contact me via sha2017 [at] thd.ninja - THD&lt;br /&gt;
&lt;br /&gt;
I am looking for a ride from the Luzern/Zurich Area. (hammeshacks@gmail.com)&lt;br /&gt;
&lt;br /&gt;
I am looking for some space in a car to transport these items (tent, air mattress, extension coord for power and network) from Berlin to Camp (ijon@c-base.org)&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=2800</id>
		<title>User:Phy</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=2800"/>
				<updated>2017-05-21T10:54:46Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{User&lt;br /&gt;
|Name=phy&lt;br /&gt;
|Bringing=┐(´д｀)┌&lt;br /&gt;
|Arrival=2017/08/02&lt;br /&gt;
|Departure=2017/08/09&lt;br /&gt;
}}&lt;br /&gt;
Also known as ''phi'', but the flag for this nick was ugly. However, ''phiiiiii'' (yeah, that's six &amp;quot;'''i'''&amp;quot;s) was nice, but somewhat unusable.&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	<entry>
		<id>https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=1805</id>
		<title>User:Phy</title>
		<link rel="alternate" type="text/html" href="https://wiki.sha2017.org/index.php?title=User:Phy&amp;diff=1805"/>
				<updated>2017-04-09T14:08:22Z</updated>
		
		<summary type="html">&lt;p&gt;Phy: Initial vomit&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{User&lt;br /&gt;
|Name=phy&lt;br /&gt;
|Bringing=┐(´д｀)┌&lt;br /&gt;
}}&lt;br /&gt;
Also known as ''phi'', but the flag for this nick was ugly. However, ''phiiiiii'' (yeah, that's six &amp;quot;'''i'''&amp;quot;s) was nice, but somewhat unusable.&lt;/div&gt;</summary>
		<author><name>Phy</name></author>	</entry>

	</feed>