<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Data Visualisation &amp; Analysis</title>
  
  <subtitle>Lorem ipsum</subtitle>
  <link href="/atom.xml" rel="self"/>
  
  <link href="https://kellytang.github.io/"/>
  <updated>2017-11-09T01:22:48.586Z</updated>
  <id>https://kellytang.github.io/</id>
  
  <author>
    <name>Kelly Q. Tang</name>
    
  </author>
  
  <generator uri="http://hexo.io/">Hexo</generator>
  
  <entry>
    <title>Which US airlines were less delayed?</title>
    <link href="https://kellytang.github.io/2017/11/07/US-airlines-less-delayed/"/>
    <id>https://kellytang.github.io/2017/11/07/US-airlines-less-delayed/</id>
    <published>2017-11-06T13:00:00.000Z</published>
    <updated>2017-11-09T01:22:48.586Z</updated>
    
    <content type="html"><![CDATA[<p>Residuals of arrival and departure delays for flights departing from NYC in 2013, as calculated by <strong>(mean carrier delay per destination) - (mean airport delay)</strong>. This is done to disentangle the influence of good/bad airports on delays.</p><p>Each point represents a specific airport destination for that carrier. Lower values are better.</p><p>A summary of the above chart using weighted means is below.</p><center><img src="/2017/11/07/US-airlines-less-delayed/nycflights-summary-by-carrier.png" alt="nycflights-summary-by-carrier.png" title=""></center><blockquote><p><strong>Main tools used:</strong> R, tidyverse + <a href="https://cran.rstudio.com/web/packages/nycflights13/index.html" target="_blank" rel="external">nycflights13</a> data package<br><strong>How they were used:</strong> I explored, filtered, transformed, and visualised the data. Particular filters used include</p><ul><li>Removing cancelled flights</li><li>Removing destinations visited by less than 3 carriers (improving the residual plot)</li><li>Removing carrier-destination pairs which occurred 10 or less times in the original data (improving the plot as many of these had extreme residuals). With these gone the mean tally went from <code>1258</code> to <code>1446</code>.</li></ul></blockquote>]]></content>
    
    <summary type="html">
    
      
      
        &lt;p&gt;Residuals of arrival and departure delays for flights departing from NYC in 2013, as calculated by &lt;strong&gt;(mean carrier delay per destin
      
    
    </summary>
    
    
      <category term="Transport" scheme="https://kellytang.github.io/tags/Transport/"/>
    
      <category term="United States" scheme="https://kellytang.github.io/tags/United-States/"/>
    
  </entry>
  
  <entry>
    <title>Hospital beds per capita in the Asia-Pacific</title>
    <link href="https://kellytang.github.io/2017/10/24/Hospital-beds-per-capita-Asia-Pacific/"/>
    <id>https://kellytang.github.io/2017/10/24/Hospital-beds-per-capita-Asia-Pacific/</id>
    <published>2017-10-23T13:00:00.000Z</published>
    <updated>2017-11-09T01:19:25.963Z</updated>
    
    <content type="html"><![CDATA[<p>Trends in hospital bed numbers, as a function of population, in five countries in the Asia-Pacific.</p><h2 id="australia-a-closer-look"><a class="markdownIt-Anchor" href="#australia-a-closer-look"></a> Australia: A closer look</h2><center><img src="/2017/10/24/Hospital-beds-per-capita-Asia-Pacific/ausBedsPer1000.png" alt="ausBedsPer1000.png" title=""></center><p>Hospital beds per capita have been in steady decline in Australia since 1960, with a small period of rise in the mid-1970s. This has been partly a natural consequence of population growth, and partly due to a marked cutting back of hospital beds in between 1980-2000. Since the turn of the century, however, there has been a renewed investment in hospital beds, as depicted in the following graph. This investment has not been sufficient to reverse the continued decline in hospital beds per person.</p><center><img src="/2017/10/24/Hospital-beds-per-capita-Asia-Pacific/ausBedsTotal.png" alt="ausBedsTotal.png" title=""></center><blockquote><p><strong>Main tools:</strong> R, tidyverse<br><strong>How they were used:</strong> I explored, tidied, and visualised the data.</p><p><a href="http://jfly.iam.u-tokyo.ac.jp/color/#pallet" target="_blank" rel="external">Colourblind-friendly.</a></p></blockquote> ]]></content>
    
    <summary type="html">
    
      
      
        &lt;p&gt;Trends in hospital bed numbers, as a function of population, in five countries in the Asia-Pacific.&lt;/p&gt;
&lt;h2 id=&quot;australia-a-closer-look&quot;&gt;
      
    
    </summary>
    
    
      <category term="Health" scheme="https://kellytang.github.io/tags/Health/"/>
    
      <category term="Australia" scheme="https://kellytang.github.io/tags/Australia/"/>
    
      <category term="China" scheme="https://kellytang.github.io/tags/China/"/>
    
      <category term="Korea" scheme="https://kellytang.github.io/tags/Korea/"/>
    
      <category term="Japan" scheme="https://kellytang.github.io/tags/Japan/"/>
    
      <category term="India" scheme="https://kellytang.github.io/tags/India/"/>
    
  </entry>
  
  <entry>
    <title>Debugging</title>
    <link href="https://kellytang.github.io/2017/10/22/debugging/"/>
    <id>https://kellytang.github.io/2017/10/22/debugging/</id>
    <published>2017-10-22T05:52:49.910Z</published>
    <updated>2017-10-27T05:57:01.157Z</updated>
    
    <content type="html"><![CDATA[<h2 id="java-fizzbuzz-original"><a class="markdownIt-Anchor" href="#java-fizzbuzz-original"></a> Java: FizzBuzz original</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div><div class="line">11</div><div class="line">12</div><div class="line">13</div><div class="line">14</div><div class="line">15</div><div class="line">16</div><div class="line">17</div><div class="line">18</div><div class="line">19</div><div class="line">20</div><div class="line">21</div><div class="line">22</div></pre></td><td class="code"><pre><div class="line">import java.util.Scanner;</div><div class="line"></div><div class="line">public class FizzBuzz &#123;</div><div class="line"></div><div class="line">  public static void main (String[] args) &#123;</div><div class="line"></div><div class="line">    int n = 100;</div><div class="line">    for (int i = 1; i &lt;= n; i++) &#123;</div><div class="line"></div><div class="line">      if (i % 3 == 0 &amp;&amp; i % 5 == 0) &#123;</div><div class="line">        System.out.println(&quot;FizzBuzz&quot;);</div><div class="line">      &#125; else if (i % 5 == 0) &#123;</div><div class="line">        System.out.println(&quot;Buzz&quot;);</div><div class="line">      &#125; else if (i % 3 == 0) &#123;</div><div class="line">        System.out.println(&quot;Fizz&quot;);</div><div class="line">      &#125; else &#123;</div><div class="line">        System.out.println(i);</div><div class="line">      &#125;</div><div class="line"></div><div class="line">    &#125;</div><div class="line">  &#125;</div><div class="line">&#125;</div></pre></td></tr></table></figure><p>Language has not been declared.<br>As you can see there is an unusual section of whitespace in the codeblock. Looks like this on my local machine: <a href="https://imgur.com/a/7sph0" target="_blank" rel="external">https://imgur.com/a/7sph0</a></p><h2 id="java-fizzbuzz-original-2"><a class="markdownIt-Anchor" href="#java-fizzbuzz-original-2"></a> Java: FizzBuzz original</h2><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div><div class="line">11</div><div class="line">12</div><div class="line">13</div><div class="line">14</div><div class="line">15</div><div class="line">16</div><div class="line">17</div><div class="line">18</div><div class="line">19</div><div class="line">20</div><div class="line">21</div><div class="line">22</div></pre></td><td class="code"><pre><div class="line"><span class="keyword">import</span> java.util.Scanner;</div><div class="line"></div><div class="line"><span class="keyword">public</span> <span class="class"><span class="keyword">class</span> <span class="title">FizzBuzz</span> </span>&#123;</div><div class="line"></div><div class="line">  <span class="function"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">void</span> <span class="title">main</span> <span class="params">(String[] args)</span> </span>&#123;</div><div class="line"></div><div class="line">    <span class="keyword">int</span> n = <span class="number">100</span>;</div><div class="line">    <span class="keyword">for</span> (<span class="keyword">int</span> i = <span class="number">1</span>; i &lt;= n; i++) &#123;</div><div class="line"></div><div class="line">      <span class="keyword">if</span> (i % <span class="number">3</span> == <span class="number">0</span> &amp;&amp; i % <span class="number">5</span> == <span class="number">0</span>) &#123;</div><div class="line">        System.out.println(<span class="string">"FizzBuzz"</span>);</div><div class="line">      &#125; <span class="keyword">else</span> <span class="keyword">if</span> (i % <span class="number">5</span> == <span class="number">0</span>) &#123;</div><div class="line">        System.out.println(<span class="string">"Buzz"</span>);</div><div class="line">      &#125; <span class="keyword">else</span> <span class="keyword">if</span> (i % <span class="number">3</span> == <span class="number">0</span>) &#123;</div><div class="line">        System.out.println(<span class="string">"Fizz"</span>);</div><div class="line">      &#125; <span class="keyword">else</span> &#123;</div><div class="line">        System.out.println(i);</div><div class="line">      &#125;</div><div class="line"></div><div class="line">    &#125;</div><div class="line">  &#125;</div><div class="line">&#125;</div></pre></td></tr></table></figure><p>Language has been declared (Java). Looks fine.</p><h2 id="java-fizzbuzz-extended"><a class="markdownIt-Anchor" href="#java-fizzbuzz-extended"></a> Java: FizzBuzz extended</h2><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div><div class="line">11</div><div class="line">12</div><div class="line">13</div><div class="line">14</div><div class="line">15</div><div class="line">16</div><div class="line">17</div><div class="line">18</div><div class="line">19</div><div class="line">20</div><div class="line">21</div><div class="line">22</div><div class="line">23</div><div class="line">24</div><div class="line">25</div><div class="line">26</div><div class="line">27</div><div class="line">28</div><div class="line">29</div><div class="line">30</div><div class="line">31</div><div class="line">32</div></pre></td><td class="code"><pre><div class="line"><span class="keyword">import</span> java.util.Scanner;</div><div class="line"></div><div class="line"><span class="keyword">public</span> <span class="class"><span class="keyword">class</span> <span class="title">FizzBuzz</span> </span>&#123;</div><div class="line"></div><div class="line">  <span class="function"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">void</span> <span class="title">main</span> <span class="params">(String[] args)</span> </span>&#123;</div><div class="line"></div><div class="line">    System.out.println(<span class="string">"I will print the numbers 1 to n using the FizzBuzz rules. Choose n: "</span>);</div><div class="line">    Scanner in = <span class="keyword">new</span> Scanner(System.in);</div><div class="line">    System.out.print(<span class="string">"&gt; "</span>);</div><div class="line">    n = in.nextInt();</div><div class="line"></div><div class="line">    <span class="keyword">while</span> (n &lt; <span class="number">1</span>) &#123;</div><div class="line">      System.out.println(<span class="string">"Choose a valid n which lies in the positive real integers."</span>);</div><div class="line">      System.out.print(<span class="string">"&gt; "</span>);</div><div class="line">      n = in.nextInt();</div><div class="line">    &#125;</div><div class="line"></div><div class="line">    <span class="keyword">for</span> (<span class="keyword">int</span> i = <span class="number">1</span>; i &lt;= n; i++) &#123;</div><div class="line"></div><div class="line">      <span class="keyword">if</span> (i % <span class="number">3</span> == <span class="number">0</span> &amp;&amp; i % <span class="number">5</span> == <span class="number">0</span>) &#123;</div><div class="line">        System.out.println(<span class="string">"FizzBuzz"</span>);</div><div class="line">      &#125; <span class="keyword">else</span> <span class="keyword">if</span> (i % <span class="number">5</span> == <span class="number">0</span>) &#123;</div><div class="line">        System.out.println(<span class="string">"Buzz"</span>);</div><div class="line">      &#125; <span class="keyword">else</span> <span class="keyword">if</span> (i % <span class="number">3</span> == <span class="number">0</span>) &#123;</div><div class="line">        System.out.println(<span class="string">"Fizz"</span>);</div><div class="line">      &#125; <span class="keyword">else</span> &#123;</div><div class="line">        System.out.println(i);</div><div class="line">      &#125;</div><div class="line"></div><div class="line">    &#125;</div><div class="line">  &#125;</div><div class="line">&#125;</div></pre></td></tr></table></figure><p>Language (Java) has been declared and scrollboxes triggered.<br>As you can see the horizontal scrollboxes are broken. Looks like this on my local machine: <a href="https://imgur.com/ehcGaPF" target="_blank" rel="external">https://imgur.com/ehcGaPF</a></p><p>I could not find equivalent examples in either HTML5Up’s demo or your demo.</p><p>Rounded corners are broken in all examples and both browsers (Chrome and Edge).</p><h2 id="blockquotes"><a class="markdownIt-Anchor" href="#blockquotes"></a> Blockquotes</h2><p>Spacing broken, regardless of whether I use <code>&gt; Quote</code> or <code>% blockquote % / % endblockquote %</code> (with curly braces). Looks like this: <a href="https://imgur.com/GAdzyDW" target="_blank" rel="external">https://imgur.com/GAdzyDW</a></p><blockquote><p>Lorem ipsum<br>Lorem ipsum<br>Lorem ipsum</p></blockquote><p>Compare example from HTML5Up’s demo: <a href="https://imgur.com/qkLvmGb" target="_blank" rel="external">https://imgur.com/qkLvmGb</a><br>Your GitHub repository and helloworld pages have no equivalent example (I checked).</p><p>The spacing between the end of an image and text is off as well (although I am sure I could fix this by brushing up on HTML/CSS): <a href="https://imgur.com/hJxSTrv" target="_blank" rel="external">https://imgur.com/hJxSTrv</a></p><p>Thanks for taking the time to go through all this.</p><p>All examples done in Chrome. The same issues persist in Edge too.</p>]]></content>
    
    <summary type="html">
    
      
      
        &lt;h2 id=&quot;java-fizzbuzz-original&quot;&gt;&lt;a class=&quot;markdownIt-Anchor&quot; href=&quot;#java-fizzbuzz-original&quot;&gt;&lt;/a&gt; Java: FizzBuzz original&lt;/h2&gt;
&lt;figure class=
      
    
    </summary>
    
    
  </entry>
  
  <entry>
    <title>Hello World</title>
    <link href="https://kellytang.github.io/2017/10/22/hello-world%20-%20Copy%20(2)/"/>
    <id>https://kellytang.github.io/2017/10/22/hello-world - Copy (2)/</id>
    <published>2017-10-22T05:52:47.019Z</published>
    <updated>2017-10-22T00:39:22.184Z</updated>
    
    <content type="html"><![CDATA[<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p><h2 id="quick-start"><a class="markdownIt-Anchor" href="#quick-start"></a> Quick Start</h2><h3 id="create-a-new-post"><a class="markdownIt-Anchor" href="#create-a-new-post"></a> Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo new <span class="string">"My New Post"</span></div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/writing.html" target="_blank" rel="external">Writing</a></p><h3 id="run-server"><a class="markdownIt-Anchor" href="#run-server"></a> Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo server</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/server.html" target="_blank" rel="external">Server</a></p><h3 id="generate-static-files"><a class="markdownIt-Anchor" href="#generate-static-files"></a> Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo generate</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/generating.html" target="_blank" rel="external">Generating</a></p><h3 id="deploy-to-remote-sites"><a class="markdownIt-Anchor" href="#deploy-to-remote-sites"></a> Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo deploy</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/deployment.html" target="_blank" rel="external">Deployment</a></p>]]></content>
    
    <summary type="html">
    
      
      
        &lt;p&gt;Welcome to &lt;a href=&quot;https://hexo.io/&quot; target=&quot;_blank&quot; rel=&quot;external&quot;&gt;Hexo&lt;/a&gt;! This is your very first post. Check &lt;a href=&quot;https://hexo.
      
    
    </summary>
    
    
  </entry>
  
  <entry>
    <title>Hello World</title>
    <link href="https://kellytang.github.io/2017/10/22/hello-world%20-%20Copy/"/>
    <id>https://kellytang.github.io/2017/10/22/hello-world - Copy/</id>
    <published>2017-10-22T05:52:46.258Z</published>
    <updated>2017-10-22T00:39:22.184Z</updated>
    
    <content type="html"><![CDATA[<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p><h2 id="quick-start"><a class="markdownIt-Anchor" href="#quick-start"></a> Quick Start</h2><h3 id="create-a-new-post"><a class="markdownIt-Anchor" href="#create-a-new-post"></a> Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo new <span class="string">"My New Post"</span></div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/writing.html" target="_blank" rel="external">Writing</a></p><h3 id="run-server"><a class="markdownIt-Anchor" href="#run-server"></a> Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo server</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/server.html" target="_blank" rel="external">Server</a></p><h3 id="generate-static-files"><a class="markdownIt-Anchor" href="#generate-static-files"></a> Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo generate</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/generating.html" target="_blank" rel="external">Generating</a></p><h3 id="deploy-to-remote-sites"><a class="markdownIt-Anchor" href="#deploy-to-remote-sites"></a> Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo deploy</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/deployment.html" target="_blank" rel="external">Deployment</a></p>]]></content>
    
    <summary type="html">
    
      
      
        &lt;p&gt;Welcome to &lt;a href=&quot;https://hexo.io/&quot; target=&quot;_blank&quot; rel=&quot;external&quot;&gt;Hexo&lt;/a&gt;! This is your very first post. Check &lt;a href=&quot;https://hexo.
      
    
    </summary>
    
    
  </entry>
  
  <entry>
    <title>Hello World</title>
    <link href="https://kellytang.github.io/2017/10/22/hello-world/"/>
    <id>https://kellytang.github.io/2017/10/22/hello-world/</id>
    <published>2017-10-22T00:39:22.183Z</published>
    <updated>2017-10-22T00:39:22.184Z</updated>
    
    <content type="html"><![CDATA[<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p><h2 id="quick-start"><a class="markdownIt-Anchor" href="#quick-start"></a> Quick Start</h2><h3 id="create-a-new-post"><a class="markdownIt-Anchor" href="#create-a-new-post"></a> Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo new <span class="string">"My New Post"</span></div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/writing.html" target="_blank" rel="external">Writing</a></p><h3 id="run-server"><a class="markdownIt-Anchor" href="#run-server"></a> Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo server</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/server.html" target="_blank" rel="external">Server</a></p><h3 id="generate-static-files"><a class="markdownIt-Anchor" href="#generate-static-files"></a> Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo generate</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/generating.html" target="_blank" rel="external">Generating</a></p><h3 id="deploy-to-remote-sites"><a class="markdownIt-Anchor" href="#deploy-to-remote-sites"></a> Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo deploy</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/deployment.html" target="_blank" rel="external">Deployment</a></p>]]></content>
    
    <summary type="html">
    
      
      
        &lt;p&gt;Welcome to &lt;a href=&quot;https://hexo.io/&quot; target=&quot;_blank&quot; rel=&quot;external&quot;&gt;Hexo&lt;/a&gt;! This is your very first post. Check &lt;a href=&quot;https://hexo.
      
    
    </summary>
    
    
  </entry>
  
  <entry>
    <title>Hello World</title>
    <link href="https://kellytang.github.io/2017/10/22/hello-world%20-%20Copy%20(3)/"/>
    <id>https://kellytang.github.io/2017/10/22/hello-world - Copy (3)/</id>
    <published>2017-10-21T13:00:00.000Z</published>
    <updated>2017-11-07T06:09:38.026Z</updated>
    
    <content type="html"><![CDATA[<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="external">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/" target="_blank" rel="external">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html" target="_blank" rel="external">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues" target="_blank" rel="external">GitHub</a>.</p><h2 id="quick-start"><a class="markdownIt-Anchor" href="#quick-start"></a> Quick Start</h2><h3 id="create-a-new-post"><a class="markdownIt-Anchor" href="#create-a-new-post"></a> Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo new <span class="string">"My New Post"</span></div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/writing.html" target="_blank" rel="external">Writing</a></p><h3 id="run-server"><a class="markdownIt-Anchor" href="#run-server"></a> Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo server</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/server.html" target="_blank" rel="external">Server</a></p><h3 id="generate-static-files"><a class="markdownIt-Anchor" href="#generate-static-files"></a> Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo generate</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/generating.html" target="_blank" rel="external">Generating</a></p><h3 id="deploy-to-remote-sites"><a class="markdownIt-Anchor" href="#deploy-to-remote-sites"></a> Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">$ hexo deploy</div></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/deployment.html" target="_blank" rel="external">Deployment</a></p>]]></content>
    
    <summary type="html">
    
      
      
        &lt;p&gt;Welcome to &lt;a href=&quot;https://hexo.io/&quot; target=&quot;_blank&quot; rel=&quot;external&quot;&gt;Hexo&lt;/a&gt;! This is your very first post. Check &lt;a href=&quot;https://hexo.
      
    
    </summary>
    
    
  </entry>
  
</feed>
