Arahants


Enlightening discourse on programming

Join Tables

Learning how to use join tables and table associations in ActiveRecord. Im having trouble with Setting up multiple databases (more than 2) and having them communicate with each other properly. Checking other resources and reviewing SQL and ActiveRecord section about table associations and join tables


Software Bugs

#software bugs Test techniques include the process of executing a program or application with the intent of finding software bugs (errors or other defects), and verifying that the software product is fit for use.


CLI PROJECT

My cli project scrapes data from https://www.imdb.com/chart/boxoffice/ and returns the following data. Title of movie, Gross revenue of movie, and Number of weeks the movie has been in the box office. This project has been the first taste of developing an application by myself with little help and no tests. Overall I really enjoyed the experience. It took me awhile to get a hang of the scrapping, but I can really see how this can be a useful tool in a developers toolbox. The link to my cli application is https://github.com/0216johnsoneric/cli-data-gem-assessment-v-000. Learn.Love.Code


in·spi·ra·tion

Man is not a machine… Although man most certainly processes information, he does not necessarily process it in the way computers do. Computers and men are not species of the same genus… However much intelligence computers may attain, now or in the furture, theirs must always be an intelligence alien to genuine human problems and concerns. – Joseph Weizenbaum


HASH = {:Eric => :Happy}

hash = {“Eric” => “Happy”} A collection of data that stores Keys and Values similar to arrays except instead of using integers as an index we can use the object type as the index. hash[Eric] #=> Happy It wants 250 charactors. Hashes arent to interesting to write about.