<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.comakingspace.de/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ada</id>
	<title>CoMakingSpace Wiki - User Contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.comakingspace.de/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ada"/>
	<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/Special:Contributions/Ada"/>
	<updated>2026-04-17T09:02:59Z</updated>
	<subtitle>User Contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14415</id>
		<title>Project:ESC/POS Label Printing</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14415"/>
		<updated>2023-09-15T06:47:39Z</updated>

		<summary type="html">&lt;p&gt;Ada: Some printer command descriptions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ProjectInfoBox&lt;br /&gt;
|project title=ESC/POS Label Printing&lt;br /&gt;
|image=&lt;br /&gt;
|status=ongoing&lt;br /&gt;
|date=&lt;br /&gt;
|initiator=[[User:Ada|Ada]]&lt;br /&gt;
|team=&lt;br /&gt;
|materials=&lt;br /&gt;
|tools=&lt;br /&gt;
|software=&lt;br /&gt;
|cost=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
I am doing inventory and want to print labels. I found this thermoprinter in a pile of cables that I want to use for printing inventory labels.&lt;br /&gt;
&lt;br /&gt;
==Hardware==&lt;br /&gt;
My printer talks TTL that you can plug into the UART of a Raspberry Pi.&lt;br /&gt;
&lt;br /&gt;
I connected my printer&#039;s RX to a Raspberry Pi&#039;s TX and both printer and Pi to some power.&lt;br /&gt;
&lt;br /&gt;
There is a large amount of 57mm thermopaper available. You can even buy adhesive thermopaper which is ideal for this project.&lt;br /&gt;
&lt;br /&gt;
==Software==&lt;br /&gt;
After plugging in the Printer, you can communicate with it over a serial port. In my case (a Fedora Server 38) this is &amp;lt;code&amp;gt;/dev/ttyS0&amp;lt;/code&amp;gt;. You need to set the baud rate correctly for the printer to be able to understand your commands. My printer is at 19200 baud and assuming that your user is in the &amp;lt;code&amp;gt;dialout&amp;lt;/code&amp;gt; group this can then be done with&lt;br /&gt;
 stty -F /dev/ttyS0 19200&lt;br /&gt;
This printer speaks ESC/POS. ESC/POS is a printer description language extending ESC/P for point of sale (POS) devices. The printer&#039;s spec sheet comes with an explanation of the commands it understands, but it is poorly translated from Chinese, rendering some sections unintelligible. A description of the standard is available from [https://reference.epson-biz.com/modules/ref_escpos_dm_d_en/index.php Epson] which can be helpful for understanding some less obvious commands.&lt;br /&gt;
&lt;br /&gt;
=== Hello world ===&lt;br /&gt;
Principally, the printer accepts CP437 characters so you can generally just start printing with regular ASCII by piping strings into the serial port:&lt;br /&gt;
 printf &amp;quot;Hello world!\n&amp;quot; | tee /dev/ttyS0&lt;br /&gt;
This makes the printer print out &amp;lt;code&amp;gt;Hello world!&amp;lt;/code&amp;gt; and advance the paper by one line. If however you want to do something more fancy you will need to use some extra commands.&lt;br /&gt;
&lt;br /&gt;
Most commands are prefixed with the ASCII Escape character 0x1b, &amp;lt;code&amp;gt;\x1b&amp;lt;/code&amp;gt; in printf, and &#039;&#039;ESC&#039;&#039; for the purpose of this document.&lt;br /&gt;
&lt;br /&gt;
=== Formatting ===&lt;br /&gt;
Most commands are documented as something like ESC 3 n. This means an Escape character, the character 3 and an argument. ESC 3 sets the line-height in pixels so the sequence ESC &amp;quot;3&amp;quot; 24 will set it to 24 pixels. It just so happens that my printer&#039;s characters are 24 pixels high. If I now want to set the line-height to 24 I can give this to the printer:&lt;br /&gt;
 printf &amp;quot;\x1b3\x18&amp;quot; | tee /dev/ttyS0&lt;br /&gt;
Note that I used &amp;lt;code&amp;gt;\x18&amp;lt;/code&amp;gt; to get the character with decimal value 24 (hex 0x18). All lines printed after this will have line-height 24. To show a better example of this, we can print a couple of block characters (0xDB in CP437) and spaces over some lines:&lt;br /&gt;
 printf &amp;quot;\x1b3\x18\xdb \xdb \xdb \xdb \xdb\n \xdb \xdb \xdb \xdb\n&amp;quot; | tee /dev/ttyS0&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14414</id>
		<title>Project:ESC/POS Label Printing</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14414"/>
		<updated>2023-09-15T06:12:11Z</updated>

		<summary type="html">&lt;p&gt;Ada: Link user&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ProjectInfoBox&lt;br /&gt;
|project title=ESC/POS Label Printing&lt;br /&gt;
|image=&lt;br /&gt;
|status=ongoing&lt;br /&gt;
|date=&lt;br /&gt;
|initiator=[[User:Ada|Ada]]&lt;br /&gt;
|team=&lt;br /&gt;
|materials=&lt;br /&gt;
|tools=&lt;br /&gt;
|software=&lt;br /&gt;
|cost=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
I am doing inventory and want to print labels. I found this thermoprinter in a pile of cables that I want to use for printing inventory labels.&lt;br /&gt;
&lt;br /&gt;
==Hardware==&lt;br /&gt;
My printer talks TTL that you can plug into the UART of a Raspberry Pi.&lt;br /&gt;
&lt;br /&gt;
I connected my printer&#039;s RX to a Raspberry Pi&#039;s TX and both printer and Pi to some power.&lt;br /&gt;
&lt;br /&gt;
There is a large amount of 57mm thermopaper available. You can even buy adhesive thermopaper which is ideal for this project.&lt;br /&gt;
&lt;br /&gt;
==Software==&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14413</id>
		<title>Project:ESC/POS Label Printing</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14413"/>
		<updated>2023-09-15T06:11:18Z</updated>

		<summary type="html">&lt;p&gt;Ada: Remember that this is mediawiki and not typst&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ProjectInfoBox&lt;br /&gt;
|project title=ESC/POS Label Printing&lt;br /&gt;
|image=&lt;br /&gt;
|status=ongoing&lt;br /&gt;
|date=&lt;br /&gt;
|initiator=Ada&lt;br /&gt;
|team=&lt;br /&gt;
|materials=&lt;br /&gt;
|tools=&lt;br /&gt;
|software=&lt;br /&gt;
|cost=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
I am doing inventory and want to print labels. I found this thermoprinter in a pile of cables that I want to use for printing inventory labels.&lt;br /&gt;
&lt;br /&gt;
== Hardware ==&lt;br /&gt;
My printer talks TTL that you can plug into the UART of a Raspberry Pi.&lt;br /&gt;
&lt;br /&gt;
I connected my printer&#039;s RX to a Raspberry Pi&#039;s TX and both printer and Pi to some power.&lt;br /&gt;
&lt;br /&gt;
There is a large amount of 57mm thermopaper available. You can even buy adhesive thermopaper which is ideal for this project.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14412</id>
		<title>Project:ESC/POS Label Printing</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=Project:ESC/POS_Label_Printing&amp;diff=14412"/>
		<updated>2023-09-15T06:08:49Z</updated>

		<summary type="html">&lt;p&gt;Ada: Create page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ProjectInfoBox&lt;br /&gt;
|project title=ESC/POS Label Printing&lt;br /&gt;
|image=&lt;br /&gt;
|status=ongoing&lt;br /&gt;
|date=&lt;br /&gt;
|initiator=Ada&lt;br /&gt;
|team=&lt;br /&gt;
|materials=&lt;br /&gt;
|tools=&lt;br /&gt;
|software=&lt;br /&gt;
|cost=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
I am doing inventory and want to print labels. I found this thermoprinter in a pile of cables that I want to use for printing inventory labels.&lt;br /&gt;
&lt;br /&gt;
= Hardware&lt;br /&gt;
&lt;br /&gt;
= Software&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14411</id>
		<title>User:Ada</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14411"/>
		<updated>2023-09-15T06:02:45Z</updated>

		<summary type="html">&lt;p&gt;Ada: Reshape projects&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfoBox&lt;br /&gt;
|real_name=Ada&lt;br /&gt;
|pronouns=they/them&lt;br /&gt;
|github=lysogeny&lt;br /&gt;
|instagram=jooa.xyz&lt;br /&gt;
|expertise=[[OpenSCAD]], 3D printing, Keyboards, Photographic Processes, Linux, Scientific Data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Mainly a software hacker or something, &lt;br /&gt;
&lt;br /&gt;
Some people call me Jooa. Please call me Ada.&lt;br /&gt;
&lt;br /&gt;
Contact: https://wiki.comakingspace.de/Special:EmailUser/Ada&lt;br /&gt;
&lt;br /&gt;
= Projects =&lt;br /&gt;
&lt;br /&gt;
* Tetris on a WS2812 matrix&lt;br /&gt;
* ESC/POS Label Printing&lt;br /&gt;
&lt;br /&gt;
== In progress ==&lt;br /&gt;
*[https://github.com/lysogeny/BlockGame.jl Julia Tetris implementation]&lt;br /&gt;
*[https://github.com/lysogeny/PixelFlut.jl Mildly defective Pixel flut software in julia] &lt;br /&gt;
*Fixing a suicidal ELAC AM150&lt;br /&gt;
*Other things I forgot about&lt;br /&gt;
&lt;br /&gt;
== Currently pondering ==&lt;br /&gt;
*How to steppers?&lt;br /&gt;
&lt;br /&gt;
== Complete ==&lt;br /&gt;
&lt;br /&gt;
Lol as if&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14246</id>
		<title>User:Ada</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14246"/>
		<updated>2023-08-29T15:18:31Z</updated>

		<summary type="html">&lt;p&gt;Ada: superfluous linebreak&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfoBox&lt;br /&gt;
|real_name=Ada&lt;br /&gt;
|pronouns=they/them&lt;br /&gt;
|github=lysogeny&lt;br /&gt;
|instagram=jooa.xyz&lt;br /&gt;
|expertise=[[OpenSCAD]], 3D printing, Keyboards, Photographic Processes, Linux, Scientific Data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Mainly a software hacker or something, &lt;br /&gt;
&lt;br /&gt;
Some people call me Jooa. Please call me Ada.&lt;br /&gt;
&lt;br /&gt;
Contact: https://wiki.comakingspace.de/Special:EmailUser/Ada&lt;br /&gt;
&lt;br /&gt;
= Projects =&lt;br /&gt;
&lt;br /&gt;
== Currently pondering ==&lt;br /&gt;
&lt;br /&gt;
*How to steppers?&lt;br /&gt;
*Tetris on a WS2812 matrix?&lt;br /&gt;
&lt;br /&gt;
== In progress ==&lt;br /&gt;
&lt;br /&gt;
*[https://github.com/lysogeny/BlockGame.jl Julia Tetris implementation]&lt;br /&gt;
*[https://github.com/lysogeny/PixelFlut.jl Mildly defective Pixel flut software in julia] &lt;br /&gt;
*Fixing a suicidal ELAC AM150&lt;br /&gt;
*Other things I forgot about&lt;br /&gt;
&lt;br /&gt;
== Complete ==&lt;br /&gt;
&lt;br /&gt;
Lol as if&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14243</id>
		<title>User:Ada</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14243"/>
		<updated>2023-08-28T07:44:50Z</updated>

		<summary type="html">&lt;p&gt;Ada: Some kind of page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{UserInfoBox&lt;br /&gt;
|real_name=Ada&lt;br /&gt;
|pronouns=they/them&lt;br /&gt;
|github=lysogeny&lt;br /&gt;
|instagram=jooa.xyz&lt;br /&gt;
|expertise=&amp;lt;br&amp;gt;[[OpenSCAD]], 3D printing, Keyboards, Photographic Processes, Linux, Scientific Data&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Mainly a software hacker or something, &lt;br /&gt;
&lt;br /&gt;
Some people call me Jooa. Please call me Ada.&lt;br /&gt;
&lt;br /&gt;
Contact: https://wiki.comakingspace.de/Special:EmailUser/Ada&lt;br /&gt;
&lt;br /&gt;
= Projects =&lt;br /&gt;
&lt;br /&gt;
== Currently pondering ==&lt;br /&gt;
&lt;br /&gt;
*How to steppers?&lt;br /&gt;
*Tetris on a WS2812 matrix?&lt;br /&gt;
&lt;br /&gt;
== In progress ==&lt;br /&gt;
&lt;br /&gt;
*[https://github.com/lysogeny/BlockGame.jl Julia Tetris implementation]&lt;br /&gt;
*[https://github.com/lysogeny/PixelFlut.jl Mildly defective Pixel flut software in julia] &lt;br /&gt;
*Fixing a suicidal ELAC AM150&lt;br /&gt;
*Other things I forgot about&lt;br /&gt;
&lt;br /&gt;
== Complete ==&lt;br /&gt;
&lt;br /&gt;
Lol as if&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=Template:UserInfoBox&amp;diff=14242</id>
		<title>Template:UserInfoBox</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=Template:UserInfoBox&amp;diff=14242"/>
		<updated>2023-08-28T07:35:28Z</updated>

		<summary type="html">&lt;p&gt;Ada: Introduce a pronouns field&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{UserInfoBox&lt;br /&gt;
|real_name=Maker&lt;br /&gt;
|pronouns=any/any&lt;br /&gt;
|image=&lt;br /&gt;
|expertise=&lt;br /&gt;
|interests=[[Projects|everything]]&lt;br /&gt;
|projects=&lt;br /&gt;
|email=&lt;br /&gt;
|website=[https://www.comakingspace.org www.comakingspace.org]&lt;br /&gt;
|instagram=comakingspace&lt;br /&gt;
|twitter=comakingspace&lt;br /&gt;
|github=comakingspace&lt;br /&gt;
|printables=&lt;br /&gt;
|thingiverse=&lt;br /&gt;
|telegram=[[Telegram Group]]&lt;br /&gt;
}}&lt;br /&gt;
The idea of this [[InfoBoxes|InfoBox]] is to display user information in an organized way. It may remind you of the printouts on our [[Members Wall]] - if not, you should probably head over there and print one for yourself ;-)&lt;br /&gt;
&lt;br /&gt;
Feel free to add some information about yourself and just leave out any entry you don&#039;t want to show.&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
To use this template, simply copy this code into your page, add the values, or delete lines you don&#039;t want to fill out.&lt;br /&gt;
&lt;br /&gt;
Some lines are &amp;quot;smart&amp;quot;, i.e. you only have to enter your Twitter username and a link is created automatically. As always, make good use of the &amp;quot;Show preview&amp;quot; function to make sure it works as you expected.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{UserInfoBox&lt;br /&gt;
|real_name=&lt;br /&gt;
|pronouns=&lt;br /&gt;
|image=&lt;br /&gt;
|expertise=&lt;br /&gt;
|interests=&lt;br /&gt;
|projects=&lt;br /&gt;
|email=&lt;br /&gt;
|website=&lt;br /&gt;
|instagram=&lt;br /&gt;
|twitter=&lt;br /&gt;
|github=&lt;br /&gt;
|printables=&lt;br /&gt;
|thingiverse=&lt;br /&gt;
|telegram=&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;float:right; margin-left: 10px; border-style: solid; border-width: 5px; border-color: #00773D&amp;quot;&lt;br /&gt;
!colspan=&amp;quot;2&amp;quot;|&amp;lt;small style=&amp;quot;float:right&amp;quot;&amp;gt;[[Template:UserInfoBox|UserInfoBox]]&amp;lt;/small&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;&#039;&#039;&#039;Quick Info&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{image|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
!colspan=&amp;quot;2&amp;quot;{{!}} [[File:{{{image}}}|frameless|200px]]&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{real_name|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Name:&lt;br /&gt;
{{!}} {{{real_name}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{pronouns|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Pronouns:&lt;br /&gt;
{{!}} {{{pronouns}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{expertise|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Expertise:&lt;br /&gt;
{{!}} {{{expertise}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{interests|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Interests:&lt;br /&gt;
{{!}} {{{interests}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{projects|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Project(s):&lt;br /&gt;
{{!}} {{{projects}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{email|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} eMail:&lt;br /&gt;
{{!}} {{{email}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{website|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Website:&lt;br /&gt;
{{!}} {{{website}}}&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{instagram|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Instagram:&lt;br /&gt;
{{!}} [https://www.instagram.com/{{{instagram}}} {{{instagram}}}]&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{twitter|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Twitter:&lt;br /&gt;
{{!}} [https://twitter.com/{{{twitter}}} {{{twitter}}}]&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{github|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} GitHub:&lt;br /&gt;
{{!}} [https://github.com/{{{github}}}/ {{{github}}}]&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{printables|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Printables:&lt;br /&gt;
{{!}} [https://www.printables.com/@{{{printables}}}/ {{{printables}}}]&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{thingiverse|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Thingiverse:&lt;br /&gt;
{{!}} [https://www.thingiverse.com/{{{thingiverse}}}/ {{{thingiverse}}}]&lt;br /&gt;
|}}&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{telegram|}}}|&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Telegram:&lt;br /&gt;
{{!}} {{{telegram}}}&lt;br /&gt;
|}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Template Parameters ==&lt;br /&gt;
&amp;lt;templatedata&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
	&amp;quot;params&amp;quot;: {&lt;br /&gt;
		&amp;quot;image&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Your image&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Feel free to add an image of yourself so that others can recognize you more easily&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;wiki-file-name&amp;quot;,&lt;br /&gt;
			&amp;quot;suggested&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;real_name&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Name&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;The name you would like others to use when approaching you&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;Jane&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
			&amp;quot;required&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
        &amp;quot;pronouns&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Pronouns&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;The pronouns you would like others to use when approaching you&amp;quot;,&lt;br /&gt;
			&amp;quot;example&amp;quot;: &amp;quot;they/them&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
			&amp;quot;suggested&amp;quot;: true&lt;br /&gt;
        },&lt;br /&gt;
		&amp;quot;expertise&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Your expertise&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Is there anything you are particularly good at? Just name it!&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
			&amp;quot;suggested&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;interests&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Your interests&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Is there anything you are interested in / want to learn? Just name it!&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;,&lt;br /&gt;
			&amp;quot;suggested&amp;quot;: true&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;projects&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Your Projects&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;Here you can link any project you have done. Whether it was at the CoMakingSpace or somewhere else, let us know!&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;email&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;E-Mail&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your e-mail adress to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;website&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Website&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your website to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;instagram&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Instagram&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your instagram handle to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;twitter&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Twitter&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your twitter handle to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;github&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;GitHub&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your GitHub name to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
        &amp;quot;printables&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Printables&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your Printables nick to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;thingiverse&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Thingiverse&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your thingiverse nick to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		},&lt;br /&gt;
		&amp;quot;telegram&amp;quot;: {&lt;br /&gt;
			&amp;quot;label&amp;quot;: &amp;quot;Telegram&amp;quot;,&lt;br /&gt;
			&amp;quot;description&amp;quot;: &amp;quot;If you like, you can indicate your telegram handle to others here.&amp;quot;,&lt;br /&gt;
			&amp;quot;type&amp;quot;: &amp;quot;string&amp;quot;&lt;br /&gt;
		}&lt;br /&gt;
	},&lt;br /&gt;
	&amp;quot;description&amp;quot;: &amp;quot;Adds an InfoBox to display user information in an organized way. It may remind you of the printouts on our Members Wall - if not, you should probably head over there and print one for yourself ;-)&amp;quot;,&lt;br /&gt;
	&amp;quot;paramOrder&amp;quot;: [&lt;br /&gt;
		&amp;quot;real_name&amp;quot;,&lt;br /&gt;
        &amp;quot;pronouns&amp;quot;,&lt;br /&gt;
		&amp;quot;image&amp;quot;,&lt;br /&gt;
		&amp;quot;expertise&amp;quot;,&lt;br /&gt;
		&amp;quot;interests&amp;quot;,&lt;br /&gt;
		&amp;quot;projects&amp;quot;,&lt;br /&gt;
		&amp;quot;email&amp;quot;,&lt;br /&gt;
		&amp;quot;website&amp;quot;,&lt;br /&gt;
		&amp;quot;instagram&amp;quot;,&lt;br /&gt;
		&amp;quot;twitter&amp;quot;,&lt;br /&gt;
		&amp;quot;github&amp;quot;,&lt;br /&gt;
		&amp;quot;printables&amp;quot;,&lt;br /&gt;
		&amp;quot;thingiverse&amp;quot;,&lt;br /&gt;
		&amp;quot;telegram&amp;quot;&lt;br /&gt;
	]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/templatedata&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=Ada&amp;diff=14239</id>
		<title>Ada</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=Ada&amp;diff=14239"/>
		<updated>2023-08-24T09:38:50Z</updated>

		<summary type="html">&lt;p&gt;Ada: created redirect for user page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[User:Ada]]&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
	<entry>
		<id>https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14238</id>
		<title>User:Ada</title>
		<link rel="alternate" type="text/html" href="https://wiki.comakingspace.de/index.php?title=User:Ada&amp;diff=14238"/>
		<updated>2023-08-24T09:38:50Z</updated>

		<summary type="html">&lt;p&gt;Ada: create user page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{User}}&lt;/div&gt;</summary>
		<author><name>Ada</name></author>
	</entry>
</feed>