- What project management strategies did you use in your projects this module?
- What went well?
- What would you do differently next time?
1 - I have embraced input and learner as two side of a coin and no logeer question why I feel the need to collect info.
2 - Empathy when paired with others. Guaging when they are struggling, need positive reinforcement, etc..
3 -
1 - I have embraced input and learner as two side of a coin and no logeer question why I feel the need to collect info.
2 - Empathy when paired with others. Guaging when they are struggling, need positive reinforcement, etc..
3 -
My top five strengths were: empathy, learner, input, adaptability, and relator.
I feel that these strengths were very accurate, but I don't think I realized how to leverage them or that some of them were even strengths. I'm still working through how to best leverage these strengths, but I think the one that my perception has changed the most on is empathy. I've started making an effort to check-in with people when I notice they are struggling or that something is not right. I use to believe that anyone could make that effort with others, but now realize that many others might not notice someone struggling as quickly as I can.
Another strength that I am thinking of differently now is input. This works in close conjunction with learner and I now see my need to collect random trivia and know little facts about everything as a strengt
Look at your initial StrengthsFinder reflection that you completed in week 1 -- how have your perceptions of the top 5 themes changed?
How are you different today than when you first started at Turing? Where are you stronger now than on day 1? I feel much more confident that I can work through the problems that I'm dealing with at any time and solve them.
Considering how you describe these themes, how do you want others to see you as you continue to progress through Turing? As empathetic and relatable. I want people to feel comfortable coming to me for help and also feel confident that I can help them when needed.
How might these themes play a role in describing your Turing story?
This phase is all about setting up the user inputs and general structure of the page. The page will not be very interactive in this phase.
After creating the div elements and sizing plus coloring them with some CSS, I applied display: inline-block;
to line up the divs. Then I applied float: right;
to the second and third div to move the to the right side of the screen while leaving the the first div to the left. After that, I appplied margin-left: 10px;
to div two and three to create space between the second and third div elements.
Using the same markup from challenge 1, the divs started off to the left stacked on top of each other. I left div1 alone. For div2, I applied margin: 0 auto;
. This set the top and bottom margins to 0 and the left and right were set to be automatically calculated to be an equal size from the edge of the containing element which is the body. This centered div2. For div3, I set a float: right;
to move the div to the right most side of the screen.