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
| git reflog | |
| git reset --hard HEAD@{n} |
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
| import express from "express"; | |
| import middleware from "./middleware.js"; | |
| const app = express(); | |
| const PORT = 3000; | |
| app.use(express.json()); | |
| app.use((req, res, next) => { |
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
| <?php | |
| /** | |
| * MySQL database class | |
| * | |
| * Contains all functionality for database (MySQLi) | |
| * Including select, insert, update, delete aand joins with conditions | |
| * | |
| * | |
| */ |