- What role does empathy play in your life and how has it helped you?
-- Everything, really. Empathy allows me to have reasonable discussions with reasonable people about sometimes diversive topics. Empathy has expanded my horizons, helped me evolve morally and be a better husband. - How does empathy help you build better software?
-- People use software. If you can't possibly even consider being on the other side (ie the user[s]), how can you expect to build something people would want to use or know how to use? - Why is empathy important for working on a team?
-- Empathy is important for working in teams because teams are also made of people. And as much as STEM is touted to be meritocratic and logic-based, everyone who works in these fields is a person. People have biases, people have feelings. Empathy is essential in order to defuse situations before they become a thing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This script assumes that you have the following installed | |
| # npm 5.2+ [https://www.npmjs.com/get-npm] | |
| # hub [https://hub.github.com/] | |
| if [ "$1" != "" ]; then | |
| echo "Generating new node project $1..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Abstract Art</title> | |
| <style id="jsbin-css"> | |
| .box-1 { | |
| background-color: red; | |
| height: 100px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Box Model</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <style id="jsbin-css"> | |
| body { | |
| background-color: #333; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Kevon's Resume</title> | |
| </head> | |
| <body> | |
| <h1>Kevon Eaglin</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Your code here. | |
| console.log(range(1, 10)); | |
| // → [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
| console.log(range(5, 2, -1)); | |
| // → [5, 4, 3, 2] | |
| console.log(sum(range(1, 10))); | |
| // → 55 | |
| <script id="jsbin-javascript"> | |
| // Your code here. |