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
| -- CREATE the table | |
| CREATE TABLE todos (id SERIAL PRIMARY KEY, title VARCHAR(255) NOT NULL, details VARCHAR(8000), priority INTEGER NOT NULL DEFAULT 1, created_at TIMESTAMP NOT NULL, completed_at TIMESTAMP); | |
| --INSERT five (5) todos, one completed | |
| INSERT INTO todos (title, details, priority, created_at) VALUES ('Harder', 'WUB WUB WUB WUB', 1, current_timestamp); | |
| INSERT INTO todos (title, details, priority, created_at) VALUES ('Better', 'BWOOOOOWOWOWOWOW', 1, current_timestamp); | |
| INSERT INTO todos (title, details, priority, created_at) VALUES ('Faster', 'BOMP BOMP BOMP', 1, current_timestamp); | |
| INSERT INTO todos (title, details, priority, created_at) VALUES ('Stronger', 'UNTZ UNTZ UNTZ UNTZ', 1, current_timestamp); | |
| INSERT INTO todos (title, details, priority, created_at, completed_at) VALUES ('Daft', 'Punk', 1, current_timestamp, current_timestamp); |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Profile Setup</title> | |
| <link rel="stylesheet" href="styles/main.css"> | |
| </head> | |
| <body> |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Responsive Layout</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> |
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
| <!DOCTYPE html> | |
| <html class="no-js" lang=""> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"> | |
| <title></title> | |
| <meta content="" name="description"> | |
| <meta content="width=device-width, initial-scale=1" name="viewport"> | |
| <link charset="utf-8" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" media= | |
| "screen" rel="stylesheet" title="no title"> |
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
| #!/bin/bash | |
| mkdir project | |
| cd project | |
| touch index.html styles.css README.md | |
| echo "<link rel='stylesheet' href='styles.css'><h1>Hello World!" > index.html | |
| echo "h1{color:red;font-family:sans-serif;text-decoration:underline;}" > styles.css | |
| echo "Hello World!" > README.md | |
| sleep 2 | |
| read -p "Press [enter] to continue..." | |
| echo "Congratulations!" |