Skip to content

Instantly share code, notes, and snippets.

View keaglin's full-sized avatar

Kevon Eaglin keaglin

View GitHub Profile
@keaglin
keaglin / gennode
Created January 19, 2019 00:47 — forked from CarsonMcKinstry/gennode
A small script for automating the creation of a new node project, complete with package creation, CoC creation, license creation, and remote repo creation
#!/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..."
@keaglin
keaglin / index.html
Created November 20, 2017 21:04
Abstract Art // source http://jsbin.com/yawikul
<!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;
<!DOCTYPE html>
<html>
<head>
<title>Box Model</title>
<link rel="stylesheet" href="style.css">
<style id="jsbin-css">
body {
background-color: #333;
@keaglin
keaglin / resume.html
Last active November 15, 2017 14:50
KEaglin resume as plain html
<!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>
// 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.
@keaglin
keaglin / turing-culture-1.md
Created March 2, 2017 15:56
3/2/17 Task C Turing Culture and Reflections on Empathy
  • 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.
@keaglin
keaglin / ke-prework.md
Last active March 2, 2017 21:34 — forked from mbburch/prework.md
K. Eaglin's prework Gist

Turing School Prework--K. Eaglin

Task A - Practice Typing:

  • screenshots of scores will be posted in comments

Task B - Algorithmic Thinking & Logic:

  • screenshots of completed sections will be posted in comments

Task C - Create your Gist: