Ruby on Rails workshops with ACM
Θέλεις να μάθεις μία νέα γλώσσα προγραμματισμού και να εμπλουτίσεις τις γνώσεις σου; Η Ruby είμαι μία δυναμική open source γλώσσα που βρίσκει εφαρμογή στο διαδίκτυο. Έλα και εσύ να τη γνωρίσεις και να δημιουργήσεις την πρώτη σου εφαρμογή! Φέρε το λάπτοπ σου! 💻🔧

| When; | Where; |
|---|---|
| 13/12/2019, 16:16 | ΔΙΠΑΕ Θεσσαλονίκης |
Cheatsheet
MVC
Model - Represents the entities of the application and is directly connected to the databaseView - View files hold the HTML code that creates the content we serve on the browserController - Glues everything together, calls the model, performs actions on the entities, redirects appropriately
Key Concepts
CRUD - Default actions - Create Read Update DestroyDRY - Don't Repeat Yourself
Get started!
rails server - start the rails server to serve your applicationrails console - Fire up the rails console and try rails stuff!
MVC
Model - Represents the entities of the application and is directly connected to the databaseView - View files hold the HTML code that creates the content we serve on the browserController - Glues everything together, calls the model, performs actions on the entities, redirects appropriately
Key Concepts
CRUD - Default actions - Create Read Update DestroyDRY - Don't Repeat Yourself
Get started!
rails server - start the rails server to serve your applicationrails console - Fire up the rails console and try rails stuff!
Useful links
| Μάθηση |
|---|
| Ruby Online! |
| Rails Guides |
| Workshop |
|---|
| Coding Platforrm |
| Repo with code |