Skip to content

Commit 322bc87

Browse files
Update README.md
1 parent fd798ca commit 322bc87

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,34 @@
1-
# odin-project-basic-ruby-projects
1+
# Basic Ruby Projects from The Odin Project
2+
# Table of Contents
3+
## Caeser Cipher
4+
### Information
5+
The caeser cipher is long used cipher in cryptography, traced by to Julius Caeser and his personal correspondance (hence the name). According to [Wikipedia](https://en.wikipedia.org/wiki/Caesar_cipher):
6+
> In cryptography, a Caesar cipher, also known as Caesar’s cipher, the shift cipher, Caesar’s code or Caesar shift, is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. For example, with a left shift of 3, D would be replaced by A, E would become B, and so on.
7+
In this project, the caeser cipher is implemented using Ruby. This project is part of The Odin Project Javascript curriculum. The project information can be found [here](https://www.theodinproject.com/courses/ruby-programming/lessons/caesar-cipher).
8+
### Project Status
9+
At this time, the project is __*finished*__.
10+
### Instructions
11+
To use this program, Ruby will need to be installed. This program is build on Ruby v2.6.5p114. To check your current version:
12+
```
13+
ruby -v
14+
```
15+
If you have a compatible version, this program can be run using this command:
16+
```
17+
ruby caeser-cipher.rb
18+
```
19+
This program does have user input capabilities, however they have not been completely tested.
20+
## Sub Strings
21+
### Information
22+
### Project Status
23+
At this time, the project is __Not *finished*__.
24+
### Instructions
25+
## Stock Picker
26+
### Information
27+
### Project Status
28+
At this time, the project is __Not *finished*__.
29+
### Instructions
30+
## Bubble Sort
31+
### Information
32+
### Project Status
33+
At this time, the project is __Not *finished*__.
34+
### Instructions

0 commit comments

Comments
 (0)