-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeed.xml
More file actions
75 lines (54 loc) · 4.2 KB
/
feed.xml
File metadata and controls
75 lines (54 loc) · 4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>The tinylittleblog</title>
<description>Frank is blogging now. On whatever will here to come, i don't know yet.
</description>
<link>http://fbehrens.github.io/</link>
<atom:link href="http://fbehrens.github.io/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Fri, 10 Jul 2015 14:01:31 +0200</pubDate>
<lastBuildDate>Fri, 10 Jul 2015 14:01:31 +0200</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>
<title>Hello World on Octopress 3/Jekyl</title>
<description><p>Hi, I am Frank !</p>
<p>I live in cologne and work in a big company doing computer stuff in the following languages.</p>
<div class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="nb">puts</span> <span class="s1">&#39;Hello World&#39;</span><span class="c1"># ruby</span></code></pre></div>
<div class="highlight"><pre><code class="language-fsharp" data-lang="fsharp"><span class="n">printfn</span> <span class="s">&quot;%S&quot;</span> <span class="s">&quot;Hello World&quot;</span><span class="c1">// fsharp</span></code></pre></div>
<div class="highlight"><pre><code class="language-powershell" data-lang="powershell"><span class="nb">write-host</span> <span class="s2">&quot;Hello&quot;</span> <span class="c"># powershell</span></code></pre></div>
<p>A lot of times I want to try out stuff from the internet,
and did not find working examples.</p>
<p>In my computer engeneering career, my ability increases as I developed my personal information sysytem, where I can document what I was doing and have learned.
So I am willing to share this with the word.</p>
<p>So right now, dear reader, I am setting up a blog,</p>
<h2 id="create-octopress-blog">Create Octopress Blog</h2>
<p>Octopress 3 is not really published, but seems to be working.</p>
<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="c"># install ruby</span>
ruby -v
<span class="c"># =&gt; ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-darwin14.0]</span>
gem install octopress
octopress new blog
<span class="nb">cd </span>blog
jekyll server</code></pre></div>
<h2 id="publish-it-to-githubio">publish it to github.io</h2>
<div class="highlight"><pre><code class="language-bash" data-lang="bash">gem install octopress-deploy
octopress deploy init <span class="c"># and modify _deploy.yml</span>
octopress build
octopress deploy</code></pre></div>
<p>You need to have an account on <a href="http://www.github.com">github</a> on create a <code>[user].github.io</code> repo
The <code>init</code> was not working for me so I did the initial setup manually.
* Create a <code>deploy.yaml</code> and modify it according to
* Copy the <code>_site</code> directory to <code>.deploy</code>
* link it to github
* Set alias <code>alias op='octopress'</code></p>
<p>Here it is.
bye for now</p>
<p>Frank</p>
</description>
<pubDate>Fri, 10 Jul 2015 14:29:48 +0200</pubDate>
<link>http://fbehrens.github.io/blog/2015/07/10/welcome-to-jekyll.html</link>
<guid isPermaLink="true">http://fbehrens.github.io/blog/2015/07/10/welcome-to-jekyll.html</guid>
<category>blog</category>
</item>
</channel>
</rss>