<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Programming Padlet by Felipe Cardoso</title>
      <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh</link>
      <description>English class</description>
      <language>en-us</language>
      <pubDate>2021-09-16 19:13:02 UTC</pubDate>
      <lastBuildDate>2024-10-13 15:55:26 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4bb.png</url>
      </image>
      <item>
         <title>C#</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746928249</link>
         <description><![CDATA[<div>C# is a general-purpose programming language, designed by Anders Hejlsberg from Microsoft in 2000, being inspired by Java and C/C++. It became an ISO standard in 2002 and was introduced a year later by Microsoft along with the .NET Framework and Visual Studio IDE. It began as a closed-source project (only Microsoft had access to its compiler and runtime's code), but soon an open-source implementation, called Mono, was created, which made C# cross-platform. Ten years later, Microsoft introduced .NET Core, which was an official open-source C# implementation, which consolidated its cross-platform capabilities.<br><br>C# is a very popular language for its speed, libraries, runtime, syntax, and versatility, as developers can use it to build games, web servers, embedded applications, and more.<br><br><a href="https://en.wikipedia.org/wiki/C_Sharp_(programming_language)">Source</a></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-16 20:20:23 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746928249</guid>
      </item>
      <item>
         <title>C# Code - Divisible Numbers</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746930224</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/ad40a7271850507698fc1aff15d5199c/Oi.png" />
         <pubDate>2021-09-16 20:21:49 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746930224</guid>
      </item>
      <item>
         <title>IFs - What are they used for?</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746960406</link>
         <description><![CDATA[<div>IFs in programming are very similar to IFs in language - they specify a condition and an action that should happen if it's true.<br><br>In programming, IFs are a <em>must</em>, as if-less programs are static and can have no interaction with the user. They allow us to specify a condition and some code that should be executed if it's true. They also allow us to run some code if it's&nbsp;<em>not</em>&nbsp;true, and we can chain multiple IFs together and create complex situations that are very specific to a set of conditions.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-16 20:40:48 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746960406</guid>
      </item>
      <item>
         <title>JavaScript Code - Guess the number</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746975343</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/793612756/4ee49b9b06a3d7027718c6f18a886b39/Captura_de_tela_2021_09_28_114539.png" />
         <pubDate>2021-09-16 20:52:20 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746975343</guid>
      </item>
      <item>
         <title>IFs - Syntax</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746978191</link>
         <description><![CDATA[<div>Although different languages have different syntaxes, IFs are pretty similar in all of them. You usually have the following structure.<br><br></div><pre>if ( &lt;condition&gt; ) {
    &lt;action&gt;
}</pre><div><br>The &lt;action&gt; field can be any type of code, and it will only execute if &lt;condition&gt; is <em>true</em>.<br><br></div><div>Example in JavaScript:<br><br></div><pre>if( 10 &gt; 5 ) {
    alert("10 is greater than 5!")
}</pre><div><br>We can also specify an ELSE, in which the code inside will only run if the &lt;condition&gt; is false;<br><br></div><pre><em>if( 10 &gt; 50 ) {
    alert("10 is greater than 50!")
} else {
    alert("10 is not greater than 50!")
}</em></pre><div><br>We can even put IFs inside ELSEs, which allow us to make almost anything! (We can omit ELSE's { } to simplify the reading)&nbsp;<br><br></div><pre><em>if( 10 &gt; 50 ) {
    alert("10 is greater than 50!")
} else if (10 &gt; 25) {
    alert("10 is not greater than 50, but it is greater than 30!")
} else {
    alert("10 is not greater than 50 nor 30!")
}</em></pre>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-16 20:54:36 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1746978191</guid>
      </item>
      <item>
         <title>JavaScript</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1755434829</link>
         <description><![CDATA[<div><br>The popular language, JavaScript, was created in 1995 by Bredan Eich, for the Netscape Navigator 2 browser. At that time, all the processing was done by servers (in the USA), besides the connection being limited and slow. One of the main reasons for its creation, was the validation of forms, since then, the capacity of JS has grown a lot, allowing applications and web interactions, making it possible today to use it both, on the server-side and on the client-side, and although it was created for Netscape, it is now implemented in all big browsers.<br><br>&gt;&gt; Curiosity: The name of the 1st proposal created by Bredan Eich, was called LiveScript, with the function of “bringing life” to the sites, but as the Java language was the most popular at the time, the name 'Java' was adopted to gain this more popularity.<br><br><a href="https://launchschool.com/books/javascript/read/introduction">Source</a><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-20 22:14:09 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1755434829</guid>
      </item>
      <item>
         <title>Brendan Eich</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1755450908</link>
         <description><![CDATA[<div>Brendan Eich is an American computer programmer and creator of the JavaScript programming language. Former head of the technology office at Mozilla Corporation.<br><br><a href="https://en.wikipedia.org/wiki/Brendan_Eich">Source</a>
</div>]]></description>
         <enclosure url="http://i.huffpost.com/gen/1703190/images/o-BRENDAN-EICH-PROP-8-facebook.jpg" />
         <pubDate>2021-09-20 22:22:18 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1755450908</guid>
      </item>
      <item>
         <title>Anders Hejlsberg</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1755457181</link>
         <description><![CDATA[<div>Anders Hejlsberg is a Danish software engineer who gained prestige for developing Delphi and Turbo Pascal at Borland and the .NET platform after migrating to Microsoft. He is the lead architect of the C# programming language and core developer of TypeScript.<br><br><a href="https://en.wikipedia.org/wiki/Anders_Hejlsberg">Source</a></div>]]></description>
         <enclosure url="http://upload.wikimedia.org/wikipedia/commons/7/7b/Anders_Hejlsberg_at_PDC2008.jpg" />
         <pubDate>2021-09-20 22:26:15 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1755457181</guid>
      </item>
      <item>
         <title>Audio explanation of code</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761221676</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/961b85a395bd3e52b6f23a81c4d8daca/C__Program_explanation.wav" />
         <pubDate>2021-09-22 21:49:09 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761221676</guid>
      </item>
      <item>
         <title>JavaScript code explanation</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761315712</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/793612756/18be888a2f059c5dcb66de0c7289b876/JavaScript_code_explanation.mp3" />
         <pubDate>2021-09-22 23:14:25 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761315712</guid>
      </item>
      <item>
         <title>Brendan Eich Audio</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761327750</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/793612756/6d304b43eda6f026ed4d5619247534a6/audio.mp3" />
         <pubDate>2021-09-22 23:25:39 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761327750</guid>
      </item>
      <item>
         <title>JavaScript Audio</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761335006</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/793612756/287905a5a1ca52a06161c0272d3b0035/audio.mp3" />
         <pubDate>2021-09-22 23:32:16 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1761335006</guid>
      </item>
      <item>
         <title></title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767743347</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/00b35566d60988b1a7c5b473d1f62d68/C__Diagram.png" />
         <pubDate>2021-09-25 20:12:50 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767743347</guid>
      </item>
      <item>
         <title></title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767749136</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/2a9c21303c8382254b6043ab47c205c6/Javascript_Diagram.png" />
         <pubDate>2021-09-25 20:20:03 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767749136</guid>
      </item>
      <item>
         <title>C# History Audio</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767760686</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/c58f33a9f13e8bec05637ed237e6d6de/C__History_Audio.mp3" />
         <pubDate>2021-09-25 20:28:00 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767760686</guid>
      </item>
      <item>
         <title>Anders Hejlsberg Audio</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767762713</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/886d556af079bc5444ab0d1e5bab89bd/audio.mp3" />
         <pubDate>2021-09-25 20:30:33 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767762713</guid>
      </item>
      <item>
         <title>Fonts</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767858962</link>
         <description><![CDATA[<ul><li><a href="https://www.wikipedia.org/">Wikipedia</a>;</li><li><a href="https://computersciencewiki.org/index.php/Conditionals">Moodle material</a>;</li><li><a href="https://gabriellv-br.github.io/brain/">Our Brains</a>.</li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-25 22:40:34 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767858962</guid>
      </item>
      <item>
         <title></title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767874028</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/793612756/a7f23b306846b527f226f898e1a8c212/IFs___Audio.mp3" />
         <pubDate>2021-09-25 23:07:37 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767874028</guid>
      </item>
      <item>
         <title>JavaScript Code - Temperature Conversor</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767916143</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/793612756/22b0239cbfed1c96ad9d53745d3b1b19/imagem_2021_09_28_124821.png" />
         <pubDate>2021-09-26 00:32:35 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1767916143</guid>
      </item>
      <item>
         <title></title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1769049029</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/17f9815076fed15440d56c2d224b10fc/audio.mp3" />
         <pubDate>2021-09-26 18:27:28 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1769049029</guid>
      </item>
      <item>
         <title></title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1769061030</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/2116e5a7a2995443c04c3346c5873148/Javascript_Diagram_2.png" />
         <pubDate>2021-09-26 18:37:09 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1769061030</guid>
      </item>
      <item>
         <title></title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1769105620</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/ff5c0529d356efd3cc9dbcd12ed032f2/Javascript_Explanation.wav" />
         <pubDate>2021-09-26 19:14:17 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1769105620</guid>
      </item>
      <item>
         <title>IFS - Operators</title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1774705374</link>
         <description><![CDATA[<div>IFs in programming also supply some useful operators that allow us to create conditions that are more specific or broader. Most languages supply some of these operators in one way or the other: <strong>and, or, not</strong>.<br><br>The <strong><mark>and</mark></strong> operator "multiplies" conditions. Two statements combined with the <strong><mark>and</mark></strong> operator will only return <strong>true</strong> if <strong>both </strong>are <strong>true</strong>. The <strong><mark>and</mark></strong> operator is often represented as a <strong>double ampersand </strong>(&amp;&amp;) in programming.<br><br></div><pre>let age = 14;

if(age &gt; 18) {
    alert("You're an adult");
} else if (age &lt; 18 <strong>&amp;&amp; </strong>age &gt; 12) {
    alert("You're a teenager");
} else {
    alert("You're a child");
}
// This would output "You're a teenager", because 12 is smaller than 18 <strong>and </strong>bigger than 12. <strong> </strong></pre><div><br>The <strong><mark>or</mark></strong> operator "adds" conditions. Two statements combined with the <strong><mark>or</mark></strong> operator will return <strong>true </strong>if <strong>either</strong> statement is <strong>true</strong>. The <strong><mark>or</mark></strong> operator is often represented as a <strong>double vertical bar (||) </strong>in programming.<br><br></div><pre>let age = 58;
let money = 1000;

if(age &gt; 60 || money &gt; 800) {
    alert("You can enter");
} else {
    alert("Sorry, you're not allowed to enter");
}

// This would output "You can enter", because, even though the <mark>age</mark> variable is smaller than 60, the <mark>money</mark> is bigger than 800.</pre><div><br>The <strong><mark>not</mark></strong> operator "flips" a condition. A statement followed by the <strong><mark>not</mark></strong> operator returns the opposite value (true if it's false, false if it's true). The <strong><mark>not</mark></strong> operator is often represented as an <strong>exclamation mark (!) </strong>in programming. Keep in mind that <strong><mark>not</mark></strong> is a unary operator, which means it only acts on one statement, as opposed to multiple.<br><br></div><pre>let isFull = false;

while( ! isFull ) {
    eat();
}
// This code will run untill <mark>isFull</mark> becomes true. Reading it as 'while not isFull' might help understanding it.
// Interpret the <mark>eat()</mark> part as calling an external function that will set <mark>isFull</mark> to <strong>true</strong> whenever it decides to.</pre>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-28 13:56:23 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1774705374</guid>
      </item>
      <item>
         <title>Downloads</title>
         <author>emaildofe0</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1774989820</link>
         <description><![CDATA[<div><br></div><ul><li><a href="https://github.com/the-felipe/number-game-js">Guess the Number</a></li></ul><div><br></div><ul><li><a href="https://github.com/the-felipe/temperature-conversor-js">Temperature Conversor</a></li></ul><div><br></div><ul><li><a href="https://github.com/gabrielLV-BR/class-csharp-guessthenumber">Divisible Numbers</a></li></ul><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-28 15:08:40 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1774989820</guid>
      </item>
      <item>
         <title></title>
         <author>gabriellovato</author>
         <link>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1775263084</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/789858316/2a60ec0361244b50b204ded7472bc909/IFs_Explanation_3.mp3" />
         <pubDate>2021-09-28 16:27:08 UTC</pubDate>
         <guid>https://padlet.com/emaildofe0/rza3rb5kpmhe0mlh/wish/1775263084</guid>
      </item>
   </channel>
</rss>
