Skip to content

Instantly share code, notes, and snippets.

View ChantalDemissie's full-sized avatar

Chantal Demissie ChantalDemissie

View GitHub Profile
Link to PDF Resume:
https://drive.google.com/file/d/1354RTWL_6qsowEqwhdaX1UFqE0swbij4/view?usp=sharing
@ChantalDemissie
ChantalDemissie / chantal-capstoneproductplan.md
Last active June 28, 2019 21:18
Capstone Product Plan

Capstone Product Plan

Personal Learning Goals:

-The major things I want to focus on learning in this project is creating a web app that utilizes goverment info from API's that can be used at schools and be considered professional and efficient. My personal goals are to prioritize timeboxing problems and then seeking help and efficiently prioritizing features to meet the capstone deadline. My technical goals are to excel at all aspects of API's and to become confidient in my web app development using react and firebase.

Problem Statement:

-Given a certain lifestyle I want to live how do i achieve this? given my current financial and educational situation?

@ChantalDemissie
ChantalDemissie / description.md
Last active June 19, 2019 18:08
What should I do with my life? -Chantal

Capstone Concept Template Document

Problem Statement

Given a certain lifestyle I want to live how do i achieve this? given my current financial and educational situation?

The idea behind this is to create a tool that all people can use regardless of privilege to plan their ideal life. This tool will utilize goverment api to find career information. This career information will show salaries, help people see what education level they need and include a financial tool to help them determine what career will help them reach goals of home ownership, retirement,etc at their ideal age. I would like this to be an ongoing project outside of Ada and hopefully schools and young adults will be inclined to use this tool.

MVP Feature Set

@ChantalDemissie
ChantalDemissie / chantal-bio.md
Last active July 1, 2020 02:20
2020 Bio and Resume - Chantal Demissie

Chantal Demissie

Bio

After being in pharmacy for years I was noticing many accessibility and other issues that could be resolved by better tech. I wondered if I could create tech to benefit all groups of people. I had dabbled in programming for fun through tutorials but with this idea I could change experiences for people I became immersed in tech and applied to Ada Developers Academy. I completed a internship at Nordstrom on their iOS mobile app team and my next paid position at Nordstrom was cancelled due to COVID-19 in April. I recently started learning python and am interested in learning new technologies, backend development and machine learning.

I am motivated, creative, logical and I love to learn and be challenged at work. I am looking forward to an internship environment that can help me expand my knowledge and has me making valuable contributions towards the team. I believe I will contribute a diverse perspective to the team and the technologies we will build together. In the next few ye

@ChantalDemissie
ChantalDemissie / chantal-resume.md
Last active November 15, 2019 06:20
2019 resume
num_students = 5
student_data = Array.new(num_students)
puts "Please enter the names of 5 students when prompted."
num_students.times do |i|
puts "First Name: "
first = gets.chomp
puts "Last Name: "
last = gets.chomp
full_name = first.strip + " " + last.strip
puts "How many close friends do you have?"
num_closefriends = gets.chomp.to_i
puts "Please enter the names, ages and favorite colors of your close friends"
friends = []
num_closefriends.times do
friend = {}
puts "What is your friend's name?"
friend[:name] = gets.chomp
@ChantalDemissie
ChantalDemissie / studentaccountarray.rb
Created January 25, 2019 02:20
student account generator array
#Assignment: Student Account Generator
num_students = 5
student_names = Array.new(num_students)
student_ids = Array.new(num_students)
student_emails = Array.new(num_students)
puts "Please enter the names of students when prompted."
num_students.times do |i|
puts "First Name: "
first = gets.chomp
puts "Last Name: "
# problem 1
puts "hello there please enter 5 names seperated by spaces"
loop do
names = gets.chomp.upcase.split
if names.length >= 5
puts names[0..4]
break
else
puts "Please enter at least 5 names"
end
@ChantalDemissie
ChantalDemissie / electiontime.rb
Created January 21, 2019 08:12
Election program assignment
puts "Welcome to the best pet voting program."
puts "Pet candidates are: Dogs, Cats, Rodents ."
puts ""
puts "Which pet has your vote?"
puts ""
puts "Type in the species or use these shortcut letters for our friends with paws:"
puts "For Dogs, type: d"
puts "For Cats, type: c"
puts "For Rodents, type: r"