<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: John Doe</title>
    <description>The latest articles on DEV Community by John Doe (@ardo).</description>
    <link>https://dev.to/ardo</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F477479%2Fbc364855-33d4-4f24-a42f-b506c5995be5.png</url>
      <title>DEV Community: John Doe</title>
      <link>https://dev.to/ardo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ardo"/>
    <language>en</language>
    <item>
      <title>Network &amp; Internet basics.</title>
      <dc:creator>John Doe</dc:creator>
      <pubDate>Mon, 16 Nov 2020 10:38:05 +0000</pubDate>
      <link>https://dev.to/ardo/network-internet-basics-1lep</link>
      <guid>https://dev.to/ardo/network-internet-basics-1lep</guid>
      <description>&lt;p&gt;Network &amp;amp; Internet Basics&lt;/p&gt;

&lt;p&gt;The Internet is a large network of computers that communicate all together, when two computers connect together they connect with either an ethernet cable or a wireless wifi signal that connects them. &lt;/p&gt;

&lt;p&gt;It's like a road that connects you from your house to a shop, servers are highly functional computers that are connected to the internet. Servers store webpages, apps, files and etc in their SSD harddrive. &lt;br&gt;
Servers are like the shop you want to buy something from, &lt;/p&gt;

&lt;p&gt;Data centers are big buildings with many servers or highly functional computers, that store the data in the servers. We have a few here in Iceland and it seems like it's a growing business here since we have a lot of space and a cold climate, which helps with keeping the centers cool, so they don't need to use a lot of energy to cool it down.&lt;/p&gt;

&lt;p&gt;Everything connected to the internet directly or indirectly has an Ip address, so servers, clients, routers, cell phones, and so on.&lt;br&gt;
Like Google server has a special protocol address, or IP address it has 72.14.205.100 and your personal computer has one as well. That's why DNS was invented or Domain Name Server, it's like a huge phonebook that connects all the names to the IP addresses, so every time you hit Google.com you are directed to the 72.14.205.100  IP address.&lt;/p&gt;

&lt;p&gt;Our personal computers are not servers, they are clients that are connected to an internet service provider like Vodafone or Síminn and they connect us to the internet.&lt;/p&gt;

&lt;p&gt;When information or data is sent through the internet the information is usually broken down into smaller pieces or packets as they call it.&lt;/p&gt;

&lt;p&gt;Anywhere the internet intersects there is a Router, Routers direct your packets where to go. Every time you visit a webpage there may have been 10-15 routers direct you on the way.&lt;/p&gt;

&lt;p&gt;•Your internet connection:&lt;br&gt;
 Allows you to send and receive data on the web. It's basically like the street between your house and the shop.&lt;/p&gt;

&lt;p&gt;•TCP/IP: &lt;br&gt;
Transmission Control Protocol and Internet Protocol are communication protocols that define how data should travel across the internet. This is like the transport mechanisms that let you place an order, go to the shop, and buy your goods. In our example, this is like a car or a bike (or however else you might get around).&lt;/p&gt;

&lt;p&gt;•DNS: &lt;br&gt;
Domain Name Servers are like an address book for websites. When you type a web address in your browser, the browser looks at the DNS to find the website's real address before it can retrieve the website. The browser needs to find out which server the website lives on, so it can send HTTP messages to the right place (see below). This is like looking up the address of the shop so you can access it.&lt;/p&gt;

&lt;p&gt;•HTTP: &lt;br&gt;
Hypertext Transfer Protocol is an application protocol that defines a language for clients and servers to speak to each other. This is like the language you use to order your goods.&lt;/p&gt;

&lt;p&gt;•Component files:&lt;br&gt;
 A website is made up of many different files, which are like the different parts of the goods you buy from the shop. These files come in two main types:&lt;br&gt;
o   Code files: Websites are built primarily from HTML, CSS, and JavaScript, though you'll meet other technologies a bit later.&lt;br&gt;
o   Assets: This is a collective name for all the other stuff that makes up a website, such as images, music, video, Word documents, and PDFs.&lt;/p&gt;

&lt;p&gt;(This information was taken from „www.developer.mozilla.org“)&lt;/p&gt;

&lt;p&gt;When you type in a webpage, your browser goes to the DNS server(„phonebook“) which looks up and finds the Ip address of the server that is hosting that website you want to look at.&lt;/p&gt;

&lt;p&gt;There are two types of hosting, traditional hosting that's in servers, inside data centers and the other one is in the cloud or called cloud hosting, like in Github. Cloud hosting has been getting a very good reputation for its versatile scaling options, data security, mobility control, efficiency and cost reduction, disaster recovery. Many web owners are moving their webpages from traditional hosting to cloud-based hosting these days.&lt;/p&gt;

&lt;p&gt;After the browser has found the IP address it sends an „HTTP“  message request to the server for a copy of that webpage to the client. This message and all the data is sent between clients and servers on the internet using the TCP/IP. After the servers accept requests it sends all the files in packets back to the client. &lt;br&gt;
Which then we can finally look up, the webpage he or we typed in.&lt;/p&gt;

</description>
      <category>student</category>
    </item>
    <item>
      <title>Design theory</title>
      <dc:creator>John Doe</dc:creator>
      <pubDate>Tue, 29 Sep 2020 20:02:59 +0000</pubDate>
      <link>https://dev.to/ardo/design-theory-5bi8</link>
      <guid>https://dev.to/ardo/design-theory-5bi8</guid>
      <description>&lt;p&gt;Design Theory&lt;/p&gt;

&lt;p&gt;Design is everywhere around us whether we notice it or not.  When making a design we are trying to bring a message or an emotion to a user/viewer. Great designs are clean, well-structured layouts that help the users to guide through its content in a comfortable way. Without design, life would be dull.&lt;/p&gt;

&lt;p&gt;Design theory based on a few design principles which are contrast, colour, alignment, Hierarchy, repetition and balance. If we apply these principles we are able to create a design that is visually appealing, well organized and hopefully user friendly which is our goal.&lt;/p&gt;

&lt;p&gt;Alignment&lt;br&gt;
Aligning graphics, paragraphs and other elements can be very important as it helps and guides the viewer where to look after each line, not to be confused where to look. This creates a visual connection between elements and simplifies the layout.&lt;/p&gt;

&lt;p&gt;Contrast:&lt;br&gt;
With contrast, you are able to control the eye, define the hierarchy, movement and meaning. Contrast can be created with colour, texture, size, value, etc. &lt;br&gt;
With contrast, you are also able to tell better stories within your frame.&lt;/p&gt;

&lt;p&gt;Hierarchy:&lt;br&gt;
Hierarchy adds structure to design so it can help the user, what to look and in what order. It creates a visual organisation, direction and can add emphasis on what´s important and what´s less important. It basically helps the viewer navigate through its content.&lt;/p&gt;

&lt;p&gt;Repetition:&lt;br&gt;
Repetition sounds boring but it’s not in design it can empower designs if used in the right way.  It is a way of capturing your user attention. There are three methods of repetition: repetition, patterns and rhythm. &lt;/p&gt;

&lt;p&gt;Balance:&lt;br&gt;
Balance in art is exactly what is sounds like, for example its way of ensuring one colour, size, shape or element doesn´t over power all the other ones.&lt;br&gt;
We have symmetrical balance as well as balance by tension.&lt;/p&gt;

&lt;p&gt;Colour theory:&lt;br&gt;
Colours have the power to affect our moods and provoke emotions.  😊&lt;/p&gt;

&lt;p&gt;Orange is refreshing and energetic and evokes creativity while blue is the colour of peace calm and serenity, as for elements in nature like ocean and sky they trigger a sense of tranquillity. Green is a lot in nature and symbolizes vitality, life and personal growth. &lt;br&gt;
Purple is rare in nature and people with more money used to wear as a sign of wealth. &lt;br&gt;
Same goes with all the other colours they can evoke a sense of feeling or emotion from a viewer.&lt;/p&gt;

&lt;p&gt;Colour theory based on three primary colours red, blue and yellow&lt;/p&gt;

&lt;p&gt;Secondary colours are purple, green and orange are created by mixing primary colours.&lt;br&gt;
Purple is made by red and blue, green is made by blue and yellow and orange is made by yellow and red.&lt;/p&gt;

&lt;p&gt;Then we have Tertiary colours which are made by mixing primary colours with secondary colours. By mixing: Red-Orange, Red-purple, Blue-purple, Blue-green, Yellow-green, yellow-orange.&lt;/p&gt;

&lt;p&gt;With all those colours and mixes they make the colour wheel. (see image).&lt;/p&gt;

&lt;p&gt;Complementary colours sit across from each other on the colour wheel. By putting two of these colours together create a great contrast and visual interest.&lt;/p&gt;

&lt;p&gt;Hue is the name of a colour red, blue, green, yellow and orange.&lt;br&gt;
Saturation is the intensity or purity of a hue. With higher saturation the brighter the colour is with less saturation the colour looks washed out of grey.&lt;br&gt;
Value is the degree of lightness or darkness of a hue. Values are divided into Shades, Tints and Tones.&lt;br&gt;
Shade is hue produced by adding black to a colour.&lt;br&gt;
Tint is hue produced by adding white to a colour and Tone is hue produced by adding grey to a colour.&lt;/p&gt;

&lt;p&gt;Colours can also have temperature:  Warm colours are red, orange and yellow while purple, blue and green are cool colours.&lt;/p&gt;

&lt;p&gt;So, with all those colours we make the exact same design from really boring design to very impressive design. Can make us feel happy, sad or get excited, so it´s very important we get some colour in our lives because they move us in a way.&lt;/p&gt;

&lt;p&gt;Design is something we create from the heart, so these principles are no more of guideline then a rule, that can help a designer make their work more effective.&lt;/p&gt;

&lt;p&gt;“Design is intelligence made visible.”  - Alina Wheeler&lt;br&gt;
“Make it simple but significant.” – Don Drap&lt;/p&gt;

</description>
      <category>design</category>
      <category>student</category>
      <category>colour</category>
      <category>theory</category>
    </item>
  </channel>
</rss>
