You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HTML + CSS for beginners. Make a website, no server required!
19
19
MARKDOWN
20
20
21
+
site_desc 'learn-to-code', <<-MARKDOWN
22
+
A course which teaches how to code from the ground up, using Alex's [Learn To Code In Ruby](http://codelikethis.com/lessons/learn_to_code) curriculum. It's geared towards people who may never have written code before and teaches just enough Ruby to get across basic principles like variables, objects, and the command line.
23
+
MARKDOWN
24
+
21
25
site_desc 'ruby', <<-MARKDOWN
22
26
A ruby-specific curriculum, expanded from the "Ruby for Beginners" slide deck. Still new, with room for your contributions.
23
-
24
-
Railsbridge workshops can also use Alex's [Learn To Code In Ruby](http://codelikethis.com/lessons/learn_to_code) curriculum (currently in a separate site). It's also open source and may soon join the main Railsbridge Docs repo. It's geared towards people who may never have written code before.
25
27
MARKDOWN
26
28
27
29
site_desc 'workshop', <<-MARKDOWN
@@ -32,6 +34,7 @@ message <<MARKDOWN
32
34
# RailsBridge curriculum-related FAQ
33
35
34
36
### Can I use the RailsBridge curricula at my event?
37
+
35
38
Anyone can use this site! It's under a Creative Commons license ([CC-BY, specifically](http://creativecommons.org/licenses/by/3.0/)), which means you're welcome to share, remix, or use our content commercially. We just ask for attribution.
36
39
37
40
Slightly different: if you're organizing an event and wonder if it could be considered a RailsBridge Workshop, we just have two requests:
@@ -42,12 +45,16 @@ Slightly different: if you're organizing an event and wonder if it could be cons
42
45
If you're not doing those two things, you can totally still use the site, we just ask that you not call your event a RailsBridge workshop.
43
46
(Charity workshops have used "Rails Workshop featuring the RailsBridge curriculum" in the past, which is neat.)
44
47
48
+
45
49
### I want to help, but I don't know how.
50
+
46
51
First, [make a GitHub account](https://github.com/). Then, [create an issue](https://github.com/railsbridge/docs/issues) with the idea you have. We'll help you turn it into reality (assuming it's in line with our lofty goals :D).
47
52
48
53
Don't know what you could work on? Browse the [issues list](https://github.com/railsbridge/docs/issues) and the [To Do list](https://github.com/railsbridge/docs/wiki/RailsBridge-To-Do-List). Those have lots of ideas.
49
54
50
55
51
56
### I have different question about RailsBridge.
57
+
52
58
The [RailsBridge website](http://www.railsbridge.org) probably has an answer!
Copy file name to clipboardExpand all lines: sites/en/learn-to-code/extra.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
We've gone over the basics, but Ruby has lots of other language features. Here's a quick overview, with links to more info about them.
4
4
5
-
[Iterators](/lessons/ruby_blocks/iterators) are special loops that act on all the items in a collection.
5
+
[Iterators](http://codelikethis.com/lessons/ruby_blocks/iterators) are special loops that act on all the items in a collection.
6
6
7
-
[Blocks](/lessons/ruby_blocks) are like a cross between functions and methods. They allow Ruby to express many powerful algorithms in a compact writing style.
7
+
[Blocks](http://codelikethis.com/lessons/ruby_blocks) are like a cross between functions and methods. They allow Ruby to express many powerful algorithms in a compact writing style.
8
8
9
-
[Symbols](/lessons/ruby_basics/symbols) are like strings that start with a colon, and they're used all over the place.
9
+
[Symbols](http://codelikethis.com/lessons/ruby_basics/symbols) are like strings that start with a colon, and they're used all over the place.
10
10
11
-
[Chaining](/lessons/ruby_basics/chaining) is a compact way to express a chain of events. Properly executed, chaining turns Ruby from prose into poetry.
11
+
[Chaining](http://codelikethis.com/lessons/ruby_basics/chaining) is a compact way to express a chain of events. Properly executed, chaining turns Ruby from prose into poetry.
12
12
13
-
[Methods](/lessons/ruby_objects/objects#behavior) and [Classes](/lessons/ruby_objects/classes) are the heart of [Object-Oriented Programming](https://en.wikipedia.org/wiki/Object-oriented_programming). They
13
+
[Methods](http://codelikethis.com/lessons/ruby_objects/objects#behavior) and [Classes](http://codelikethis.com/lessons/ruby_objects/classes) are the heart of [Object-Oriented Programming](https://en.wikipedia.org/wiki/Object-oriented_programming). They
0 commit comments