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
| projects=# SELECT | |
| projects-# department.id, | |
| projects-# department.dept_name, | |
| projects-# employee.emp_name, | |
| projects-# employee.phone, | |
| projects-# employee.title, | |
| projects-# employee.salary | |
| projects-# FROM department JOIN employee ON department.manager = employee.id; | |
| 1 | Development | Edgar Djikstra | 5554567 | Lead Software Developer | 120000 | |
| 2 | Sales | Jim Halpert | 5555678 | Salesman | 50000 |
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
| eliriner@Elis-Air bookmarks-server % npm t | |
| > bookmarks-server@1.0.0 test /Users/eliriner/projects/node/bookmarks-server | |
| > mocha --require test/setup.js | |
| App | |
| GET / 200 3.291 ms - 13 | |
| ✓ GET / responds with 200 containing "Hello, world!" |
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
| eliriner@Elis-Air blogful-api % npm t | |
| > blogful-api@1.0.0 test /Users/eliriner/projects/node/blogful-api | |
| > mocha --require test/setup.js | |
| App | |
| GET / 200 4.869 ms - 13 | |
| ✓ GET / responds with 200 "Hello, world!" |
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
| eliriner@Elis-Air blogful-api % mkdir migrations | |
| eliriner@Elis-Air blogful-api % cd migrations | |
| eliriner@Elis-Air migrations % touch 001.do.create_blogful_articles.sql | |
| eliriner@Elis-Air migrations % touch 001.undo.create_blogful_articles.sql | |
| eliriner@Elis-Air migrations % npm run migrate -- 1 | |
| npm ERR! missing script: migrate | |
| npm ERR! A complete log of this run can be found in: | |
| npm ERR! /Users/eliriner/.npm/_logs/2020-06-25T18_47_54_538Z-debug.log | |
| eliriner@Elis-Air migrations % npm run migrate -- 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
| eliriner@Elis-Air knex-practice % npm test | |
| > knex-practice@1.0.0 test /Users/eliriner/projects/knex-practice | |
| > mocha --require test/setup.js | |
| Articles service object | |
| getAllArticles() | |
| ✓ returns an empty array |
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
| eliriner@Elis-Air knex-practice % npm test | |
| > knex-practice@1.0.0 test /Users/eliriner/projects/knex-practice | |
| > mocha --require test/setup.js | |
| Articles service object | |
| getAllArticles() | |
| ✓ returns an empty array |
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
| eliriner@Elis-Air knex-practice % npm test | |
| > knex-practice@1.0.0 test /Users/eliriner/projects/knex-practice | |
| > mocha --require test/setup.js | |
| Articles service object | |
| getAllArticles() | |
| - returns an empty array |
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
| [HMR] Waiting for update signal from WDS... | |
| webpackHotDevClient.js:138 ./src/DoList/DoList.js | |
| Line 2:8: 'ToDo' is defined but never used no-unused-vars | |
| printWarnings @ webpackHotDevClient.js:138 | |
| handleWarnings @ webpackHotDevClient.js:143 | |
| push../node_modules/react-dev-utils/webpackHotDevClient.js.connection.onmessage @ webpackHotDevClient.js:210 | |
| index.js:1 Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: object. | |
| Check your code at DoList.js:9. | |
| in DoList (at App.js:23) |
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
| let the user land on the enter page | |
| create a radio with three opotion news, weather, both, preselect both | |
| on a large screen create two colums for results | |
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
| as a new user i want to be able to specify if I already booked my trip high midium low | |
| as a new user i want to be able to specify when my trip is scheduled for high | |
| as a new user i want to be able to specify where my trip is scheduled for high | |
| as a new user i want to be able to choose to creat and acount low | |
| as a new user i want to be able to save my trip/s low | |
| As a returning user I want to sign into my account low | |
| As a returning user i want to access my trip/s low | |
| As an administrator I want to unlock accounts low | |
| as a user I want to be able to use the app without an account high | |
| as a user with reading dificulty i want to be able to read eassly throgh large text or the screen reader should function well high |