From 42589420064f50b969879e2e2d9ddd938e83c330 Mon Sep 17 00:00:00 2001 From: Sumon C <133718514+SumonGFC@users.noreply.github.com> Date: Sat, 5 Oct 2024 14:58:37 -0400 Subject: [PATCH 1/3] Event Manager project: Remove references to large sample data --- ruby/files_and_serialization/project_event_manager.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ruby/files_and_serialization/project_event_manager.md b/ruby/files_and_serialization/project_event_manager.md index 602d49d3eb9..eaedfae2967 100644 --- a/ruby/files_and_serialization/project_event_manager.md +++ b/ruby/files_and_serialization/project_event_manager.md @@ -70,10 +70,7 @@ ruby: No such file or directory -- lib/event_manager.rb (LoadError) If this happens, make sure the correct directory exists and try creating the file again. -For this project we are going to use the following sample data: - -- [Small Sample](https://github.com/TheOdinProject/curriculum/tree/main/ruby/files_and_serialization/event_attendees.csv) -- [Large Sample](https://github.com/TheOdinProject/curriculum/tree/main/ruby/files_and_serialization/event_attendees_full.csv) +For this project we are going to use the following [sample data](https://github.com/TheOdinProject/curriculum/tree/main/ruby/files_and_serialization/event_attendees.csv). Download the *[small sample](https://raw.githubusercontent.com/TheOdinProject/curriculum/main/ruby/files_and_serialization/event_attendees.csv)* csv file and save it in the root of the project directory, `event_manager`. Using your CLI, confirm that you are in the right directory and enter the following command: @@ -345,7 +342,7 @@ Before we are able to figure out our attendees' representatives, we need to solv - Some zip codes are represented with fewer than five digits -If we looked at the [larger sample of data](https://raw.githubusercontent.com/TheOdinProject/curriculum/main/ruby/files_and_serialization/event_attendees_full.csv), we would see that the majority of the shorter zip codes are from states in the north-eastern part of the United States. Many zip codes there start with 0. This data was likely stored in the database as an integer, and not as text, which caused the leading zeros to be removed. +If we looked at the [sample data](https://github.com/TheOdinProject/curriculum/tree/main/ruby/files_and_serialization/event_attendees.csv), we would see that the majority of the shorter zip codes are from states in the north-eastern part of the United States. Many zip codes there start with 0. This data was likely stored in the database as an integer, and not as text, which caused the leading zeros to be removed. So in the case of zip codes of fewer than five digits, we will assume that we can pad missing zeros to the front. From 001b6aa0b9c0ee6a6f2ace9a58e7d2edd8d6ff1c Mon Sep 17 00:00:00 2001 From: Sumon C <133718514+SumonGFC@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:19:32 -0400 Subject: [PATCH 2/3] Event Manager project: Fix Assignment section formatting --- .../files_and_serialization/project_event_manager.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/ruby/files_and_serialization/project_event_manager.md b/ruby/files_and_serialization/project_event_manager.md index eaedfae2967..024ab534eeb 100644 --- a/ruby/files_and_serialization/project_event_manager.md +++ b/ruby/files_and_serialization/project_event_manager.md @@ -1304,7 +1304,11 @@ end The method `save_thank_you_letter` requires the id of the attendee and the form letter output. -### Assignment: Clean phone numbers +### Assignment + +