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
Copy file name to clipboardExpand all lines: sites/en/docs/docs.step
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ Slightly different: if you're organizing an event and wonder if it could be cons
31
31
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 PHPBridge workshop.
32
32
(For example you can use "PHP Workshop featuring the PHPBridge curriculum".)
33
33
34
+
34
35
### I want to help, but I don't know how.
35
36
First, [make a GitHub account](https://github.com/). Then, [create an issue](https://github.com/phpbridge/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).
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