As said in the title, this is a quick and dirty summarization of Ruby and what you can do with it! By no means is this an in depth look into the language, but rather summary with broad strokes to refresh people who have used Ruby before but haven’t done so in a while. That’sContinue reading “Dirty Ruby Rundown”
Tag Archives: Ruby
Pawns: Back end analysis and thoughts
This week we dive into the back end code of my Flatiron Capstone project. Here we can see the choices that I made and I’ll also talk about the consequences of them. Furthermore, I also want to offer thoughts on how I would tackle them now, what I would change, and what actually wasn’t tooContinue reading “Pawns: Back end analysis and thoughts”
Ruby on Rails: Seeding Data
Before we begin… (pre-intro) Intro Faker Other ways to seed… Outro Before we begin, make sure that you have your tables (schema) set up and their associations. Click on the next two links if you need a little help with that. https://guides.rubyonrails.org/active_record_migrations.html https://guides.rubyonrails.org/association_basics.html Creating a rails app/website requires a lot of coordination between a lotContinue reading “Ruby on Rails: Seeding Data”
Ruby: ‘ampersand’, ‘and’, ‘pipes’, and ‘or’
&& vs ‘and’ with examples || vs ‘or’ with examples The case for and/or in Ruby There are many secrets to be unlocked from using `and` and `or`, but for the purpose of their introduction to a new Ruby coder, we will cover their general usage and direct relatability/substitution of `&&` and `||`. Most programmersContinue reading “Ruby: ‘ampersand’, ‘and’, ‘pipes’, and ‘or’”