Skip to content

Instantly share code, notes, and snippets.

Setting Group Expectations

Group Member Names: Beth Secor, Toni Rib, Steve Pentler

  1. When are group members available to work together? What hours can each group member work individually? Are there any personal time commitments that need to be discussed?
  • Toni: Working together M-F before 8pm, work individually after 8pm, Tuesdays with Toni 4- 5:45, Thursdays pairing with Alex 4-5, 10-11 Saturday pairing with mentor

  • Beth: Working together M-F before 8pm, work individually after 8pm, Tuesdays pairing with Jaime 4-5, Mentor meeting wednesday 12-1

1. The Agile model is a much smaller version of the Waterfall model. The Agile model can be repeated and improved upon over time.
2. The Agile model is popular in software development because it allows for changes in what the client wants, rather than having to go back an repeat an entire section that was built.
3. I think Agile could be applicable in a lot of industries. In statistics, Agile could definitely be applied, repeating small pieces of data cleaning and analysis until the full analysis has been completed.
File.open("word-list.txt", "r") do |f|
f.each_line do |line|
vowels = line.chars.select { |l| l =~ /[aeiouy]/ }
puts line if vowels == ["a","e","i","o","u","y"]
end
end
# clearest
(1..1000).each do |nums|
div3 = nums % 3 == 0
div5 = nums % 5 == 0
div7 = nums % 7 == 0
if div3 && div5 && div7
puts "SuperFizzBuzz"
elsif div3 && div7
puts "SuperFizz"
elsif div5 && div7