Skip to content

Instantly share code, notes, and snippets.

Please see in the comment :)
Thanks
@glaizawagner
glaizawagner / portfolio-links
Created October 9, 2019 01:32
glaiza's portolio
@glaizawagner
glaizawagner / graybox-wireframe
Created October 10, 2019 21:26
portfolio-graybox-wireframe
Github link :https://github.com/thinkful-ei-heron/glaiza-portfolio-wireframe
In the comment box is the picture of how it looks like
@glaizawagner
glaizawagner / bookmarks.sql
Created November 4, 2019 21:39
c11-Introduction to SQL(bookmarks assignment)
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,
@glaizawagner
glaizawagner / Bux Influx Project
Created November 6, 2019 22:14
Capstone - Bux Influx
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
@glaizawagner
glaizawagner / C2-Authentication-with-JWT
Last active November 14, 2019 12:55
Learning a new codebase
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
@glaizawagner
glaizawagner / job-app.md
Created January 27, 2020 03:22
Job-Application Screenshots

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.

<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[add your bin description]">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>