- Download the
ar.sh
file - Open your terminal where the file is
- Run
chmod +x ar.sh && mv ar.sh /usr/local/bin/ar.sh && brew install gnu-sed
- Now you can run
ar.sh [folder name] [model1] [model2] [model3...]
anywhere to create a new AR project
Above all, a lead instructor is an ambassador for the [Flatiron Way][FW] and the [Flatiron Educational Principles][FEP].
You have a good understanding of the Flatiron curriculum, in particular the current Module you are teaching. You are the main lecturer for the cohort and you make sure that each lecture is scaffolded and given in a way that forms an overarching story for the module.
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
// Check out this article to write your own evaluator for it! http://thatjdanisso.cool/programming-languages/ | |
const ppap = { | |
type: 'Let', | |
name: 'p', | |
value: { | |
type: 'String', | |
content: 'Pen' | |
}, | |
expression: { |
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
/******** ANSWERS ********/ | |
// ⭐: 1 | |
const addThemAllUp = frequencyChanges => frequencyChanges.reduce((a, b) => a + b) | |
// ⭐: 2 | |
const findFirstRepeatedFrequency = frequencyChanges => { | |
let index = 0 | |
let currentFrequency = 0 | |
const frequencies = new Set() |
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
class Coords(tuple): | |
def __new__(cls, x, y): | |
return tuple.__new__(cls, (x, y)) | |
def __add__(self, other): | |
return Coords(*([sum(x) for x in zip(self, other)])) | |
def __sub__(self, other): |
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
class Coords(tuple): | |
def __new__(cls, x, y): | |
return tuple.__new__(cls, (x, y)) | |
def __add__(self, other): | |
return Coords(*([sum(x) for x in zip(self, other)])) | |
def __sub__(self, other): |
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
def number_to_roman(number): | |
"""Convert a number between 1 and 3,999,999 to roman numerals.""" | |
ROMAN_ONES = ['I', 'X', 'C', 'M', 'X̅', 'C̅', 'M̅'] | |
ROMAN_FIVES = ['V', 'L', 'D', 'V̅', 'L̅', 'D̅'] | |
conversion = "" | |
if not str(number).isnumeric(): | |
return "Only numbers are allowed." |
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
def number_to_roman(number): | |
"""Convert a number between 1 and 3,999,999 to roman numerals.""" | |
ROMAN_ONES = ['I', 'X', 'C', 'M', 'X̅', 'C̅', 'M̅'] | |
ROMAN_FIVES = ['V', 'L', 'D', 'V̅', 'L̅', 'D̅'] | |
conversion = "" | |
if not str(number).isnumeric(): | |
return "Only numbers are allowed." |
NewerOlder