Below are e-mail response in regards with my job applications.
I just applied this job today. I submitted a cover letter and a resume.
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
| Please see in the comment :) | |
| Thanks |
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
| Live Link: https://thinkful-ei-heron.github.io/Glaiza-Portfolio/ | |
| Github Link : https://github.com/thinkful-ei-heron/Glaiza-Portfolio |
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
| Github link :https://github.com/thinkful-ei-heron/glaiza-portfolio-wireframe | |
| In the comment box is the picture of how it looks like |
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
| Revisit the Bookmarks application that you started working on in a previous lesson. Design a table to store the bookmarks. For each attribute of a bookmark that you can think of, identify the data type, size, whether it can be null, if its a primary key and if a default value makes sense. | |
| 1. Create a database named bookmarks owned by dunder_mifflin. | |
| CREATE DATABASE bookmarks OWNER dunder_mifflin; | |
| 2. Write an SQL script to automate the creation of the bookmarks table in the database and seeds the table with some data. Insert at least ten rows o | |
| -- Create the table anew | |
| create table bookmark( | |
| id INTEGER PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, | |
| title TEXT NOT NULL, |
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
| Project Name: Bux Influx | |
| 1. User Stories - https://drive.google.com/open?id=1Nu0FxB543_rC7hVsLMYe8pAVzR7W6jgj | |
| 2. Issue Tracking - https://trello.com/b/9DTMonWJ/capstone-bux-influx | |
| 3. Wireframes | |
| 1. Greybox Wireframes | |
| - Main Page - https://repl.it/@glyzwagner/bux-influx-main-page-wireframe | |
| - SignIn Page - https://repl.it/@glyzwagner/bux-influx-signin-page-wireframe |
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
| Can you find answers to the following questions: | |
| 1. How are the syntaxes async and await useful when writing JavaScript code? | |
| Async and await allows one to write asynchronous code without using Promises | |
| and ".then" chains. | |
| 2. With respect to Knex, how does the transaction method relate to BEGIN and COMMIT syntax in PostgreSQL? | |
| A knex transaction object creates an instance of a connection that database |
OlderNewer