-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
66 lines (57 loc) · 2.71 KB
/
feed.xml
File metadata and controls
66 lines (57 loc) · 2.71 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
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Blog Name</title>
<subtitle>Blog subtitle</subtitle>
<id>http://blog.url.com/</id>
<link href="http://blog.url.com/"/>
<link href="http://blog.url.com/feed.xml" rel="self"/>
<updated>2013-11-04T20:23:00Z</updated>
<author>
<name>Blog Author</name>
</author>
<entry>
<title>ex1-Comments</title>
<link rel="alternate" href="/2013/11/04/ex1-comments.html"/>
<id>/2013/11/04/ex1-comments.html</id>
<published>2013-11-04T20:23:00Z</published>
<updated>2013-11-04T20:23:00Z</updated>
<author>
<name>Article Author</name>
</author>
<content type="html"><p><a href="/index.html"><img src="rubilicious.jpg" alt="rubilicious" /></a></p>
<h1 id="learn-ruby-the-hard-way">Learn Ruby the Hard Way</h1>
<h2 id="by-zed-shaw">by Zed Shaw</h2>
<h3 id="example-0--1httprubylearncodethehardwayorgbookex1html"><a href="http://ruby.learncodethehardway.org/book/ex1.html">Example 0 &amp; 1</a></h3>
<h4 id="nexthttpjendiamondgithubiolearnrubythehardwaylrthw-ex02html"><a href="http://jendiamond.github.io/learn_ruby_the_hard_way/lrthw-ex02.html">Next</a></h4>
<p><strong>Example 0 The Setup</strong></p>
<p>Create a folder/directory and label it learn_ruby_the_hard_way. Put all the examples you create in this file. Name your files ex01.rb, ex02.rb etc.</p>
<p>There are a lot of things that people don't remember were confusing or diffucult when they first started.</p>
<p><strong>Example 1 A Good 1st Program</strong></p>
<p>This is a great way to get started.
#puts is a method that will print a line then return to a new line
puts "hello world"
puts "hello from jen diamond"
#print is a method that prints a line but does not move to a new line
print "hello printy"
puts 'hello printier'
# The octothorpe, pound or hash tag comments out a line
# puts "hello again"
# puts "i like typing this"
# puts 'yay! printing.'
# puts "i'd much rather you 'not'."
# puts 'i "said" do not touch this.'</p>
</content>
</entry>
<entry>
<title>Example Article</title>
<link rel="alternate" href="/2012/01/01/example-article.html"/>
<id>/2012/01/01/example-article.html</id>
<published>2012-01-01T08:00:00Z</published>
<updated>2012-01-01T08:00:00Z</updated>
<author>
<name>Article Author</name>
</author>
<content type="html"><p>This is an example article. You probably want to delete it and write your own articles!</p>
</content>
</entry>
</feed>