<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ratpack.ece.utah.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bean</id>
	<title>Ratpack - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ratpack.ece.utah.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bean"/>
	<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php/Special:Contributions/Bean"/>
	<updated>2026-08-02T20:35:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.9</generator>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Formatting&amp;diff=72</id>
		<title>Formatting</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Formatting&amp;diff=72"/>
		<updated>2026-07-31T22:07:37Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Index]]&lt;br /&gt;
&lt;br /&gt;
== 2026 07 31 ==&lt;br /&gt;
What format do we use to name things?&lt;br /&gt;
 - Using &amp;quot;/**&amp;quot; then &amp;quot; * &amp;quot; then &amp;quot; */&amp;quot; to write comments&lt;br /&gt;
 - Method names: Upper Snake Case&lt;br /&gt;
 - Struct names: Upper Snake Case, append &amp;quot;_t&amp;quot;&lt;br /&gt;
 - Variables: Lower Snake Case&lt;br /&gt;
 - Constants: Upper Snake Case&lt;br /&gt;
 - Files:&lt;br /&gt;
     - .c, .h, .txt Lowercase with underscores&lt;br /&gt;
     - .txt and .json Upper Camel Case&lt;br /&gt;
 - Folders: By vibes&lt;br /&gt;
&lt;br /&gt;
Commit formatting:&lt;br /&gt;
 - https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13&lt;br /&gt;
 - &amp;lt;type&amp;gt;(&amp;lt;optional scope&amp;gt;): &amp;lt;description&amp;gt;&lt;br /&gt;
 - Common Types:&lt;br /&gt;
     - feat: commits that add or adjust a feature&lt;br /&gt;
     - fix&lt;br /&gt;
     - refactor&lt;br /&gt;
     - style: formatting stuff that does not affect&lt;br /&gt;
     - test: stuff to do with unit testing&lt;br /&gt;
     - docs&lt;br /&gt;
     - build: stuff relating to build frameworks and tools&lt;br /&gt;
     - merge:&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Formatting&amp;diff=71</id>
		<title>Formatting</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Formatting&amp;diff=71"/>
		<updated>2026-07-31T21:34:47Z</updated>

		<summary type="html">&lt;p&gt;Bean: added &amp;#039;constants&amp;#039; formatting entry&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Index]]&lt;br /&gt;
&lt;br /&gt;
== 2026 07 31 ==&lt;br /&gt;
What format do we use to name things?&lt;br /&gt;
 - Using &amp;quot;/**&amp;quot; then &amp;quot; * &amp;quot; then &amp;quot; */&amp;quot; to write comments&lt;br /&gt;
 - Method names: Upper Snake Case&lt;br /&gt;
 - Struct names: Upper Snake Case, append &amp;quot;_t&amp;quot;&lt;br /&gt;
 - Variables: Lower Snake Case&lt;br /&gt;
 - Constants: Upper Snake Case&lt;br /&gt;
 - Files:&lt;br /&gt;
     - .c, .h, .txt Lowercase with underscores&lt;br /&gt;
     - .txt and .json Upper Camel Case&lt;br /&gt;
 - Folders: By vibes&lt;br /&gt;
&lt;br /&gt;
Commit formatting:&lt;br /&gt;
 - https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13&lt;br /&gt;
 - &amp;lt;type&amp;gt;(&amp;lt;optional scope&amp;gt;): &amp;lt;description&amp;gt;&lt;br /&gt;
 - Common Types:&lt;br /&gt;
     - feat: commits that add or adjust a feature&lt;br /&gt;
     - fix&lt;br /&gt;
     - refactor&lt;br /&gt;
     - style: formatting stuff that does not affect&lt;br /&gt;
     - test: stuff to do with unit testing&lt;br /&gt;
     - docs&lt;br /&gt;
     - build: stuff relating to build frameworks and tools&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Protocol&amp;diff=41</id>
		<title>Protocol</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Protocol&amp;diff=41"/>
		<updated>2026-07-12T21:58:57Z</updated>

		<summary type="html">&lt;p&gt;Bean: Scheme-Plan yes-yes :3&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Index]]&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
When data should be sent, a packet is generated, this is an arbitrary bit string of arbitrary length. If the packet gets above a threshold, call it an MTU for Max Transfer Unit, then the packet can be split into multiple frames. Each frame is one transmission, containing part or all of a packet, and meta information about itself.&lt;br /&gt;
&lt;br /&gt;
The idea is that by splitting and framing packets, we are able to reduce the amount of continuous air time in use, and reduce issues caused by drift in the bit detection&lt;br /&gt;
&lt;br /&gt;
Some transmissions are framed, others are not to save space. See the [[Protocol#Transaction Format|Transaction Format]] below&lt;br /&gt;
&lt;br /&gt;
== Transaction Format ==&lt;br /&gt;
 A ____ | Unframed, Occasionally broadcast ping to say ready to transmit, maybe once every two minutes or something&lt;br /&gt;
 A &amp;lt;- B | Unframed, Reply to A&#039;s broadcast, just different(?) preamble then A&#039;s callsign, then B&#039;s callsign&lt;br /&gt;
 A -&amp;gt; B | Framed packet, containing list of message hashes&lt;br /&gt;
 A &amp;lt;- B | Framed packet, containing list of message hashes&lt;br /&gt;
 A -&amp;gt; B | Framed packet, List of hashes A does hot have&lt;br /&gt;
 A &amp;lt;- B | Framed packet, List of hashes B does hot have&lt;br /&gt;
 A -&amp;gt; B | Framed packet, Message data for all requested packets B is missing&lt;br /&gt;
 A &amp;lt;- B | Framed packet, Message data for all requested packets A is missing&lt;br /&gt;
&lt;br /&gt;
== Packet Framing ==&lt;br /&gt;
- One frame contains a preamble, header, packet/packet part, footer&lt;br /&gt;
&lt;br /&gt;
=== Preramble ===&lt;br /&gt;
 - More than a standard bit string, could just stop transmitting within the block. This will allow the reciever to calibrate their bit width offset&lt;br /&gt;
 - All messages start this way in some fashion&lt;br /&gt;
 - Used to detect if this is a transmission for us, or another mode like someone just talking we can ignore&lt;br /&gt;
 - It could be worth having a distinct preamble for framed packets vs freeform want-to-talk/reply-to-want-to-talk packets&lt;br /&gt;
 - Something like 11110000110011001010 could be cool, the goal is that it can be listening periodically, then have enough time to spool up the math, and set the timing for where bit edges are&lt;br /&gt;
&lt;br /&gt;
=== Header ===&lt;br /&gt;
 - Contains meta information about the packet/packet part&lt;br /&gt;
 - Size of data block in bits/bytes (TBD)&lt;br /&gt;
 - Hash/Checksum/Parity to verify message integrity (TBD, I vote start with single parity bit, then get more complicated once we&#039;re good at this)&lt;br /&gt;
 - Callsign of sender, need to decide on format. It may be worth finding a standard already in place for amateur radio&lt;br /&gt;
 - Callsign of intended recipient (Do we want this?)&lt;br /&gt;
 - Section to say if we are a part of a split packet, and if so, what number out of how many we are, maybe just reserve two bytes for me/total&lt;br /&gt;
&lt;br /&gt;
=== Packet ===&lt;br /&gt;
 - Arbitrary data, split to fit in frame&#039;s MTU then reconstructed&lt;br /&gt;
&lt;br /&gt;
=== Footer ===&lt;br /&gt;
 - Like header but less&lt;br /&gt;
 - parity/checksum again(?)&lt;br /&gt;
 - Callsign of sender in standard format again -- I think this should be the end of the message so if someone doesn&#039;t know the format they can do it&lt;br /&gt;
     - Maybe beep it out in morse code using more standard fm ptt also&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=35</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=35"/>
		<updated>2026-06-06T01:39:00Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FT8 source code:&lt;br /&gt;
&lt;br /&gt;
https://github.com/kgoba/ft8_lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
JS8 user guide:&lt;br /&gt;
&lt;br /&gt;
https://js8call.com/JS8Call-improved/d6/d14/md_docs_2user__guide_2JS8Call__User__Guide.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Weak Signal Jovial Turtles (WSJT) homepage:&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/devel.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=34</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=34"/>
		<updated>2026-06-06T01:38:50Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FT8 source code:&lt;br /&gt;
https://github.com/kgoba/ft8_lib&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
JS8 user guide:&lt;br /&gt;
&lt;br /&gt;
https://js8call.com/JS8Call-improved/d6/d14/md_docs_2user__guide_2JS8Call__User__Guide.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Weak Signal Jovial Turtles (WSJT) homepage:&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/devel.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=33</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=33"/>
		<updated>2026-06-06T01:29:57Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
JS8 user guide:&lt;br /&gt;
&lt;br /&gt;
https://js8call.com/JS8Call-improved/d6/d14/md_docs_2user__guide_2JS8Call__User__Guide.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Weak Signal Jovial Turtles (WSJT) homepage:&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/devel.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=32</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=32"/>
		<updated>2026-06-06T00:55:02Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Weak Signal Jovial Turtles (WSJT) homepage:&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/devel.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=31</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=31"/>
		<updated>2026-06-06T00:54:48Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Weak Signal Jovial Turtles (WSJT) homepage:&lt;br /&gt;
https://wsjt.sourceforge.io/devel.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=30</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=30"/>
		<updated>2026-06-06T00:54:36Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
Weak Signal Jovial Turtles (WSJT) homepage:&lt;br /&gt;
https://wsjt.sourceforge.io/devel.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=29</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=29"/>
		<updated>2026-06-06T00:30:53Z</updated>

		<summary type="html">&lt;p&gt;Bean: Added FT4 protocol document&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
The FT4 and FT8 Communication Protocols: Motivation and design of the digital modes FT4 and FT8, and some details of how they are implemented in WSJT-X.&lt;br /&gt;
&lt;br /&gt;
https://wsjt.sourceforge.io/FT4_FT8_QEX.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Shared_Documents&amp;diff=26</id>
		<title>Shared Documents</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Shared_Documents&amp;diff=26"/>
		<updated>2026-04-14T22:27:05Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Index]]&lt;br /&gt;
&lt;br /&gt;
 Final Presentation: https://docs.google.com/presentation/d/1z0RWML4LscDDLyI2OR0ecD0lyGYomgWG8lHGuEDNWdA/edit?usp=sharing&lt;br /&gt;
&lt;br /&gt;
 Final Proposal: https://docs.google.com/document/d/14ydoZ-L2-1_XbjGCP8m4bqDTo7D6e-AzSidDjeT5dfk/edit?usp=sharing&lt;br /&gt;
 Will be typeset later, this is just for shared when writing words&lt;br /&gt;
&lt;br /&gt;
https://docs.google.com/spreadsheets/d/12KzJ8wqi2Mkw5PzUGracRZwxYwH0GbMwOs3JQOueON8/edit?gid=0#gid=0&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
	<entry>
		<id>https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=20</id>
		<title>Resources</title>
		<link rel="alternate" type="text/html" href="https://ratpack.ece.utah.edu/index.php?title=Resources&amp;diff=20"/>
		<updated>2026-04-09T22:14:37Z</updated>

		<summary type="html">&lt;p&gt;Bean: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will hold all our relevant sources, reading material, and so on.&lt;br /&gt;
&lt;br /&gt;
== Articles ==&lt;br /&gt;
=== Impact of Information on the Complexity of Asynchronous Radio Broadcasting ===&lt;br /&gt;
Authors: Tiziana Calamoneri, Emanuele G. Fusco, and Andrzej Pelc&lt;br /&gt;
&lt;br /&gt;
http://wwwusers.di.uniroma1.it/~calamo/PDF-FILES/information.pdf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Tags and Categories --&amp;gt;&lt;br /&gt;
[[Category:Index]]&lt;/div&gt;</summary>
		<author><name>Bean</name></author>
	</entry>
</feed>