{"id":17675880,"url":"https://github.com/dbz/app-academy-exercises","last_synced_at":"2025-03-30T17:23:20.343Z","repository":{"id":21629026,"uuid":"24949572","full_name":"Dbz/App-Academy-Exercises","owner":"Dbz","description":"App Academy Daily Exercises","archived":false,"fork":false,"pushed_at":"2014-11-21T07:26:35.000Z","size":4916,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-05T19:12:31.371Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dbz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-08T16:25:24.000Z","updated_at":"2014-11-21T07:26:36.000Z","dependencies_parsed_at":"2022-08-21T20:01:10.227Z","dependency_job_id":null,"html_url":"https://github.com/Dbz/App-Academy-Exercises","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dbz%2FApp-Academy-Exercises","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dbz%2FApp-Academy-Exercises/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dbz%2FApp-Academy-Exercises/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dbz%2FApp-Academy-Exercises/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dbz","download_url":"https://codeload.github.com/Dbz/App-Academy-Exercises/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246352003,"owners_count":20763394,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-24T07:23:45.251Z","updated_at":"2025-03-30T17:23:20.324Z","avatar_url":"https://github.com/Dbz.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"App-Academy-Exercises\n=====================\n\nWeek 1\n======\n\nDay 1\n---\n**Main Project**: Convert an Integer to itself in words (up to 1,000,000!)\n\nPartner: Jeff Caves\n\nFocus:\n\n* arrays\n* hashes\n* enumerable\n* strings\n\nDay 2\n---\n**Main Project**: Tic-Tac-Toe (with an AI)\n\nMinor Project: Reverse Polish Notation calculator\n\nPartner: Peter Eliot\n\nFocus:\n\n* methods\n* file I/O\n* symobls, options hashes\n* iteration/Loops\n* classes\n\nDay 3\n---\n**Main Project**: Hangman (with an AI)\n\nMinor Project: Mastermind\n\nPartner: Linh Bui\n\nFocus:\n\n* class design, class interactions\n* method design (brief and focused: 28 out of 37 methods in hangman.rb are one or two lines)\n\nDay 4\n---\n**Main Project**: Word Chainer (eg.:neat \u003e beat \u003e belt \u003e bolt \u003e bole \u003e bode \u003e code)\n\nPartner: Llorenc Mutaner\n\nFocus:\n\n* blocks, procs, and lambdas\n* recursion\n\nDay 5\n---\n**Main Projects**: Knight's Travails, Tic-Tac-Toe AI\n\nPartner: Travis Herrick\n\nFocus:\n\n* tree data structures\n* breadth-first search\n* depth-first search\n* recursion\n\nWeek 2\n======\n\nDay 1\n---\n**Main Project**: Minesweeper\n\nPartner: Travis Herrick\n\nFocus:\n\n* serialization, persistence, YAML\n* class design, method design\n\nDays 2 and 3\n---\n**Main Project**: Chess\n\nPartner: Smith Freeman\n\nFocus:\n\n* using git\n* class inheritance\n* raising \u0026 handling errors\n* deep duping a complex object\n\nDay 4\n---\n**Main Project**: Checkers\n\nPartner: None (solo day)\n\nFocus:\n\n* modules\n* error handling\n\nDay 5\n---\n**Main Project**: Poker (TDD)\n\nPartner: John Ochs\n\nFocus:\n\n* RSpec\n* test-driven development\n\nWeek 3\n======\n\nDay 1\n---\n**Main Project**: [SQLZoo](sqlzoo.net)\n\nPartner: Isis Wenger\n\nFocus:\n\n* SQL basics\n\nNo work uploaded to GitHub; just did problems at SQLZoo.\n\nDay 2\n---\n**Main Project**: App Academy Questions app\n\nPartner: Anastasia Zorko\n\nFocus:\n\n* Object-relational mapping\n* more SQL\n* a little metaprogramming\n\nDay 3\n---\n**Main Project**: URL Shortener\n\nPartner: Erik Strom\n\nFocus:\n\n* database migrations\n* models\n* validations (at both the database and model levels)\n* database indexes\n* associations\n\nDay 4\n---\n**Main Project**: Survey app\n\nPartner: Weihao Li\n\nFocus:\n\n* optimizing ActiveRecord/SQL (avoiding N+1 queries with eager loading)\n* the border between SQL and ActiveRecord (```find_by_sql```, ```#joins```, ```#select```, ```#where```)\n\nDay 5\n---\n**Main Project**: ActiveRecord Lite\n\nPartner: None (solo day)\n\nFocus:\n\n* metaprogramming\n* scope\n* modules\n\nweek 4\n======\n\nDay 1\n---\n**Main Project**: Contacts (store your contacts, share them with others)\n\nPartner: Ryan Ngai\n\nFocus:\n\n* routes (nested resources)\n* controllers (handling invalid data/requests)\n* params (stong params, nested params)\n\nDay 2\n---\n**Main Project**: Cats99 (a cat rental app)\n\nPartner: David Runger\n\nFocus:\n\n* views\n* HTML forms\n\nDay 3\n---\n**Main Project**: Cats99 continued\n\nPartner: Aaron Cordovez\n\nFocus:\n\n* authentication\n* authorization\n* CSRF protection\n* `session`/cookies\n\nDay 4\n---\n**Main Project**: Record Label app (Bands/Album/Tracks/Users)\n\nPartner: none (solo day)\n\nFocus:\n\n* practice concepts learned earlier this week (auth, routes, controllers, views)\n\nDay 5\n---\n**Main Project**: reddit clone\n\nPartner: Jayson Virissimo\n\nFocus:\n\n* practice concepts learned earlier this week (auth, routes, controllers, views)\n\nWeek 5\n======\n\nDay 1\n---\n**Main Project**: Goal Tracker app\n\nPartner: David Hamme\n\nFocus:\n\n* Behavior-Driven Development/Test-Driven Development in a Rails app\n* RSpec, Capybara, FactoryGirl, Faker\n\nDay 2-3\n---\n**Main Project**: Rails Lite\n\nPartner: None (solo days)\n\nFocus:\n\n* HTTP fundamentals\n* cookies\n* regular expressions\n* deeper understanding of Rails routes, controllers, `params`, `session`, and `flash`\n\nDay 4\n---\n**Main Project**: JavaScript Exercises\n\nPartner: Aaron Strick\n\nFocus:\n\n* JavaScript basics (objects, functions, prototypes, constructors, `this`)\n* avoiding classic JavaScript gotchas\n\nDay 5\n---\n**Main Project**: Tic Tac Toe (human players only)\n\nPartner: Marie Hepfer\n\nFocus:\n\n* callbacks\n* asynchronicity\n* ```this``` and ```that```\n* ```bind```\n* different ways to call a function in JS","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbz%2Fapp-academy-exercises","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbz%2Fapp-academy-exercises","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbz%2Fapp-academy-exercises/lists"}