- Example C#
- HTML tags and attributes
- http://www.w3schools.com/
- CSS Selector
- How TO - Collapsibles/Accordion
- Programming types of variables
- Additional Material: What is the exact difference between Windows-1252(1/3/4) and ISO-8859-1?
- Ruby Methods
- if statement operators
- THE WORLD WIDE WEB && “HYPERMEDIA”
- HTML Radio buttons
Last active
October 29, 2016 15:08
-
-
Save dimitardanailov/aa36f96e10d464312b3ce489ec56ac64 to your computer and use it in GitHub Desktop.
Rails Girls Sofia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def calculator(a, b) | |
return a + b | |
end | |
calculator(32, 1) # => 33 | |
calculator(1, 2) # => 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def odd_even(number) | |
if number % 2 == 0 | |
puts "I am even number" | |
else | |
puts "I am odd number" | |
end | |
end | |
odd_even(132) # => I am even number | |
odd_even(33) # => I am odd number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def allow_dring(age) | |
if age > 17 | |
puts "I am adult" | |
else | |
puts "I am too young" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment