The intent of this document is to communicate the scope and intent of the parts of the EDA curriculum.
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
Show hidden characters
{ | |
"extends": ["standard", "eslint:recommended", "plugin:react/recommended"], | |
"plugins": [ | |
"standard", | |
"promise" | |
], | |
"globals": { | |
"fetch": true, | |
"localStorage": true | |
}, |
- Passion speaks volumes!
- Tell me about your current side-project.
- Skill of the interviewer - have empathy - this is a partnership
- Whiteboarding. Try to use your PC.
- Use Yeoman generators for quickly creating a test harness.
- Scope the problem!!!!! (by asking questions)
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/sh | |
# This script creates an SSH key for use on GitHub | |
# Step 1: Copy and paste this github() function into the ~/.zshrc file | |
github() { | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/$1 | |
email=`cat ~/.ssh/$1.email` | |
git config --global user.name $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
#!/usr/bin/env sh | |
echo "Converting all aif files to wav ..." | |
find . -type f -name "*.aif" -exec bash -c 'ffmpeg -i "$0" "${0%.*}.wav"' "{}" \; | |
echo "Converting all mp3 files to wav ..." | |
find . -type f -name "*.mp3" -exec bash -c 'ffmpeg -i "$0" "${0%.*}.wav"' "{}" \; | |
echo "Renaming all *.WAV files to *.wav" | |
find . -type f -iname "*.WAV" -exec bash -c 'mv "$0" "${0%.*}.wav"' "{}" \; |
This guide assumes the drive has already been partitioned and the EFI bootloader is already in place. I'll include these detailed steps the next time I need to do it. As I'm writing up these steps, I'm performing them on a machine that's already had it done, and I can't spend the time to start from scratch this time.
- Start with a bootable thumb drive that includes the latest version
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/sh | |
# This script creates an SSH key for use on GitHub | |
# Step 1: Copy and paste this github() function into the ~/.zshrc file | |
github() { | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/$1 | |
email=`cat ~/.ssh/$1.email` | |
git config --global user.name $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
// constructor function implementation | |
function Test (args) { | |
// explicit internal state without using `this` | |
const state = { | |
op: args.op, | |
missing: args.missing | |
} | |
return { // explicit return | |
// explicit binding of function | |
// parameters with internal state |
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
#!/usr/bin/env node | |
const ids = [4, 9, 1], | |
o = 'caffeine drink', | |
e = (r='', n=0) => ids[n] ? | |
e(r + o[ids[n]], ++n) : r | |
console.info(e()) |