<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>9. Evolution of parasites by </title>
      <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx</link>
      <description>Threads of discussion between MaSuD 2022-2023 students of topic n°9</description>
      <language>en-us</language>
      <pubDate>2022-11-02 14:53:15 UTC</pubDate>
      <lastBuildDate>2026-02-02 21:07:57 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Please introduce yourselves. Name, age,institution...</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2366826799</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-11-02 14:54:58 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2366826799</guid>
      </item>
      <item>
         <title>Write down the ideas and progress of yourgroup on your topic</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2366827793</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-11-02 14:55:30 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2366827793</guid>
      </item>
      <item>
         <title>Hi!</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2376699801</link>
         <description><![CDATA[<div>My name is Gabriela Urian, you can call me Gabi! I'm 17 and I study at "Emil Racovita" National College in Cluj. I'm really passionate about biology and liberal arts and I'm looking forward to seeing this project unwrap itself:)</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1881226695/ee11cce9c05b683be78a0d4e768da98d/20221109_121720.jpg" />
         <pubDate>2022-11-09 12:23:32 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2376699801</guid>
      </item>
      <item>
         <title>C++</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2376705918</link>
         <description><![CDATA[<div>We thought creating a C++ project for said simulation of the parasites' and hosts' evolution would be a good starting point!<br>Here is the program:<br>#include&lt;iostream&gt;<br><br></div><div>#include&lt;stdlib.h&gt;<br><br></div><div>#include&lt;time.h&gt;<br><br></div><div>using namespace std;<br><br></div><div>int H, P;<br><br></div><div>//no hosts, no parasites<br><br></div><div>int b, d, dp, e;<br><br></div><div>//birth rate hosts, death rate hosts, death rate parasites, no eggs per host<br><br></div><div>int eggs;<br><br></div><div>//eggs currently waiting to hatch<br><br></div><div>int probability;<br><br></div><div>//probability parasite and host meet<br><br></div><div>int t;<br><br></div><div>//number of time units to be executed<br><br></div><div>int k;<br><br></div><div>//randomized number<br><br></div><div>int main()<br><br></div><div>{<br><br></div><div>cin&gt;&gt;H&gt;&gt;P&gt;&gt;b&gt;&gt;d&gt;&gt;dp&gt;&gt;e&gt;&gt;t;<br><br></div><div>srand(time(NULL));<br><br></div><div>for(int a=1;a&lt;=100;a++)<br><br></div><div>{<br><br></div><div>k=rand();<br><br></div><div>}<br><br></div><div>for(int i=1;i&lt;=t;i++)<br><br></div><div>{<br><br></div><div>probability=k*H*P;<br><br></div><div>eggs=probability*e;<br><br></div><div>H=H+(b*H)-(d*H)-probability;<br><br></div><div>P=P-(dp*P)+eggs;<br><br></div><div>cout&lt;&lt;"\n"&lt;&lt;H&lt;&lt;" "&lt;&lt;P&lt;&lt;"\n";<br><br></div><div>}<br><br></div><div>}<br><br>k is a randomized number between 1 and 100 meant to randomize the probability of hosts and parasites meeting while keeping it proportional to the populations' number(probability=k*H*P).<br>I've met some difficulty with my laptop(it literally refuses to run my programs lately) and I haven't found a good online compiler so suggestions would be appreciated!!&nbsp;<br><br>We have calculated the populations' evolution for a few chosen variables and tye results have been....incomprehensible and unrealistic so we gotta figure that out.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-09 12:28:39 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2376705918</guid>
      </item>
      <item>
         <title>C++</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2376740921</link>
         <description><![CDATA[<div>We've got news, I'm an idiot and I figured why the hosts' population always decreased dramatically. I changed the probability from probability=H*P*k to probability=(H*P)/k. k is a percentage but we do not need the 1/100 for the rest of the problem besides calculating the probability so I figured I could move it under a fraction.<br>Also the number of eggs was changed from eggs=probability*e to eggs=(probability*e)/H cause it is directly corralted to the number of hosts(there can't be more eggs than e*H, and probability*e almost always surpassed that number in our simulations).</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-09 12:56:15 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2376740921</guid>
      </item>
      <item>
         <title>Intorduction</title>
         <author>moldovancarmenmaria</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2386334190</link>
         <description><![CDATA[<div>Hi! My name is Carmen Moldovan and I'm a student at "Emil Racovita" National College in 10th grade. I am 15, almost 16 and I'm looking forward to creating this project with my colleagues, Tudor and Rebeca. I am a friendly and talkative person and I am passionate about English and geography. I can't wait to see your approach to this project and improve my mathematical and English skills while learning more about our research topic.😋<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-16 10:01:44 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2386334190</guid>
      </item>
      <item>
         <title></title>
         <author>fcaillau</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2408961878</link>
         <description><![CDATA[<div>Hi! <br>My name is Fiona Caillau, I'm 14, almost 15. I am from Ivory Coast but I'm a 10th grade student at "Bellevue Marie Rivier" in Alès. I'm in a group&nbsp;of 4 people, Thibaut, Arnaud and Claire, and we're&nbsp; looking forward to find a solution to the problem n°9.<strong>🤗</strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-05 11:19:44 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2408961878</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2408975049</link>
         <description><![CDATA[<div>Hello !<br>My name is PELLET Thibaut, I am 15, I am in 11th grade and I am coming from the high school «Bellevue Marie Rivier» from Alès from Gard from Occitanie from France from the space Shengen from European Union from Europe from Earth from milky way from the universe.<br>In my group i am with Fiona Caillau, Arnaud Fosset, Claire Gauthier and me.<br>I hope we will work well together on the subject 9 ! 👍</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-05 11:33:26 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2408975049</guid>
      </item>
      <item>
         <title>hellooo</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2414892791</link>
         <description><![CDATA[<div>My name is Rebeca Sturz. I'm 16 and also a student at "Emil Racovita" National College. I'm really curious to know how you thought about solving this problem!! :)<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-08 21:32:57 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2414892791</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451362626</link>
         <description><![CDATA[<div>Our team had a more analytical approach. Since eggs will soon become parasites, we neglected the hatching period, and considered the eggs as new parasites. This led us to the following non-linear coupled system of differential equations, where h - current number of hosts, p - current number of parasites, alpha = b - d, beta = k, gamma = dp, delta= k * average no. of eggs/host.<br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/104520f1fd572e96b006ac7ad6f2dac1/image.png" />
         <pubDate>2023-01-20 17:40:22 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451362626</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451376536</link>
         <description><![CDATA[<div>Hello, my name is Codrin Berinde, I am a 12th grade student at Colegiul National&nbsp; "Emil Racovita", Cluj-Napoca, Romania. I enjoy working on projects related to exact sciences, and me and my team colleague are eager to work with you to find the best results to research topic 9.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-20 17:51:41 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451376536</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451382094</link>
         <description><![CDATA[<div>Hello everyone, my name is Munteanu Matei, I am 17 years old and I am in 11th grade at Colegiul National "Emil Racovita", in Cluj-Napoca Romania. I'm looking forward to meeting you and working on the research project together.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-20 17:56:28 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451382094</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451393749</link>
         <description><![CDATA[<div>Here is the code we wrote in order to visualize the behavior of the populations of hosts and parasites, respectively. It generates both an output file "output.txt" with the two populations in time, and another file, "latex.txt", containing LaTeX commands that generate a graph.<br><br>We used the mathematical method of discretization: we turned the continuous functions into sequences. Although this method is not that precise (as you will see later) it offers a good perspective of the evolution of the two species.<br><br>The program reads from "input.txt" the following float numbers:<br>h0, p0 - the initial populations<br>alpha, beta, gamma, delta<br><br>It runs through 3000 iterations.<br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/b588077ffff224368b3c74a0632ac38d/discret.py" />
         <pubDate>2023-01-20 18:06:55 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451393749</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451399250</link>
         <description><![CDATA[<div>Here is an example of a graph generated by our code, for the sample values of:<br>h0 = 7.5<br>p0 = 3<br>alpha = 0.002<br>beta = 0.0004<br>gamma = 0.006<br>delta = 0.0008<br><br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/de26bf01fcf39b1bbdbe0a0122baff3f/image.png" />
         <pubDate>2023-01-20 18:11:59 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2451399250</guid>
      </item>
      <item>
         <title>Updated code- Team Stefi-Gabi</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2452246717</link>
         <description><![CDATA[<div>We changed the way k, d, b, and dp are generated!&nbsp;<br>#include&lt;iostream&gt;<br><br></div><div>using namespace std;<br><br></div><div>int H, P;<br><br></div><div>//no hosts, no parasites<br><br></div><div>int b, d, dp;<br><br></div><div>//birth rate hosts, death rate hosts, death rate parasites; they must be between 0 and 1<br><br>int e;<br><br>//no eggs per host<br><br></div><div>int eggs;<br><br></div><div>//eggs currently waiting to hatch<br><br></div><div>int probability;<br><br></div><div>//probability parasite and host meet<br><br></div><div>int t;<br><br></div><div>//number of time units to be executed<br><br></div><div>int k;<br><br></div><div>//random number between 0 and 1<br><br></div><div>int main()<br><br></div><div>{<br><br></div><div>cin&gt;&gt;H&gt;&gt;P&gt;&gt;b&gt;&gt;d&gt;&gt;dp&gt;&gt;e&gt;&gt;t&gt;&gt;k;<br><br></div><div>for(int i=1 ; i&lt;=t ; i++)<br><br></div><div>{<br><br></div><div>probability=k*H*P;<br><br></div><div>eggs=probability*e;<br><br></div><div>H=H+(b*H)-(d*H)-probability;<br><br></div><div>P=P-(dp*P)+eggs;<br><br></div><div>cout&lt;&lt;"\n"&lt;&lt;H&lt;&lt;" "&lt;&lt;P&lt;&lt;"\n";<br>if(P==0 || H==0)<br>{<br>&nbsp; &nbsp; cout&lt;&lt;"Population reached 0";<br>&nbsp; &nbsp; return 0;<br><br>}<br><br></div><div>}<br><br></div><div>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-22 10:55:56 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2452246717</guid>
      </item>
      <item>
         <title>Some ideas from the presentation</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460152013</link>
         <description><![CDATA[<div>Instead of representing two graphs (hosts against time and parasites against time), you can represent hosts against parasites on the same graph (denoted as x and y, respectively). Therefore, each point of the graph corresponds to two particular population sizes (h, p) and for each point the derivative of each population can be calculated from the differential system and represented as a vector: showing us in what direction the two populations will evolve in time. The vector's modulus shows how fast this change will happen. This graph is called <em>vector field</em>.<br><br>You can see for example, on the y axis, that parasites without hosts quickly drop to zero, while on the x axis, hosts without parasites grow exponentially.<br><br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/deb6ad128be5f52bfcf4138233821741/image.png" />
         <pubDate>2023-01-29 07:47:18 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460152013</guid>
      </item>
      <item>
         <title>Stationary points</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460155762</link>
         <description><![CDATA[<div>There are, however, points on the vector field where the vector is zero. Those are the points where both populations will remain constant in time, hence both derivatives (measures of <em>change</em>) equal zero. We can obtain the coordinates of those points by setting the two derivatives zero in our system and solving the new system, which give us two points: (0, 0) and (gamma/delta, alpha/beta).<br><br>The interesting point to study is the second one, since (0, 0) is obviously stationary: with no populations there can't be any change.<br><br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/3312e76fa11f1ad52186e4da0e8a8693/image.png" />
         <pubDate>2023-01-29 07:58:25 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460155762</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460156480</link>
         <description><![CDATA[<div>Another interesting thing to do is representing the graphs obtained by discretization right on the vector field. We obtain a beautiful spiral around the stationary point.<br><br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/397796482c79e2a797e0ccea7f4b6e23/image.png" />
         <pubDate>2023-01-29 08:00:29 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460156480</guid>
      </item>
      <item>
         <title>Code</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460176690</link>
         <description><![CDATA[<div>The code that we wrote in order to obtain the vector fields (the code generates LaTeX commands)<br><br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/fca67fd40f63440afe5688e29ae9669e/pajiste.py" />
         <pubDate>2023-01-29 09:14:11 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460176690</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460176898</link>
         <description><![CDATA[<div>The code that draws the spiral above the vector field.<br><br>Team Matei-Codrin</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1940588699/6ebc3550f573278563779b0d7e5eaac6/spirala.py" />
         <pubDate>2023-01-29 09:14:56 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2460176898</guid>
      </item>
      <item>
         <title>Research</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461130673</link>
         <description><![CDATA[<div>As we started to work on the problem, we decided to do the experiment ourselves. We went to the USAMV (a university here in Cluj) lab and we worked on three hosts and 310 parasites. The parasite we used is called Strongylus equinus and the experiment lasted for&nbsp; 10 days. In 3 days, 122 eggs died and 188 remained. In the next week, another 30 died and 158 eggs hatched.&nbsp; While working on the experiment, we found various data about parasites and their hosts, and we discovered that once the host is infected with a parasite, it will show clinical symptoms in around 8-9 months. However, most of the hosts don’t die after being infected with the parasite. &nbsp;<br>-Moldovan Carmen<br>Team Sturz Rebeca, Moldovan Carmen, Cainap Tudor</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1935393756/f5cf2a8f6b4a29210317d817c953914e/trim_CED1F06F_4B1A_4BBA_8D7C_E72CB8109E24.MOV" />
         <pubDate>2023-01-30 09:58:57 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461130673</guid>
      </item>
      <item>
         <title>Hi!</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461465130</link>
         <description><![CDATA[<div>Hello, my name is Tudor Cainap, I am a 10th grade student at Colegiul National "Emil racovita". I am 16 and looking forward to finding a great solution to this problem together with my colleagues Carmen and Rebeca. I'm thrilled by the idea of being able to see what you guys have come up with to this problem whilst also improving my english skills!</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-30 14:22:13 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461465130</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461779447</link>
         <description><![CDATA[<div>The formula ended up with is:&nbsp;<br>P(t)=k•(e^-dp•t+c)&nbsp;<br>P(t) is the parasite population at time t&nbsp;<br>k=1000 (constant)&nbsp;<br>e^-dp= 0.8&nbsp;<br>dp=-ln(0.8)&nbsp;<br>c=variable&nbsp;<br>dp=parasite death rate&nbsp;<br>But before we discovered the final formula, we had several other attempts at equations and equalities that eventually led us to the desired result.<br>dp=P(t+1)-P(t)&nbsp;<br>P(t+1)=P(1)+t*c (eg P(100)=P(1)+99c<br>&nbsp;c is a variable whose values ​​may differ depending on the problem data. From the two formulas above I extracted that dp=t*c, but I needed more to advance.&nbsp;<br>We also arrived at the formula P(t+1)=P(t)+(br-dp)-t*c, but we don't think it's very correct, so we didn't dwell on it too much.<br>&nbsp;Initially, the final formula looked like this: P(t)=e^(-dp*t)+c, k being equal to 1. However, this messed up our calculations a bit, so we gave k the value 1000. The new attribution of k helped both the formula and the representation of the function.<br>-Sturz Rebeca<br>Team Moldovan Carmen, Cainap Tudor, Sturz Rebeca</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-30 17:18:16 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461779447</guid>
      </item>
      <item>
         <title>The code that I put together</title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461830181</link>
         <description><![CDATA[<div>//&nbsp; Sistems of differential equations that describe the growth over time of a<br>//&nbsp; (host - H)(parasite - P)<br>//&nbsp; dH/dt = bH - H * P<br>//&nbsp; dP/dt = H * P - dp<br><br>#include &lt;iostream&gt;<br>using namespace std;<br>double dHdt(double H, double P, double b);<br>double dPdt(double H, double P, double dp);<br>int main(int argc, const char * argv[]) {<br>&nbsp; &nbsp; double H = 100;<br>&nbsp; &nbsp; double P = 10;<br>&nbsp; &nbsp; double b = 0.1;<br>&nbsp; &nbsp; double dp = 0.05;<br>&nbsp; &nbsp; double dt = 0.1; // delta t - interval of time<br><br>&nbsp; &nbsp; for (int&nbsp; t = 0; t &lt; 10; t++)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; H += dt * dHdt(H, P, b);<br>&nbsp; &nbsp; &nbsp; &nbsp; P += dt * dPdt(H, P, dp);<br><br>&nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; "Time: " &lt;&lt; t &lt;&lt; " Hosts: " &lt;&lt; H &lt;&lt; " Parasites: " &lt;&lt; P &lt;&lt; endl;<br>&nbsp; &nbsp; }<br><br><br>&nbsp; &nbsp; return 0;<br>}<br><br>double dHdt(double H, double P, double b)<br>{<br><br>&nbsp; &nbsp; return b * H - H * P;<br>}<br><br>double dPdt(double H, double P, double dp)<br>{<br>&nbsp; &nbsp; return&nbsp;H&nbsp;*&nbsp;P&nbsp;-&nbsp;dp;<br>}<br>Team Moldovan Carmen, Sturz Rebeca, Cainap Tudor</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-30 17:48:41 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2461830181</guid>
      </item>
      <item>
         <title>Video conference on Wednesday, January 25, 2023 from 1:00 to 3:00 pm (French time)</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2462049838</link>
         <description><![CDATA[<div>Prepare a short slide show on your results and current research.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-01-30 20:16:53 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2462049838</guid>
      </item>
      <item>
         <title></title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2462050922</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1871305849/308dfb1880dbcc35afa28ad5bd542196/VC_25_janvier_2023_3_.jpg" />
         <pubDate>2023-01-30 20:17:53 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2462050922</guid>
      </item>
      <item>
         <title>hi </title>
         <author></author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2510922036</link>
         <description><![CDATA[<div>im posting this message here to make sure you see it :))<br>im the only student from cluj (with this subject) coming to France and i was wondering how many of you will be participating to the congress and if you have already started the presentation work...?<br>rebeca sturz<br><br>***this is my personal email adress, if you want to text me so we can work together rebecast0211@gmail.com</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-09 21:20:56 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2510922036</guid>
      </item>
      <item>
         <title>Documents for the common presentation at the Nice Congress</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529398152</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1871305849/5765331647f118b06218e46368fd898f/Front_page.pdf" />
         <pubDate>2023-03-23 19:43:47 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529398152</guid>
      </item>
      <item>
         <title>Logo MaSuD</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529398502</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1871305849/74f14499316bc5afc3bb5096c18868bf/LOGO_MaSuD.jpg" />
         <pubDate>2023-03-23 19:44:09 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529398502</guid>
      </item>
      <item>
         <title>Logo ERASMUS</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529398802</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1871305849/a2fc611a1fc6b1bd55884afdc939f726/Logo_ERASMUS_EN.jpg" />
         <pubDate>2023-03-23 19:44:28 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529398802</guid>
      </item>
      <item>
         <title>Logo MeJ</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529399091</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1871305849/52e440f8e3ae5c9b687cb9fa0055d9cf/logomej1000.jpg" />
         <pubDate>2023-03-23 19:44:47 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2529399091</guid>
      </item>
      <item>
         <title>Research poster</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639465197</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/c5fdc2681ffe4dd4c417698285ea7e2d/proiect_masud__poster_topic_9.pdf" />
         <pubDate>2023-07-06 07:23:00 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639465197</guid>
      </item>
      <item>
         <title>CNER (Cluj) - group 1</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639470885</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/cb22643241bb8d2c92edd9dbbb28457b/topic9.jpg" />
         <pubDate>2023-07-06 07:30:32 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639470885</guid>
      </item>
      <item>
         <title>CNER (Cluj) group 2</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639471152</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/498b2d9eaca3f0c4ba47788f82f41e81/topic9_2.jpg" />
         <pubDate>2023-07-06 07:30:59 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639471152</guid>
      </item>
      <item>
         <title>CNER (Cluj) group 3</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639471571</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/4bc4b47830f66b023d549595792fe502/topic9_3.jpg" />
         <pubDate>2023-07-06 07:31:40 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639471571</guid>
      </item>
      <item>
         <title>Interactive presentation at the MATh.en.JEANS Congress (Nice) 6 April 2023</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639474140</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/8d706f453a37fee7a563ca0e3fb8ae94/IMG_5584.jpg" />
         <pubDate>2023-07-06 07:35:39 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639474140</guid>
      </item>
      <item>
         <title>Scientific presentation at the MATh.en.JEANS Congress (Nice) 6 April 2023</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639475669</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/d079c3c3f62b1df3de9ccf142cd972df/IMG_5655.jpg" />
         <pubDate>2023-07-06 07:37:59 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639475669</guid>
      </item>
      <item>
         <title>Interactive presentation @MATh.en.JEANS Congress - 6 April 2023</title>
         <author>arianavacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639483875</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2050541149/7716bbc4665d64d1e389f0d80e4dc7d4/IMG_5601_small.jpg" />
         <pubDate>2023-07-06 07:50:40 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639483875</guid>
      </item>
      <item>
         <title>Nice Congress</title>
         <author>hubertproal</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639516516</link>
         <description><![CDATA[<div>Presentation at the Nice congress</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1871305849/a68f0a22ae67bfe3e206c0262b8c05ff/_9_EVOLUTION_OF_PARASITES.pdf" />
         <pubDate>2023-07-06 08:34:23 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2639516516</guid>
      </item>
      <item>
         <title>Research article</title>
         <author>ariana_vacaretu</author>
         <link>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2653403457</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/345794/14615d71f0ef0c4258c2dd7b781a8bc7/Topic_9___Evolution_of_parasites.pdf" />
         <pubDate>2023-07-31 06:28:31 UTC</pubDate>
         <guid>https://padlet.com/hubertproal/jqwrajzcwdxwivzx/wish/2653403457</guid>
      </item>
   </channel>
</rss>
