https://www.raspberrypi.org/documentation/installation/installing-images/mac.md
diskutil list
| 0x92Ea561678D3b3D9f587C4089C5019B32abD9F5f |
| // For each unit test you write, | |
| // answer these questions: | |
| describe('What component aspect are you testing?', () => { | |
| it('What should the feature do?', () => { | |
| const actual = 'What is the actual output?' | |
| const expected = 'What is the expected output?' | |
| expect(actual).toEqual(expected) |
| npm-run browserify -t babelify test/ | npm-run browser-run -p 2222 | npm-run faucet |
| // TODO |
| // TODO |
| class Klass { | |
| constructor() { | |
| console.log('hello class!') | |
| } | |
| static util(a, b) { | |
| return a + b | |
| } | |
| render() { |
| # list aliases | |
| alias | |
| # add alias | |
| alias name='command' | |
| # remove alias | |
| unalias name |
| # view all processes | |
| ps -ax | |
| # filter processes | |
| ps -ax | grep <process-name> | |
| # kill process | |
| kill <process-PID> |