<?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: Eoin Vaughan</title>
    <description>The latest articles on DEV Community by Eoin Vaughan (@eoinvaughan1).</description>
    <link>https://dev.to/eoinvaughan1</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%2F303727%2F809c4eec-824d-4b6a-b61e-21e4c65fc1e0.jpg</url>
      <title>DEV Community: Eoin Vaughan</title>
      <link>https://dev.to/eoinvaughan1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eoinvaughan1"/>
    <language>en</language>
    <item>
      <title>Markdown Essentials</title>
      <dc:creator>Eoin Vaughan</dc:creator>
      <pubDate>Thu, 09 Jan 2020 05:25:51 +0000</pubDate>
      <link>https://dev.to/eoinvaughan1/markdown-essentials-4b7e</link>
      <guid>https://dev.to/eoinvaughan1/markdown-essentials-4b7e</guid>
      <description>&lt;p&gt;My first post was necessary, otherwise no half pretty posts haha. I would appreciate if anybody could recommend how they resize their images to follow the cover image dimensions. &lt;/p&gt;

&lt;h1&gt;
  
  
  Markdown Language
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Overview
&lt;/h2&gt;

&lt;p&gt;It is a lightweight markup language like HTML (No Tags) with a plain formatting syntax. The ease of use and readability are seen as its main advantages. &lt;/p&gt;

&lt;p&gt;Markdown keeps positioning and uses special characters/punctuation marks to format stuff like &lt;strong&gt;bold&lt;/strong&gt;, &lt;em&gt;italics&lt;/em&gt;, lists etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Uses&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It can be converted into HTML/XHTML&lt;/li&gt;
&lt;li&gt;Use with README.md files (Github etc, Documentation on a Repo page)&lt;/li&gt;
&lt;li&gt;Forums &amp;amp; Blogs (Pieces of content)&lt;/li&gt;
&lt;li&gt;Static Site Generators (Gatsby that uses React framework)&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Core Markdown&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Headings&lt;/td&gt;
&lt;td&gt;Lists&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Block of code&lt;/td&gt;
&lt;td&gt;Images&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Emphasis&lt;/td&gt;
&lt;td&gt;Block-quotes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Links(Inline &amp;amp; Reference)&lt;/td&gt;
&lt;td&gt;Horizontal rules&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Paragraphs&lt;/td&gt;
&lt;td&gt;Code &amp;amp; Syntax highlighting&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;em&gt;Extras&lt;/em&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extensions allow for extra functionality with using markdown, like GitHub has extra extensions that allow for tables and task lists to be generated.&lt;/li&gt;
&lt;li&gt;Text Editors have extensions that allow for you to preview the markdown file you have generated (VSCode (Auto-Open Markdown Preview), Atom, SublimeText etc.)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Basics
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Italics
&lt;/h4&gt;

&lt;p&gt;Single (Asterisks or Underscore)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;_italics_
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;italics&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Emphasis
&lt;/h4&gt;

&lt;p&gt;Double (Asterisks or Underscore)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Bold**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;bold boy&lt;/strong&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Strikethrough
&lt;/h4&gt;

&lt;p&gt;Double Tilda&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;~~Computer says NO!~~
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;del&gt;Computer says NO!&lt;/del&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Horizontal rule (line)
&lt;/h4&gt;

&lt;p&gt;Triple underscore, hyphens or underscores&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;---

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;Add double tildas to get two Horizontal rules, aligned to the left, shortened also so may be used for sub section breakup. Good to know (My Mistake found it, sweet!)&lt;/p&gt;

&lt;p&gt;&lt;del&gt;____________________________________&lt;/del&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Escape special characters,
&lt;/h4&gt;

&lt;p&gt;Allows you to include them as normal in your document, see below how I used the \ escape character to include the HTML tag in the header section.&lt;/p&gt;

&lt;h3&gt;
  
  
  Headers
&lt;/h3&gt;

&lt;p&gt;Like headers in HTML (&lt;strong&gt;# = &amp;lt;/h1&amp;gt; tag&lt;/strong&gt;)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#header one
## header two
### header three
#### header four
##### header five
###### header six
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h1&gt;
  
  
  header one
&lt;/h1&gt;

&lt;h2&gt;
  
  
  header two
&lt;/h2&gt;

&lt;h3&gt;
  
  
  header three
&lt;/h3&gt;

&lt;h4&gt;
  
  
  header four
&lt;/h4&gt;

&lt;h5&gt;
  
  
  header five
&lt;/h5&gt;

&lt;h6&gt;
  
  
  header six
&lt;/h6&gt;

&lt;h3&gt;
  
  
  links (Inline &amp;amp; Reference)
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Inline Link
&lt;/h4&gt;

&lt;p&gt;Square brackets &amp;amp; Curly parentheses&lt;br&gt;
[Text for link](link itself, "Title"(Optional, for hovering over purposes(&lt;strong&gt;Doesn't seem to work here, if someone has a solution let me know&lt;/strong&gt;))&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[My GitHub](https://github.com/turbodaly152 "GitHub Profile")

[**My LinkedIn**](https://www.linkedin.com/in/eoin-vaughan-6a929aa5/ "Eoin Vaughan LinkedIn Profile")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://github.com/turbodaly152" rel="noopener noreferrer"&gt;My GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.linkedin.com/in/eoin-vaughan-6a929aa5/" rel="noopener noreferrer"&gt;&lt;strong&gt;My LinkedIn&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Reference Link
&lt;/h4&gt;

&lt;p&gt;Place the reference at the bottom of the document(hidden), very useful if you want to use the same link a few times in a markdown doc.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Click here for [BC Parks][BCParks]

\[BCParks]: http://www.env.gov.bc.ca/bcparks/ (Will be hidden, only visible in source markdown code)

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Click here for &lt;a href="http://www.env.gov.bc.ca/bcparks/" rel="noopener noreferrer"&gt;BC Parks&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Images(Inline &amp;amp; Reference)
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Inline Image
&lt;/h4&gt;

&lt;p&gt;Exclamation mark !&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;![Image of the price of Babybel here in Vancouver, Crazy](https://photos.google.com/photo/AF1QipNu6mpDnJNiMfNvAQGm5xHXuIRoxmcV3ucHvgr3)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fphotos.google.com%2Fphoto%2FAF1QipNu6mpDnJNiMfNvAQGm5xHXuIRoxmcV3ucHvgr3" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fphotos.google.com%2Fphoto%2FAF1QipNu6mpDnJNiMfNvAQGm5xHXuIRoxmcV3ucHvgr3" alt="Image of the price of Babybel here in Vancouver, Crazy"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Reference Image
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;![Sea the stars][Best horse ever]
![Frankel][Second best horse ever]

\[Best horse ever]:https://tuesdayshorse.files.wordpress.com/2009/10/seathestars.jpg

\[Second best horse ever]: https://images.ctfassets.net/5v3ask2aw4ox/PA-2.11282730/ff78659756ed4b284288ef544f5a727d/2.11282730.jpg
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftuesdayshorse.files.wordpress.com%2F2009%2F10%2Fseathestars.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftuesdayshorse.files.wordpress.com%2F2009%2F10%2Fseathestars.jpg" alt="Sea the stars"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimages.ctfassets.net%2F5v3ask2aw4ox%2FPA-2.11282730%2Fff78659756ed4b284288ef544f5a727d%2F2.11282730.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimages.ctfassets.net%2F5v3ask2aw4ox%2FPA-2.11282730%2Fff78659756ed4b284288ef544f5a727d%2F2.11282730.jpg" alt="Frankel"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  Block-quotes
&lt;/h3&gt;

&lt;p&gt;Use of carat character &amp;gt; results in a highlighted background with a border to the left of the block-quote&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt;"To infinity and beyond" Buzz Lightyear
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;"To infinity and beyond" Buzz Lightyear&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Span multiple paragraphs, Block-quotes
&lt;/h4&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;gt;Hello to you
&amp;gt;And goodbye
&amp;gt;to you
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;Hello to you&lt;br&gt;
And goodbye&lt;br&gt;
to you&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Lists (Ordered and Unordered)
&lt;/h3&gt;

&lt;p&gt;Use asterisk (with space) for unordered lists &lt;br&gt;
&lt;strong&gt;AND&lt;/strong&gt; &lt;br&gt;
\1. for ordered lists&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* Chocolate fingers
* Chocolate buttons
* Chocolate digestives
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Chocolate fingers&lt;/li&gt;
&lt;li&gt;Chocolate buttons&lt;/li&gt;
&lt;li&gt;Chocolate digestives
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. Chocolate fingers
1. Chocolate buttons
1. Chocolate digestives
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Chocolate fingers&lt;/li&gt;
&lt;li&gt;Chocolate buttons&lt;/li&gt;
&lt;li&gt;Chocolate digestives&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Can use indentation to have nested list items, &lt;strong&gt;must find out how to make indentation default to 1.1, 1,2, 1.1.2 etc.?&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. Chocolate fingers
 1. Chocolate buttons
1. Chocolate digestives
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Chocolate fingers

&lt;ol&gt;
&lt;li&gt;Chocolate buttons&lt;/li&gt;
&lt;/ol&gt;


&lt;/li&gt;

&lt;li&gt;Chocolate digestives&lt;/li&gt;

&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Chocolate fingers

&lt;ul&gt;
&lt;li&gt;Chocolate buttons&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Chocolate digestives&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;To include text within a bulletpoint  you may include it underneath with 2 indentations&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

* Chocolate fingers

* Chocolate buttons
* Chocolate digestives
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>Me, Myself and Irene</title>
      <dc:creator>Eoin Vaughan</dc:creator>
      <pubDate>Thu, 09 Jan 2020 05:22:55 +0000</pubDate>
      <link>https://dev.to/eoinvaughan1/me-myself-and-irene-4hj9</link>
      <guid>https://dev.to/eoinvaughan1/me-myself-and-irene-4hj9</guid>
      <description>&lt;h1&gt;
  
  
  Watch me grow
&lt;/h1&gt;

&lt;p&gt;Hey everybody, this is my first post on this platform. My hope is to document my learning all in one place and figured this would be a great place for that.&lt;/p&gt;

&lt;p&gt;I'm working at present as a data manager and I'm really feeling that I need to add many more strings to my bow, so I have enrolled in a 10 week part time data scientist role here in Vancouver and it starts in 2 weeks. So I have dived into prepping for it since the new year. I'm excited to get hands on with assignments and projects that hopefully will help me gain a better understanding of what all this data collection is for.&lt;/p&gt;

&lt;p&gt;The course will predominately use python for programming which is great as I know the community for this language are awesome. I hope to ask lots of questions on the topic and read the many great posts on the subject here.&lt;/p&gt;

&lt;p&gt;Thanks in advance as I know I will be helped out a lot on my way, and hopefully down the line repay that to other newbies.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
