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
| <div id="images"> | |
| <h3>Images for toronto</h3> | |
| <img src="to1.jpeg"/> | |
| <img src="to2.jpeg"/> | |
| <img src="to3.jpeg"/> | |
| <img src="to4.jpeg"/> | |
| </div> | |
| ------------------ | |
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
| <div id="images"> | |
| <h3>Images for toronto</h3> | |
| <img src="to1.jpeg"/> | |
| <img src="to2.jpeg"/> | |
| <img src="to3.jpeg"/> | |
| <img src="to4.jpeg"/> | |
| </div> | |
| ------------------ |
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
| #OBJECTIVE | |
| #Implement a caesar cipher that takes in a string and the shift factor and then outputs the modified string | |
| puts "enter a sentence" | |
| input = gets.chomp #store string in variable 'input' | |
| puts "enter offset number" | |
| offset = gets.chomp.to_i #store number in variable 'offset'. Convert string to integer (gets.chomp by default returns a string value) |
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
| git init | |
| git add . | |
| git commit -m "message" | |
| git remote add origin [email protected]:crazyboy867/simpsons-rails.git | |
| git push -u origin master | |
| I'm getting the following error message ===> | |
| To [email protected]:crazyboy867/simpsons-rails.git |
NewerOlder